New Status
<% use_tinymce %>
<%= form_with(model: [current_user, @status]) do |f| %>
<%= f.label :icon %>
<%= f.file_field :icon %>
<%= f.label :text, "Status Text" %>
<%= f.text_area :text, class: "mce-editor observe_textlength", id: "status" %>
<%= live_validation_for_field(
'status',
maximum_length: ArchiveConfig.STATUS_MAX,
minimum_length: ArchiveConfig.CONTENT_MIN,
tooLongMessage: ts("Too long lmao"),
tooShortMessage: ts("Too short lmao"),
failureMessage: ts("You need to post some content here.")
)
%>
<%= generate_countdown_html("status", ArchiveConfig.STATUS_MAX) %>
<%= f.label :mood %>
<%= f.text_field :mood %>
<%= f.label :music %>
<%= f.text_field :music %>
<%= f.submit "Save Status" %>
<% end %>