88 lines
3.3 KiB
Plaintext
88 lines
3.3 KiB
Plaintext
= form_with model: completion, url: url, method: method do |form|
|
|
- if @message
|
|
= form.hidden_field :message_id, value: @message.id
|
|
.row.mb-3
|
|
.col
|
|
h4 = t("messages.singular").capitalize
|
|
.alert.alert-secondary
|
|
b
|
|
= @message.author
|
|
br
|
|
= @message.text
|
|
.row.mb-2
|
|
.col
|
|
h4
|
|
- if @public
|
|
= t("completions.form.validate_name", name: @contestant.name)
|
|
- else
|
|
= t("completions.singular").capitalize
|
|
- if @contestants.present?
|
|
.row.mb-3
|
|
.col
|
|
.form-floating
|
|
= form.select :contestant_id, @contestants.map { |contestant| [contestant.form_name, contestant.id] }, {}, class: "form-select"
|
|
= form.label :contestant_id
|
|
- if @closest_contestant
|
|
javascript:
|
|
el = document.querySelector('select[name="completion[contestant_id]"]');
|
|
el.value = "#{@closest_contestant.id}"
|
|
- if @puzzles.size > 1
|
|
.row.mb-3
|
|
.col
|
|
.form-floating
|
|
= form.select :puzzle_id, @puzzles.map { |puzzle| ["#{puzzle.name} - #{puzzle.brand}", puzzle.id] }, {}, class: "form-select"
|
|
= form.label :puzzle_id
|
|
- elsif @puzzles.size == 1
|
|
= form.hidden_field :puzzle_id, value: @puzzles.first.id
|
|
- else
|
|
= form.hidden_field :puzzle_id
|
|
.row.mb-3
|
|
.col
|
|
.form-check.form-switch
|
|
= form.check_box :completed, class: "form-check-input"
|
|
= form.label :completed
|
|
javascript:
|
|
completedEl = document.getElementById('completion_completed');
|
|
completedEl.addEventListener('change', (e) => {
|
|
const timeEl = document.getElementById('time');
|
|
const missingPiecesEl = document.getElementById('missing_pieces');
|
|
const remainingPiecesEl = document.getElementById('remaining_pieces');
|
|
if (e.target.checked) {
|
|
timeEl.value = '#{@completion.display_time_from_start}';
|
|
missingPiecesEl.style.display = 'block';
|
|
remainingPiecesEl.style.display = 'none';
|
|
} else {
|
|
timeEl.value = '#{display_time(@contest.duration_seconds)}';
|
|
missingPiecesEl.style.display = 'none';
|
|
remainingPiecesEl.style.display = 'block';
|
|
}
|
|
})
|
|
.row.mb-3
|
|
.col
|
|
.form-floating
|
|
= form.text_field :display_time_from_start, autocomplete: "off", class: "form-control", id: "time"
|
|
= form.label :display_time_from_start, class: "required"
|
|
.row.mb-3 id="missing_pieces"
|
|
.col
|
|
.form-floating
|
|
= form.text_field :missing_pieces, autocomplete: "off", class: "form-control"
|
|
= form.label :missing_pieces
|
|
.row.mb-3 id="remaining_pieces" style="display: none;"
|
|
.col
|
|
.form-floating
|
|
= form.text_field :remaining_pieces, autocomplete: "off", class: "form-control"
|
|
= form.label :remaining_pieces
|
|
javascript:
|
|
completedEl = document.getElementById('completion_completed');
|
|
missingPiecesEl = document.getElementById('missing_pieces');
|
|
remainingPiecesEl = document.getElementById('remaining_pieces');
|
|
if (completedEl.checked) {
|
|
missingPiecesEl.style.display = 'block';
|
|
remainingPiecesEl.style.display = 'none';
|
|
} else {
|
|
missingPiecesEl.style.display = 'none';
|
|
remainingPiecesEl.style.display = 'block';
|
|
}
|
|
.row
|
|
.col
|
|
= form.submit submit_text, class: "btn btn-primary" |