フロントエンドプレイアブル
This commit is contained in:
211
app/views/games/_form.html.erb
Normal file
211
app/views/games/_form.html.erb
Normal file
@@ -0,0 +1,211 @@
|
||||
<%= form_with(model: game, class: "space-y-6") do |form| %>
|
||||
<% if game.errors.any? %>
|
||||
<div class="rounded-md bg-red-50 p-4 mb-6">
|
||||
<div class="flex">
|
||||
<div class="flex-shrink-0">
|
||||
<svg class="h-5 w-5 text-red-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
</div>
|
||||
<div class="ml-3">
|
||||
<h3 class="text-sm font-medium text-red-800">
|
||||
<%= pluralize(game.errors.count, "error") %> prohibited this game from being saved:
|
||||
</h3>
|
||||
<div class="mt-2 text-sm text-red-700">
|
||||
<ul class="list-disc pl-5 space-y-1">
|
||||
<% game.errors.each do |error| %>
|
||||
<li><%= error.full_message %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div>
|
||||
<%= form.label :title, "ゲームタイトル", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.text_field :title, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md", placeholder: "例: 定例ディプロマシー会 #1" %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<% unless game.persisted? %>
|
||||
<% if current_user&.admin? %>
|
||||
<div>
|
||||
<%= form.label :game_mode, "ゲームモード", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.select :game_mode,
|
||||
options_for_select([
|
||||
['ソロモード (単独プレイ)', 'admin_mode'],
|
||||
['マルチプレイヤーモード (複数プレイ)', 'player_mode']
|
||||
], game.is_solo_mode ? 'admin_mode' : 'player_mode'),
|
||||
{},
|
||||
{ id: 'game-mode-select', class: 'shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md' } %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div id="participants-count-field" style="<%= game.solo_mode? ? 'display: none;' : '' %>">
|
||||
<%= form.label :participants_count, "参加人数", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.number_field :participants_count, min: 1, max: 7, step: 1, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md" %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">1人から7人まで設定可能です。</p>
|
||||
</div>
|
||||
|
||||
<div id="password-field" style="<%= game.solo_mode? ? 'display: none;' : '' %>">
|
||||
<%= form.label :password, "パスワード (任意)", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.password_field :password, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md" %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">知人同士でプレイする場合など、アクセス制限をかけたい場合に設定してください。</p>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div id="auto-fill-mode-field" style="<%= (game.solo_mode? && !game.persisted?) ? 'display: none;' : '' %>">
|
||||
<%= form.label :auto_order_mode, "自動処理モード", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.select :auto_order_mode,
|
||||
options_for_select([
|
||||
['HOLD (待機)', 'hold'],
|
||||
['ランダム動作', 'random']
|
||||
], game.auto_order_mode || 'hold'),
|
||||
{},
|
||||
{ class: 'shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md' } %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">注文未入力の国や、プレイヤー不在の国の動作を設定します。</p>
|
||||
</div>
|
||||
|
||||
<div id="turn-schedule-field" style="<%= (game.solo_mode? && !game.persisted?) ? 'display: none;' : '' %>">
|
||||
<%= form.label :turn_schedule, "ターン進行方式", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<% current_schedule = game.turn_schedule.presence %>
|
||||
<% preset_value = case current_schedule
|
||||
when nil then "manual"
|
||||
when "0" then "daily_0"
|
||||
else "custom"
|
||||
end %>
|
||||
<select id="turn_schedule_preset"
|
||||
class="shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md"
|
||||
onchange="handleSchedulePresetChange(this)">
|
||||
<option value="manual" <%= 'selected' if preset_value == 'manual' %>>手動(管理者が処理)</option>
|
||||
<option value="daily_0" <%= 'selected' if preset_value == 'daily_0' %>>毎日1回(0時)</option>
|
||||
<option value="custom" <%= 'selected' if preset_value == 'custom' %>>カスタム...</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id="custom-schedule-field" style="<%= preset_value == 'custom' ? '' : 'display: none;' %>" class="mt-2">
|
||||
<input type="text" id="custom_schedule_input"
|
||||
value="<%= current_schedule if preset_value == 'custom' %>"
|
||||
class="shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md"
|
||||
placeholder="例: 0,12,18(毎日0時・12時・18時)"
|
||||
oninput="document.getElementById('turn_schedule_value').value = this.value">
|
||||
</div>
|
||||
<%= form.hidden_field :turn_schedule, id: "turn_schedule_value", value: current_schedule %>
|
||||
<p class="mt-2 text-sm text-gray-500">
|
||||
自動の場合、締切時刻を過ぎると未入力国はAutoOrderで処理され、ターンが自動進行します。
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function handleSchedulePresetChange(select) {
|
||||
const customField = document.getElementById('custom-schedule-field');
|
||||
const hiddenField = document.getElementById('turn_schedule_value');
|
||||
const customInput = document.getElementById('custom_schedule_input');
|
||||
|
||||
switch (select.value) {
|
||||
case 'manual':
|
||||
customField.style.display = 'none';
|
||||
hiddenField.value = '';
|
||||
break;
|
||||
case 'daily_0':
|
||||
customField.style.display = 'none';
|
||||
hiddenField.value = '0';
|
||||
break;
|
||||
case 'custom':
|
||||
customField.style.display = 'block';
|
||||
hiddenField.value = customInput.value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<%= form.label :memo, "メモ", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.textarea :memo, rows: 3, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md" %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">ゲームに関するメモや注意事項があれば記載してください。</p>
|
||||
</div>
|
||||
|
||||
<!-- ハウスルール設定 -->
|
||||
<div class="border-t border-gray-200 pt-6 mt-6">
|
||||
<h3 class="text-lg font-medium text-gray-900 mb-4">ハウスルール</h3>
|
||||
|
||||
<div class="space-y-4">
|
||||
<div>
|
||||
<%= form.label :year_limit, "年数制限", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.number_field :year_limit, min: 1901, max: 1999, step: 1, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md", placeholder: "空欄 = 無制限" %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">指定した年を超えるとゲームが自動終了します(例: 1910)。空欄で無制限。</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<%= form.label :victory_sc_count, "目標SC数", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.number_field :victory_sc_count, min: 1, max: 34, step: 1, value: game.victory_sc_count || 18, class: "shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md" %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">ソロ勝利に必要なSC数(デフォルト: 18)。</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<%= form.label :scoring_system, "スコアリング方式", class: "block text-sm font-medium text-gray-700" %>
|
||||
<div class="mt-1">
|
||||
<%= form.select :scoring_system,
|
||||
options_for_select([
|
||||
['なし', 'none'],
|
||||
['SC数(獲得SC数がスコア)', 'sc_count'],
|
||||
['SC比率(全SC中の割合%)', 'sc_ratio'],
|
||||
['DSS(生存国で均等分割)', 'dss'],
|
||||
['SoS(二乗和比率)', 'sos']
|
||||
], game.scoring_system || 'none'),
|
||||
{},
|
||||
{ class: 'shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:text-sm border-gray-300 rounded-md' } %>
|
||||
</div>
|
||||
<p class="mt-2 text-sm text-gray-500">ゲーム終了時のスコア計算方式を選択します。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pt-5">
|
||||
<div class="flex justify-end">
|
||||
<%= form.submit "保存する", class: "ml-3 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const gameModeSelect = document.getElementById('game-mode-select');
|
||||
const participantsField = document.getElementById('participants-count-field');
|
||||
const passwordField = document.getElementById('password-field');
|
||||
const autoFillField = document.getElementById('auto-fill-mode-field');
|
||||
|
||||
if (gameModeSelect) {
|
||||
gameModeSelect.addEventListener('change', function() {
|
||||
const isAdminMode = this.value === 'admin_mode';
|
||||
|
||||
if (isAdminMode) {
|
||||
if(participantsField) participantsField.style.display = 'none';
|
||||
if(passwordField) passwordField.style.display = 'none';
|
||||
if(autoFillField) autoFillField.style.display = 'none';
|
||||
} else {
|
||||
if(participantsField) participantsField.style.display = 'block';
|
||||
if(passwordField) passwordField.style.display = 'block';
|
||||
if(autoFillField) autoFillField.style.display = 'block';
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<% end %>
|
||||
18
app/views/games/_game.html.erb
Normal file
18
app/views/games/_game.html.erb
Normal file
@@ -0,0 +1,18 @@
|
||||
<div id="<%= dom_id game %>" class="space-y-2">
|
||||
<h3 class="text-lg font-semibold text-gray-900 truncate">
|
||||
<%= game.title %>
|
||||
</h3>
|
||||
|
||||
<div class="mt-2 flex items-center text-sm text-gray-500">
|
||||
<svg class="flex-shrink-0 mr-1.5 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 6a3 3 0 11-6 0 3 3 0 016 0zM17 6a3 3 0 11-6 0 3 3 0 016 0zM12.93 17c.046-.327.07-.66.07-1a6.97 6.97 0 00-1.5-4.33A5 5 0 0119 16v1h-6.07zM6 11a5 5 0 015 5v1H1v-1a5 5 0 015-5z" />
|
||||
</svg>
|
||||
<%= game.participants_count %> Players
|
||||
</div>
|
||||
|
||||
<% if game.memo.present? %>
|
||||
<p class="mt-2 text-sm text-gray-600 line-clamp-2">
|
||||
<%= game.memo %>
|
||||
</p>
|
||||
<% end %>
|
||||
</div>
|
||||
2
app/views/games/_game.json.jbuilder
Normal file
2
app/views/games/_game.json.jbuilder
Normal file
@@ -0,0 +1,2 @@
|
||||
json.extract! game, :id, :title, :participants_count, :memo, :created_at, :updated_at
|
||||
json.url game_url(game, format: :json)
|
||||
25
app/views/games/edit.html.erb
Normal file
25
app/views/games/edit.html.erb
Normal file
@@ -0,0 +1,25 @@
|
||||
<% content_for :title, "ゲーム編集" %>
|
||||
|
||||
<div class="max-w-2xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||||
<div class="md:flex md:items-center md:justify-between mb-8">
|
||||
<div class="flex-1 min-w-0">
|
||||
<h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
|
||||
ゲーム設定の編集
|
||||
</h2>
|
||||
</div>
|
||||
<div class="mt-4 flex md:mt-0 md:ml-4">
|
||||
<%= link_to @game, class: "inline-flex items-center px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" do %>
|
||||
<svg class="-ml-1 mr-2 h-5 w-5 text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L7.414 9H15a1 1 0 110 2H7.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
ゲームに戻る
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<%= render "form", game: @game %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
117
app/views/games/index.html.erb
Normal file
117
app/views/games/index.html.erb
Normal file
@@ -0,0 +1,117 @@
|
||||
<p style="color: green"><%= notice %></p>
|
||||
|
||||
<% content_for :title, "Games" %>
|
||||
|
||||
<% content_for :top_content do %>
|
||||
<div class="flex justify-center mb-8">
|
||||
<%= image_tag "header-logo.png", width: 768, alt: "DipFront Logo" %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="flex justify-between items-center mb-8">
|
||||
<h1 class="text-3xl font-bold text-gray-900">Games</h1>
|
||||
<%= link_to "New game", new_game_path, class: "inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" %>
|
||||
</div>
|
||||
|
||||
<% if current_user && @my_games.any? %>
|
||||
<div class="mb-10">
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-5 pl-2 border-l-4 border-[#c5a059] font-cinzel"><i class="fa-solid fa-flag mr-2 text-[#c5a059]"></i>参加中のゲーム</h2>
|
||||
<div id="my_games" class="grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<% @my_games.each do |game| %>
|
||||
<div class="diplomacy-card overflow-hidden rounded-lg transition-transform hover:-translate-y-1 duration-300">
|
||||
<div class="bg-green-900 px-4 py-3 border-b border-[#c5a059]">
|
||||
<h3 class="text-lg font-bold text-[#c5a059] font-cinzel truncate"><%= game.title %></h3>
|
||||
</div>
|
||||
<div class="px-4 py-5 sm:p-6 bg-white/90">
|
||||
<div class="text-sm text-gray-700 space-y-2">
|
||||
<% if game.status == 'finished' %>
|
||||
<p><i class="fa-solid fa-hourglass-end w-5 text-center text-gray-400"></i> <span class="font-medium">状態:</span> <span class="bg-gray-100 text-gray-800 text-xs px-2 py-0.5 rounded-full font-bold">履歴モード</span></p>
|
||||
<% else %>
|
||||
<p><i class="fa-solid fa-hourglass-half w-5 text-center text-gray-400"></i> <span class="font-medium">状態:</span> <%= game.status %></p>
|
||||
<% end %>
|
||||
<% if game.turns.present? %>
|
||||
<p><i class="fa-solid fa-calendar-days w-5 text-center text-gray-400"></i> <span class="font-medium">時期:</span> <%= parse_phase(game.turns.sort_by(&:number).last&.phase) %></p>
|
||||
<% end %>
|
||||
<% participant = game.participants.find_by(user: current_user) %>
|
||||
<% if participant %>
|
||||
<p><i class="fa-solid fa-chess-king w-5 text-center text-gray-400"></i> <span class="font-medium">国:</span> <span class="font-bold text-green-800"><%= participant.power || '未選択' %></span></p>
|
||||
<p>
|
||||
<i class="fa-solid fa-pen-fancy w-5 text-center text-gray-400"></i> <span class="font-medium">命令:</span>
|
||||
<span class="<%= participant.orders_submitted ? 'text-green-600 font-bold' : 'text-red-500 font-bold' %>">
|
||||
<%= participant.orders_submitted ? '完了' : '未完了' %>
|
||||
</span>
|
||||
</p>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-gray-50/90 px-4 py-3 sm:px-6 border-t border-gray-200 flex justify-end">
|
||||
<%= link_to game, class: "inline-flex items-center text-sm font-bold text-green-900 hover:text-[#c5a059] transition-colors" do %>
|
||||
プレイする <i class="fa-solid fa-arrow-right ml-2"></i>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<% if @recruiting_games.any? %>
|
||||
<div class="mb-10">
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-5 pl-2 border-l-4 border-[#c5a059] font-cinzel"><i class="fa-solid fa-user-plus mr-2 text-[#c5a059]"></i>募集中のゲーム</h2>
|
||||
<div id="recruiting_games" class="grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<% @recruiting_games.each do |game| %>
|
||||
<div class="diplomacy-card overflow-hidden rounded-lg transition-transform hover:-translate-y-1 duration-300">
|
||||
<div class="bg-green-800 px-4 py-3 border-b border-[#c5a059]">
|
||||
<h3 class="text-lg font-bold text-white font-cinzel truncate"><%= game.title %></h3>
|
||||
</div>
|
||||
<div class="px-4 py-5 sm:p-6 bg-white/90">
|
||||
<div class="text-sm text-gray-700 space-y-2">
|
||||
<p><i class="fa-solid fa-users w-5 text-center text-gray-400"></i> <span class="font-medium">参加者:</span> <%= game.participants.count %> / <%= game.participants_count %></p>
|
||||
<% if game.password_protected? %>
|
||||
<p class="text-amber-600"><i class="fa-solid fa-lock w-5 text-center"></i> パスワード保護</p>
|
||||
<% else %>
|
||||
<p class="text-green-600"><i class="fa-solid fa-lock-open w-5 text-center"></i> 公開ゲーム</p>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-gray-50/90 px-4 py-3 sm:px-6 border-t border-gray-200 flex justify-end">
|
||||
<%= link_to game, class: "inline-flex items-center text-sm font-bold text-green-900 hover:text-[#c5a059] transition-colors" do %>
|
||||
詳細を見る <i class="fa-solid fa-arrow-right ml-2"></i>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="mb-8">
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-5 pl-2 border-l-4 border-gray-400 font-cinzel"><i class="fa-solid fa-list mr-2 text-gray-500"></i>すべてのゲーム</h2>
|
||||
<div id="games" class="grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<% @games.each do |game| %>
|
||||
<div class="diplomacy-card overflow-hidden rounded-lg opacity-90 hover:opacity-100 transition-opacity">
|
||||
<div class="bg-gray-800 px-4 py-3 border-b border-gray-600">
|
||||
<h3 class="text-lg font-bold text-gray-300 font-cinzel truncate"><%= game.title %></h3>
|
||||
</div>
|
||||
<div class="px-4 py-5 sm:p-6 bg-white/90">
|
||||
<div class="text-sm text-gray-700">
|
||||
<% if game.status == 'finished' %>
|
||||
<p><i class="fa-solid fa-info-circle w-5 text-center text-gray-400"></i> <span class="bg-gray-100 text-gray-800 text-xs px-2 py-0.5 rounded-full font-bold">履歴モード</span></p>
|
||||
<% else %>
|
||||
<p><i class="fa-solid fa-info-circle w-5 text-center text-gray-400"></i> <%= game.status %></p>
|
||||
<% end %>
|
||||
<% if game.turns.present? %>
|
||||
<p><i class="fa-solid fa-calendar-days w-5 text-center text-gray-400"></i> <span class="font-medium">時期:</span> <%= parse_phase(game.turns.sort_by(&:number).last&.phase) %></p>
|
||||
<% end %>
|
||||
<p><i class="fa-solid fa-users w-5 text-center text-gray-400"></i> <span class="font-medium">参加人数:</span> <%= game.participants.size %> / <%= game.participants_count %></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-gray-50/90 px-4 py-3 sm:px-6 border-t border-gray-200 flex justify-end">
|
||||
<%= link_to game, class: "text-sm font-medium text-gray-600 hover:text-gray-900" do %>
|
||||
Show <i class="fa-solid fa-eye ml-1"></i>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
1
app/views/games/index.json.jbuilder
Normal file
1
app/views/games/index.json.jbuilder
Normal file
@@ -0,0 +1 @@
|
||||
json.array! @games, partial: "games/game", as: :game
|
||||
25
app/views/games/new.html.erb
Normal file
25
app/views/games/new.html.erb
Normal file
@@ -0,0 +1,25 @@
|
||||
<% content_for :title, "ゲーム作成" %>
|
||||
|
||||
<div class="max-w-2xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||||
<div class="md:flex md:items-center md:justify-between mb-8">
|
||||
<div class="flex-1 min-w-0">
|
||||
<h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
|
||||
新規ゲーム作成
|
||||
</h2>
|
||||
</div>
|
||||
<div class="mt-4 flex md:mt-0 md:ml-4">
|
||||
<%= link_to games_path, class: "inline-flex items-center px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" do %>
|
||||
<svg class="-ml-1 mr-2 h-5 w-5 text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L7.414 9H15a1 1 0 110 2H7.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
一覧に戻る
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<%= render "form", game: @game %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1153
app/views/games/show.html.erb
Normal file
1153
app/views/games/show.html.erb
Normal file
File diff suppressed because it is too large
Load Diff
1
app/views/games/show.json.jbuilder
Normal file
1
app/views/games/show.json.jbuilder
Normal file
@@ -0,0 +1 @@
|
||||
json.partial! "games/game", game: @game
|
||||
Reference in New Issue
Block a user