20 lines
1.4 KiB
Plaintext
20 lines
1.4 KiB
Plaintext
<%= turbo_frame_tag @card, :edit do %>
|
|
<%= form_with model: @card, url: collection_card_path(@card.collection, @card), class: "card__content", data: { controller: "form paste" } do |form| %>
|
|
<h1 class="card__title">
|
|
<%= form.label :title, class: "flex flex-column align-center" do %>
|
|
<%= form.text_area :title, class: "input input--textarea full-width borderless txt-align-start card-field__title",
|
|
required: true, autofocus: true, placeholder: "Name it…",
|
|
rows: 1,
|
|
data: { action: "keydown.enter->form#submit:prevent keydown.ctrl+enter->form#submit:prevent keydown.meta+enter->form#submit:prevent keydown.esc->form#cancel focus->form#select" } %>
|
|
<% end %>
|
|
</h1>
|
|
<div class="card__description markdown-content margin-block-start-half margin-block-end">
|
|
<%= form.markdown_area :description, class: "input input--textarea full-width borderless txt-align-start card-field__description",
|
|
placeholder: "Add some notes, context, pictures, or video about this…",
|
|
data: { action: "keydown.ctrl+enter->form#submit:prevent keydown.meta+enter->form#submit:prevent keydown.esc->form#cancel:stop paste->paste#pasteFiles" } %>
|
|
</div>
|
|
<%= form.button "Save changes", type: :submit, class: "btn" %>
|
|
<%= link_to "Close editor and discard changes", collection_card_path(@card.collection, @card), data: { form_target: "cancel" }, hidden: true %>
|
|
<% end %>
|
|
<% end %>
|