From 03f44c53e35fc1643a39a1e31141ead8c275a3a0 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 29 Oct 2023 21:04:43 -0400 Subject: disable sending a time if you refresh the page --- app/views/wittle/puzzles/_handle_puzzle.html.erb | 75 ++++++++++++++---------- app/views/wittle/puzzles/show.html.haml | 13 ++-- 2 files changed, 50 insertions(+), 38 deletions(-) (limited to 'app/views') diff --git a/app/views/wittle/puzzles/_handle_puzzle.html.erb b/app/views/wittle/puzzles/_handle_puzzle.html.erb index 3d593a4..be9166a 100644 --- a/app/views/wittle/puzzles/_handle_puzzle.html.erb +++ b/app/views/wittle/puzzles/_handle_puzzle.html.erb @@ -4,41 +4,52 @@ var timerInterval window.onload = function() { <% if @playable %> - function pad(val) { - var valString = val + "" - if (valString.length < 2) - { - return "0" + valString - } else { - return valString + function pad(val) { + var valString = val + "" + if (valString.length < 2) + { + return "0" + valString + } else { + return valString + } } - } - function setTime() { - ++totalSeconds - $("#seconds").text(pad(totalSeconds%60)) - $("#minutes").text(pad(parseInt(totalSeconds/60))) - } - $("#sens").val(window.settings.sensitivity) - $("#sens").on("change", function() { - window.settings.sensitivity = this.value - }) - $("#volume").val(parseFloat(window.settings.volume)) - $("#volume").on("change", function() { - window.settings.volume = this.value - }) - $("#activation-button button").on("click", function() { - var puzzle = window.deserializePuzzle("<%= @puzzle.data %>") - draw(puzzle) + function setTime() { + ++totalSeconds + $("#seconds").text(pad(totalSeconds%60)) + $("#minutes").text(pad(parseInt(totalSeconds/60))) + } + $("#sens").val(window.settings.sensitivity) + $("#sens").on("change", function() { + window.settings.sensitivity = this.value + }) + $("#volume").val(parseFloat(window.settings.volume)) + $("#volume").on("change", function() { + window.settings.volume = this.value + }) - $("#activation-button").hide() + <% if @already_started %> + var puzzle = window.deserializePuzzle("<%= @puzzle.data %>") + draw(puzzle) + <% else %> + $("#activation-button button").on("click", function() { + var puzzle = window.deserializePuzzle("<%= @puzzle.data %>") + draw(puzzle) - timerInterval = setInterval(setTime, 1000); - }) + $("#activation-button").hide() + + timerInterval = setInterval(setTime, 1000); + + $.ajax({ + type: "POST", + url: "<%= start_puzzle_path(@puzzle, format: :js) %>" + }) + }) + <% end %> <% else %> - var puzzle = window.deserializePuzzle("<%= @puzzle.data %>") - draw(puzzle) - drawPath(puzzle, JSON.parse("<%= escape_javascript(sanitize @puzzle.solved_data) %>")) - window.trace = function() {} + var puzzle = window.deserializePuzzle("<%= @puzzle.data %>") + draw(puzzle) + drawPath(puzzle, JSON.parse("<%= escape_javascript(sanitize @puzzle.solved_data) %>")) + window.trace = function() {} <% end %> } @@ -49,7 +60,7 @@ window.TRACE_COMPLETION_FUNC = function(puzzle, rawPath) { $.ajax({ type: "POST", url: "<%= solve_puzzle_path(@puzzle, format: :js) %>", - data: { solved: JSON.stringify(rawPath), time: totalSeconds } + data: { solved: JSON.stringify(rawPath) <% unless @already_started %> , time: totalSeconds <% end %> } }) } diff --git a/app/views/wittle/puzzles/show.html.haml b/app/views/wittle/puzzles/show.html.haml index deda344..c46e5ce 100644 --- a/app/views/wittle/puzzles/show.html.haml +++ b/app/views/wittle/puzzles/show.html.haml @@ -3,12 +3,13 @@ %svg#puzzle{ style: "pointer-events: auto"} #submission-form - if @playable - #activation-button - %button{ type: "button" } Reveal Puzzle - #timer - %label#minutes 00 - %label#colon : - %label#seconds 00 + - unless @already_started + #activation-button + %button{ type: "button" } Reveal Puzzle + #timer + %label#minutes 00 + %label#colon : + %label#seconds 00 %details#trace-settings %summary Settings .things -- cgit 1.4.1