39 lines
2.0 KiB
Plaintext
39 lines
2.0 KiB
Plaintext
<%= turbo_frame_tag :modal do %>
|
|
<div class="feature-box stat">
|
|
<div class="feature-box-icons">
|
|
<%= icon_link_to "fa-close", table_character_character_sheet_sections_path(@stat.character.table, @stat.character),
|
|
class: "icon-link" %>
|
|
<%= icon_link_to "fa-edit", edit_stat_path(@stat), class: "icon-link" %>
|
|
</div>
|
|
<h2><%= @stat.name %></h2>
|
|
<%= form_with model: @stat, class: "stat-form", data: { controller: "auto-update" } do |f| %>
|
|
<%= f.number_field :value, min: @stat.min_allowed, max: @stat.max_allowed %>
|
|
<div class="inline">
|
|
<%= f.label :min_allowed, t(".min_allowed") %>
|
|
<%= f.number_field :min_allowed %>
|
|
<%= f.label :max_allowed, t(".max_allowed") %>
|
|
<%= f.number_field :max_allowed %>
|
|
</div>
|
|
<% end %>
|
|
<% if @stat.rollable? %>
|
|
<%= form_with model: DiceRoll.new, url: table_dice_rolls_path(@stat.character.table), class: "stat-form",
|
|
data: { controller: "dice-roll modal-closer", action: "modal-closer#closeModal" } do |f| %>
|
|
<%= f.hidden_field :rollable_type, value: "Stat" %>
|
|
<%= f.hidden_field :rollable_id, value: @stat.id %>
|
|
<div class="inline">
|
|
<%= f.submit "#{t(".roll")}".html_safe, class: "roll-button" %>
|
|
<div class="roll-command-display"><%= @stat.roll_command %></div>
|
|
</div>
|
|
<% end %>
|
|
<% @stat.dice_roll_types.each do |dice_roll_type| %>
|
|
<%= form_with model: DiceRoll.new, url: table_dice_rolls_path(@stat.character.table), class: "stat-form",
|
|
data: { controller: "dice-roll modal-closer", action: "modal-closer#closeModal" } do |f| %>
|
|
<%= f.hidden_field :rollable_type, value: "DiceRollType" %>
|
|
<%= f.hidden_field :rollable_id, value: dice_roll_type.id %>
|
|
<%= f.submit "#{t(".roll_type_html", name: dice_roll_type.name, command: dice_roll_type.roll_command)}".html_safe, class: "roll-button" %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|