From: Brendan Hansen Date: Tue, 3 Sep 2019 21:38:16 +0000 (-0500) Subject: Admin can now create and delete problems, as well as test cases X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=19a8bb4d3d410611773e4046b413fddc97f8eb0c;p=codebox.git Admin can now create and delete problems, as well as test cases --- diff --git a/codebox/app/app.moon b/codebox/app/app.moon index adc70c9..d4bb526 100644 --- a/codebox/app/app.moon +++ b/codebox/app/app.moon @@ -7,6 +7,16 @@ bind = require "utils.binding" bind\bind_static 'executer', require 'facades.executer' bind\bind_static 'crypto', -> require 'services.crypto' +bind\bind_static 'uuidv4', -> + math.randomseed os.time! + return -> + template ='xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' + return string.gsub template, '[xy]', (c) -> + v = (c == 'x') and math.random(0, 0xf) or math.random(8, 0xb) + string.format '%x', v + + + class extends lapis.Application layout: require "views.partials.layout" @@ -18,6 +28,8 @@ class extends lapis.Application @navbar = {} @navbar.selected = -1 + @scripts = {} + ['index': "/"]: require "controllers.index" ['account.login': "/login"]: require "controllers.account.login" @@ -32,6 +44,11 @@ class extends lapis.Application ['admin.problem': "/admin/problem"]: require "controllers.admin.problem" ['admin.problem.new': "/admin/problem/new"]: require "controllers.admin.problem.new" ['admin.problem.edit': "/admin/problem/edit/:problem_name"]: require "controllers.admin.problem.edit" + ['admin.problem.delete': "/admin/problem/delete"]: require "controllers.admin.problem.delete" + + ['admin.testcase.new': "/admin/testcase/new"]: require "controllers.admin.testcase.new" + ['admin.testcase.edit': "/admin/testcase/edit"]: require "controllers.admin.testcase.edit" + ['admin.testcase.delete': "/admin/testcase/delete"]: require "controllers.admin.testcase.delete" ['admin.submission': "/admin/submission"]: => "NOT IMPLEMENTED" ['admin.competition': "/admin/competition"]: => "NOT IMPLEMENTED" diff --git a/codebox/controllers/admin/problem.moon b/codebox/controllers/admin/problem.moon index a12f810..ec4bc22 100644 --- a/codebox/controllers/admin/problem.moon +++ b/codebox/controllers/admin/problem.moon @@ -5,9 +5,13 @@ import Problems from require 'models' make_controller layout: require 'views.partials.admin_layout' + scripts: { 'admin_problem' } middleware: { 'logged_in', 'admin_required' } + scripts: + 'admin_problem' + get: => @navbar.selected = 1 diff --git a/codebox/controllers/admin/problem/delete.moon b/codebox/controllers/admin/problem/delete.moon new file mode 100644 index 0000000..620d0a4 --- /dev/null +++ b/codebox/controllers/admin/problem/delete.moon @@ -0,0 +1,28 @@ +import make_controller from require "controllers.controller" +import assert_valid from require "lapis.validate" +import capture_errors, capture_errors_json, yield_error from require 'lapis.application' +import Problems from require 'models' + +make_controller + middleware: { 'logged_in', 'admin_required' } + + post: capture_errors_json => + assert_valid @params, { + { 'short_name', exists: true } + } + + problem = Problems\find short_name: @params.short_name + unless problem + yield_error "Problem not found" + + test_cases = problem\get_test_cases! + if test_cases + for tc in *test_cases + tc\delete! + + problem\delete! + + json: { success: true } + + + diff --git a/codebox/controllers/admin/problem/edit.moon b/codebox/controllers/admin/problem/edit.moon index 7b14622..fda4193 100644 --- a/codebox/controllers/admin/problem/edit.moon +++ b/codebox/controllers/admin/problem/edit.moon @@ -8,6 +8,8 @@ make_controller middleware: { 'logged_in', 'admin_required' } + scripts: { 'admin_problem' } + get: capture_errors_json => @flow 'csrf_setup' @@ -21,6 +23,8 @@ make_controller unless @problem yield_error "Problem not found" + @test_cases = @problem\get_test_cases! + render: true post: capture_errors => @@ -49,6 +53,3 @@ make_controller } redirect_to: (@url_for "admin.problem.edit", problem_name: @params.short_name) - - delete: capture_errors_json => - return json: @params diff --git a/codebox/controllers/admin/problem/new.moon b/codebox/controllers/admin/problem/new.moon index 75d7f34..7079233 100644 --- a/codebox/controllers/admin/problem/new.moon +++ b/codebox/controllers/admin/problem/new.moon @@ -43,6 +43,6 @@ make_controller } if problem then - yield_error success: true, msg: "Successfully created problem #{@params.name}" + return redirect_to: (@url_for 'admin.problem.edit', problem_name: @params.short_name) else yield_error "There was an error creating the problem" diff --git a/codebox/controllers/admin/testcase/Tupfile b/codebox/controllers/admin/testcase/Tupfile new file mode 100644 index 0000000..f0fe651 --- /dev/null +++ b/codebox/controllers/admin/testcase/Tupfile @@ -0,0 +1 @@ +include_rules diff --git a/codebox/controllers/admin/testcase/delete.moon b/codebox/controllers/admin/testcase/delete.moon new file mode 100644 index 0000000..b2ea826 --- /dev/null +++ b/codebox/controllers/admin/testcase/delete.moon @@ -0,0 +1,22 @@ +import make_controller from require "controllers.controller" +import assert_valid from require "lapis.validate" +import capture_errors, capture_errors_json, yield_error from require 'lapis.application' +import Problems, TestCases from require 'models' + +TestCaseView = require "views.admin.problem.test_case" + +make_controller + middleware: { 'logged_in', 'admin_required' } + + post: capture_errors_json => + assert_valid @params, { + { 'test_case_id', exists: true } + } + + test_case = TestCases\find uuid: @params.test_case_id + unless test_case + yield_error "Test case not found" + + test_case\delete! + + json: { 'success': true } diff --git a/codebox/controllers/admin/testcase/edit.moon b/codebox/controllers/admin/testcase/edit.moon new file mode 100644 index 0000000..bf2baed --- /dev/null +++ b/codebox/controllers/admin/testcase/edit.moon @@ -0,0 +1,28 @@ +import make_controller from require "controllers.controller" +import assert_valid from require "lapis.validate" +import capture_errors, capture_errors_json, yield_error from require 'lapis.application' +import Problems, TestCases from require 'models' + +TestCaseView = require "views.admin.problem.test_case" + +make_controller + middleware: { 'logged_in', 'admin_required' } + + post: capture_errors_json => + assert_valid @params, { + { 'test_case_id', exists: true } + { 'input', exists: true } + { 'output', exists: true } + { 'order', exists: true, is_integer: true } + } + + test_case = TestCases\find uuid: @params.test_case_id + unless test_case + yield_error "Test case not found" + + test_case\update + input: @params.input + output: @params.output + testcase_order: @params.order + + json: { 'success': true } diff --git a/codebox/controllers/admin/testcase/new.moon b/codebox/controllers/admin/testcase/new.moon new file mode 100644 index 0000000..9848ea0 --- /dev/null +++ b/codebox/controllers/admin/testcase/new.moon @@ -0,0 +1,38 @@ +import make_controller from require "controllers.controller" +import assert_valid from require "lapis.validate" +import capture_errors, capture_errors_json, yield_error from require 'lapis.application' +import Problems, TestCases from require 'models' + +TestCaseView = require "views.admin.problem.test_case" + +make_controller + inject: + uuidv4: 'uuidv4' + + middleware: { 'logged_in', 'admin_required' } + + post: capture_errors_json => + assert_valid @params, { + { 'short_name', exists: true } + } + + problem = Problems\find short_name: @params.short_name + unless problem + yield_error "Problem not found" + + test_case_id = @uuidv4! + test_html = (TestCaseView -1, test_case_id, '', '')\render_to_string! + + TestCases\create { + uuid: test_case_id + problem_id: problem.id + input: '' + output: '' + } + + return json: { + success: true + uuid: test_case_id + html: test_html + } + diff --git a/codebox/controllers/controller.moon b/codebox/controllers/controller.moon index 34e77d0..b8786a2 100644 --- a/codebox/controllers/controller.moon +++ b/codebox/controllers/controller.moon @@ -9,6 +9,10 @@ bind = require 'utils.binding' for inj, dep in pairs routes.inject @[inj] = bind\make dep + if routes.scripts + for s in *routes.scripts + table.insert @scripts, s + return if not routes.middleware for middleware in *routes.middleware diff --git a/codebox/migrations.moon b/codebox/migrations.moon index 36ed5c0..4ca6e3b 100644 --- a/codebox/migrations.moon +++ b/codebox/migrations.moon @@ -43,7 +43,9 @@ import insert from require "lapis.db" [4]: => create_table "test_cases", { { "id", types.serial }, + { "uuid", types.varchar unique: true }, { "problem_id", types.foreign_key }, + { "testcase_order", types.integer, default: 1 } { "input", types.varchar }, { "output", types.varchar }, diff --git a/codebox/models/problems.moon b/codebox/models/problems.moon index fd7469c..140b29a 100644 --- a/codebox/models/problems.moon +++ b/codebox/models/problems.moon @@ -9,5 +9,8 @@ class Problems extends Model @relations: { { "jobs", has_many: 'Jobs' } - { "test_cases", has_many: 'TestCases' } + { "test_cases" + has_many: 'TestCases' + order: "testcase_order asc" + } } diff --git a/codebox/static/Tupfile b/codebox/static/Tupfile index a7ec031..810bfe9 100644 --- a/codebox/static/Tupfile +++ b/codebox/static/Tupfile @@ -1,2 +1,2 @@ : scss/core.scss |> sass %f:css/%B.css |> css/%B.css css/%B.css.map -: coffee/*.coffee |> coffee -c -m -o js/%B.js %f |> js/%B.js js/%B.js.map +: foreach coffee/*.coffee |> coffee -c -m -o js/%B.js %f |> js/%B.js js/%B.js.map diff --git a/codebox/static/coffee/admin_problem.coffee b/codebox/static/coffee/admin_problem.coffee new file mode 100644 index 0000000..2d495d8 --- /dev/null +++ b/codebox/static/coffee/admin_problem.coffee @@ -0,0 +1,53 @@ +save_testcase = (test_case_id) -> + input = $("[data-tc-input-id=\"#{test_case_id}\"]").val() + output = $("[data-tc-output-id=\"#{test_case_id}\"]").val() + order = $("[data-tc-order-id=\"#{test_case_id}\"]").val() + + $.post '/admin/testcase/edit', { + "test_case_id": test_case_id, + "input": input || "", + "output": output || "", + "order": order, + }, (data) -> + console.log data + +setup_handlers = -> + $('[data-tc-save-all]').click -> + elements = $('[data-tc-save]') + elements.each (k, e) -> + test_case_id = $(e).attr 'data-tc-save' + save_testcase test_case_id + + alert 'Saved all test cases' + window.location.reload() + + $('[data-tc-save]').click (e) -> + test_case_id = $(e.target).attr 'data-tc-save' + save_testcase test_case_id + alert 'Saved test case' + window.location.reload() + + $('[data-tc-delete]').click (e) -> + test_case_id = $(e.target).attr 'data-tc-delete' + $.post '/admin/testcase/delete', { "test_case_id": test_case_id }, (data) -> + $("[data-testcase=\"#{test_case_id}\"]").remove() + console.log data + + $('[data-new-tc]').click (e) -> + problem_name = $(e.target).attr 'data-new-tc' + $.post '/admin/testcase/new', { short_name: problem_name }, (data) -> + console.log data + $('.test-cases').after data.html + + $('[data-problem-delete]').click (e) -> + if not confirm 'Are you sure you want to delete this problem?' + return + problem_name = $(e.target).attr 'data-problem-delete' + + $.post '/admin/problem/delete', { short_name: problem_name }, (data) -> + alert "Deleted #{problem_name}." + window.location.reload() + +$(document).ready -> + setup_handlers() + diff --git a/codebox/static/coffee/main.coffee b/codebox/static/coffee/main.coffee index 478d195..90fff30 100644 --- a/codebox/static/coffee/main.coffee +++ b/codebox/static/coffee/main.coffee @@ -1,2 +1 @@ -main = -> - console.log "Hello world!" +$(document).ready -> diff --git a/codebox/static/css/.gitignore b/codebox/static/css/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/codebox/static/css/core.css b/codebox/static/css/core.css index 27db62a..50ec740 100644 --- a/codebox/static/css/core.css +++ b/codebox/static/css/core.css @@ -130,7 +130,7 @@ body { color: white; } -button { +button, a.button { box-shadow: 0px 2px 6px 0.5px rgba(0, 0, 0, 0.7); border: 1px solid #0077c2; background-color: #0077c2; @@ -139,25 +139,27 @@ button { padding: 0.75rem; margin-bottom: 12px; display: inline-block; -} -button::placeholder { - color: #999; + cursor: pointer; } -form input, form button, form textarea { - box-shadow: 0px 2px 6px 0.5px rgba(0, 0, 0, 0.7); +input, button, textarea { border: 1px solid #0077c2; background-color: #0077c2; color: white; font-size: 1rem; - padding: 0.75rem; - margin-bottom: 12px; display: inline-block; - width: 100%; + padding: 0.25rem; } -form input::placeholder, form button::placeholder, form textarea::placeholder { +input::placeholder, button::placeholder, textarea::placeholder { color: #999; } + +form input, form button, form textarea { + box-shadow: 0px 2px 6px 0.5px rgba(0, 0, 0, 0.7); + padding: 0.75rem; + margin-bottom: 12px; + width: 100%; +} form textarea { background-color: #111; height: 50vh; @@ -180,4 +182,51 @@ form label { background-color: #0077c2; } +.split { + display: grid; + grid-template-columns: 1fr 1fr; +} + +.test_case { + outline: none; + box-shadow: 0px 2px 6px 0.5px rgba(0, 0, 0, 0.5); + resize: none; + border: none; + height: 200px; + padding: 8px; + background-color: #111; + color: #fff; +} +.test_case:first-child { + border-right: 2px solid #0077c2; +} + +.option-line { + box-shadow: 0px 2px 6px 0.5px rgba(0, 0, 0, 0.5); + display: grid; + grid-template-columns: 1fr 1fr; + background-color: #0077c2; + padding: 4px 12px 4px; +} +.option-line > * { + line-height: 44px; + display: inline-block; +} +.option-line > *:last-child { + text-align: right; +} + +.button-list > * { + margin: 0px 8px 0px; + background-color: #42a5f5; + box-shadow: none; + border: none; + color: white; + font-size: 1rem; + line-height: 1.2rem; + padding: 4px 12px 4px; + display: inline-block; + cursor: pointer; +} + /*# sourceMappingURL=core.css.map */ diff --git a/codebox/static/css/core.css.map b/codebox/static/css/core.css.map index 6008454..200e023 100644 --- a/codebox/static/css/core.css.map +++ b/codebox/static/css/core.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../scss/_navbar.scss","../scss/_vars.scss","../scss/_utils.scss","../scss/problem/_sidebar.scss","../scss/core.scss","../scss/_elevate.scss"],"names":[],"mappings":"AAAA;EACC;EACA;EACA,YCIc;EDHd,QCgBe;EDff;EAEA;EAEA;EACA;;AAEA;EACC;EACA;;AAEA;EACC;EACA;;AAIF;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA,kBClCY;EDoCZ;;AAEA;EACC;EACA;;;AE/CJ;EACC;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;;;ACnBD;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EAEA;;AAEA;EACC;;AAGD;EACC;;AAGD;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EAEA;EACA;EACA;EAEA;EACA;;;AC7CF;EACC;EACA;EACA;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;;;AAGD;EACC;EAEA;EACA;EACA;EACA;;;AAGD;EC/BI;EDiCH;EACA,kBH5Bc;EG6Bd;EAEA;EACA;EACA;EACA;;AAEA;EACC;;;AAKD;EChDG;EDkDF;EACA,kBH7Ca;EG8Cb;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAIF;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;;;AAOD;ECjFG;EDoFF;EACA,kBH3Ee;EG4Ef;EACA;;AAEA;EACC,kBHpFY","file":"core.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../scss/_navbar.scss","../scss/_vars.scss","../scss/_utils.scss","../scss/problem/_sidebar.scss","../scss/core.scss","../scss/_elevate.scss"],"names":[],"mappings":"AAAA;EACC;EACA;EACA,YCIc;EDHd,QCgBe;EDff;EAEA;EAEA;EACA;;AAEA;EACC;EACA;;AAEA;EACC;EACA;;AAIF;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA,kBClCY;EDoCZ;;AAEA;EACC;EACA;;;AE/CJ;EACC;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;;;ACnBD;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EAEA;;AAEA;EACC;;AAGD;EACC;;AAGD;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EAEA;EACA;EACA;EAEA;EACA;;;AC7CF;EACC;EACA;EACA;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;;;AAGD;EACC;EAEA;EACA;EACA;EACA;;;AAGD;EC/BI;EDiCH;EACA,kBH5Bc;EG6Bd;EAEA;EACA;EACA;EACA;EAEA;;;AAGD;EACC;EACA,kBHzCc;EG0Cd;EAEA;EACA;EACA;;AAEA;EACC;;;AAKD;EC5DG;ED+DF;EACA;EACA;;AAGD;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;;;AAOD;ECpFG;EDuFF;EACA,kBH9Ee;EG+Ef;EACA;;AAEA;EACC,kBHvFY;;;AG4Ff;EACC;EACA;;;AAGD;EAKC;EC5GG;ED+GH;EACA;EAEA;EACA;EACA;EACA,OHtHO;;AGyGP;EACC;;;AAeF;ECxHI;ED2HH;EACA;EACA,kBHvHc;EGwHd;;AAEA;EACC;EACA;;AAGD;EACC;;;AAKD;EACC;EACA,kBHzIQ;EG0IR;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA","file":"core.css"} \ No newline at end of file diff --git a/codebox/static/js/admin_problem.js b/codebox/static/js/admin_problem.js new file mode 100644 index 0000000..e8dc2b4 --- /dev/null +++ b/codebox/static/js/admin_problem.js @@ -0,0 +1,80 @@ +// Generated by CoffeeScript 2.4.1 +(function() { + var save_testcase, setup_handlers; + + save_testcase = function(test_case_id) { + var input, order, output; + input = $(`[data-tc-input-id="${test_case_id}"]`).val(); + output = $(`[data-tc-output-id="${test_case_id}"]`).val(); + order = $(`[data-tc-order-id="${test_case_id}"]`).val(); + return $.post('/admin/testcase/edit', { + "test_case_id": test_case_id, + "input": input || "", + "output": output || "", + "order": order + }, function(data) { + return console.log(data); + }); + }; + + setup_handlers = function() { + $('[data-tc-save-all]').click(function() { + var elements; + elements = $('[data-tc-save]'); + elements.each(function(k, e) { + var test_case_id; + test_case_id = $(e).attr('data-tc-save'); + return save_testcase(test_case_id); + }); + alert('Saved all test cases'); + return window.location.reload(); + }); + $('[data-tc-save]').click(function(e) { + var test_case_id; + test_case_id = $(e.target).attr('data-tc-save'); + save_testcase(test_case_id); + alert('Saved test case'); + return window.location.reload(); + }); + $('[data-tc-delete]').click(function(e) { + var test_case_id; + test_case_id = $(e.target).attr('data-tc-delete'); + return $.post('/admin/testcase/delete', { + "test_case_id": test_case_id + }, function(data) { + $(`[data-testcase="${test_case_id}"]`).remove(); + return console.log(data); + }); + }); + $('[data-new-tc]').click(function(e) { + var problem_name; + problem_name = $(e.target).attr('data-new-tc'); + return $.post('/admin/testcase/new', { + short_name: problem_name + }, function(data) { + console.log(data); + return $('.test-cases').after(data.html); + }); + }); + return $('[data-problem-delete]').click(function(e) { + var problem_name; + if (!confirm('Are you sure you want to delete this problem?')) { + return; + } + problem_name = $(e.target).attr('data-problem-delete'); + return $.post('/admin/problem/delete', { + short_name: problem_name + }, function(data) { + alert(`Deleted ${problem_name}.`); + return window.location.reload(); + }); + }); + }; + + $(document).ready(function() { + return setup_handlers(); + }); + +}).call(this); + +//# sourceMappingURL=admin_problem.js.map diff --git a/codebox/static/js/admin_problem.js.map b/codebox/static/js/admin_problem.js.map new file mode 100644 index 0000000..b210954 --- /dev/null +++ b/codebox/static/js/admin_problem.js.map @@ -0,0 +1,13 @@ +{ + "version": 3, + "file": "admin_problem.js", + "sourceRoot": "..", + "sources": [ + "coffee/admin_problem.coffee" + ], + "names": [], + "mappings": "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", + "sourcesContent": [ + "save_testcase = (test_case_id) ->\n\tinput = $(\"[data-tc-input-id=\\\"#{test_case_id}\\\"]\").val()\n\toutput = $(\"[data-tc-output-id=\\\"#{test_case_id}\\\"]\").val()\n\torder = $(\"[data-tc-order-id=\\\"#{test_case_id}\\\"]\").val()\n\n\t$.post '/admin/testcase/edit', {\n\t\t\"test_case_id\": test_case_id,\n\t\t\"input\": input || \"\",\n\t\t\"output\": output || \"\",\n\t\t\"order\": order,\n\t}, (data) ->\n\t\tconsole.log data\n\nsetup_handlers = ->\n\t$('[data-tc-save-all]').click ->\n\t\telements = $('[data-tc-save]')\n\t\telements.each (k, e) ->\n\t\t\ttest_case_id = $(e).attr 'data-tc-save'\n\t\t\tsave_testcase test_case_id\n\n\t\talert 'Saved all test cases'\n\t\twindow.location.reload()\n\n\t$('[data-tc-save]').click (e) ->\n\t\ttest_case_id = $(e.target).attr 'data-tc-save'\n\t\tsave_testcase test_case_id\n\t\talert 'Saved test case'\n\t\twindow.location.reload()\n\n\t$('[data-tc-delete]').click (e) ->\n\t\ttest_case_id = $(e.target).attr 'data-tc-delete'\n\t\t$.post '/admin/testcase/delete', { \"test_case_id\": test_case_id }, (data) ->\n\t\t\t$(\"[data-testcase=\\\"#{test_case_id}\\\"]\").remove()\n\t\t\tconsole.log data\n\n\t$('[data-new-tc]').click (e) ->\n\t\tproblem_name = $(e.target).attr 'data-new-tc'\n\t\t$.post '/admin/testcase/new', { short_name: problem_name }, (data) ->\n\t\t\tconsole.log data\n\t\t\t$('.test-cases').after data.html\n\n\t$('[data-problem-delete]').click (e) ->\n\t\tif not confirm 'Are you sure you want to delete this problem?'\n\t\t\treturn\n\t\tproblem_name = $(e.target).attr 'data-problem-delete'\n\n\t\t$.post '/admin/problem/delete', { short_name: problem_name }, (data) ->\n\t\t\talert \"Deleted #{problem_name}.\"\n\t\t\twindow.location.reload()\n\n$(document).ready ->\n\tsetup_handlers()\n\n" + ] +} \ No newline at end of file diff --git a/codebox/static/js/main.js b/codebox/static/js/main.js index 695d933..55e7f56 100644 --- a/codebox/static/js/main.js +++ b/codebox/static/js/main.js @@ -1,10 +1,6 @@ // Generated by CoffeeScript 2.4.1 (function() { - var main; - - main = function() { - return console.log("Hello world!"); - }; + $(document).ready(function() {}); }).call(this); diff --git a/codebox/static/js/main.js.map b/codebox/static/js/main.js.map index 7e307dd..0efd5bf 100644 --- a/codebox/static/js/main.js.map +++ b/codebox/static/js/main.js.map @@ -6,8 +6,8 @@ "coffee/main.coffee" ], "names": [], - "mappings": ";AAAA;AAAA,MAAA;;EAAA,IAAA,GAAO,QAAA,CAAA,CAAA;WACN,OAAO,CAAC,GAAR,CAAY,cAAZ;EADM;AAAP", + "mappings": ";AAAA;EAAA,CAAA,CAAE,QAAF,CAAW,CAAC,KAAZ,CAAkB,QAAA,CAAA,CAAA,EAAA,CAAlB;AAAA", "sourcesContent": [ - "main = ->\n\tconsole.log \"Hello world!\"\n" + "$(document).ready ->\n" ] } \ No newline at end of file diff --git a/codebox/static/js/vendor/jquery.min.js b/codebox/static/js/vendor/jquery.min.js new file mode 100644 index 0000000..a1c07fd --- /dev/null +++ b/codebox/static/js/vendor/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0 * { + line-height: 44px; + display: inline-block; + } + + & > *:last-child { + text-align: right; + } +} + +.button-list { + & > * { + margin: 0px 8px 0px; + background-color: $primary; + box-shadow: none; + border: none; + color: white; + + font-size: 1rem; + line-height: 1.2rem; + padding: 4px 12px 4px; + display: inline-block; + + cursor: pointer; + } +} diff --git a/codebox/views/admin/problem.moon b/codebox/views/admin/problem.moon index e71cbb3..fdc7978 100644 --- a/codebox/views/admin/problem.moon +++ b/codebox/views/admin/problem.moon @@ -2,9 +2,16 @@ html = require "lapis.html" class AdminProblems extends html.Widget content: => - ul -> + h1 'Problems' + + div class: 'content', -> for problem in *@problems - li "#{problem.name} - #{problem.kind} - #{problem.time_limit}" + div class: 'option-line', -> + span "#{problem.name}, Time Limit: #{problem.time_limit}" + div class: 'button-list', -> + a href: (@url_for 'admin.problem.edit', problem_name: problem.short_name), 'Edit' + a { 'data-problem-delete': problem.short_name }, 'Delete' - a href: (@url_for 'admin.problem.new'), - -> text 'Create a problem' + br '' + a class: 'button', href: (@url_for 'admin.problem.new'), + -> text 'Create a problem' diff --git a/codebox/views/admin/problem/edit.moon b/codebox/views/admin/problem/edit.moon index 7046cad..c03eb8e 100644 --- a/codebox/views/admin/problem/edit.moon +++ b/codebox/views/admin/problem/edit.moon @@ -1,4 +1,5 @@ html = require "lapis.html" +TestCase = require "views.admin.problem.test_case" class AdminProblemEdit extends html.Widget content: => @@ -22,3 +23,12 @@ class AdminProblemEdit extends html.Widget input type: 'number', value: 500, name: 'time_limit', value: @problem.time_limit, "" input type: 'submit', value: 'Update problem' + + h2 style: 'margin: 48px 0 16px; padding-left: 12px', 'Test cases' + + div class: 'test-cases', -> + for test_case in *@test_cases + widget (TestCase test_case.testcase_order, test_case.uuid, test_case.input, test_case.output) + + button { 'data-new-tc': @problem.short_name }, 'New test case' + button { 'data-tc-save-all': true }, 'Save all' diff --git a/codebox/views/admin/problem/test_case.moon b/codebox/views/admin/problem/test_case.moon new file mode 100644 index 0000000..6241191 --- /dev/null +++ b/codebox/views/admin/problem/test_case.moon @@ -0,0 +1,22 @@ +html = require "lapis.html" + +class TestCase extends html.Widget + new: (order, id, input, output) => + @order = order + @id = id + @input = input + @output = output + + content: => + div { 'data-testcase': @id }, -> + div class: 'option-line', -> + div -> + span "Case " + input { type: "number", min: 0, max: 1000, value: @order, 'data-tc-order-id': @id }, '' + div class: 'button-list', -> + button { 'data-tc-save': @id }, 'Save' + button { 'data-tc-delete': @id }, 'Delete' + + div style: 'margin-bottom: 12px', class: 'split', -> + textarea { class: 'test_case', 'data-tc-input-id': @id }, @input + textarea { class: 'test_case', 'data-tc-output-id': @id }, @output diff --git a/codebox/views/partials/admin_layout.moon b/codebox/views/partials/admin_layout.moon index da11766..18ab899 100644 --- a/codebox/views/partials/admin_layout.moon +++ b/codebox/views/partials/admin_layout.moon @@ -8,8 +8,12 @@ class DefaultLayout extends html.Widget head -> link rel: "stylesheet", href: "/static/css/core.css" + script type: "text/javascript", src: "/static/js/vendor/jquery.min.js" script type: "text/javascript", src: "/static/js/main.js" + for s in *@scripts + script type: "text/javascript", src: "/static/js/#{s}.js" + body -> widget AdminNavbar widget ErrorList diff --git a/codebox/views/partials/layout.moon b/codebox/views/partials/layout.moon index 38cf9e0..67f288a 100644 --- a/codebox/views/partials/layout.moon +++ b/codebox/views/partials/layout.moon @@ -8,8 +8,12 @@ class DefaultLayout extends html.Widget head -> link rel: "stylesheet", href: "/static/css/core.css" + script type: "text/javascript", src: "/static/js/vendor/jquery.min.js" script type: "text/javascript", src: "/static/js/main.js" + for s in *@scripts + script type: "text/javascript", src: "/static/js/#{s}.js" + body -> widget Navbar widget ErrorList diff --git a/docs/todo b/docs/todo index 736b240..8b3c2d2 100644 --- a/docs/todo +++ b/docs/todo @@ -2,4 +2,3 @@ [ ] Be able to delete problems [ ] Be able to delete test cases [ ] Be able to order test cases -[ ]