Added javascript code to add a result in the background without refreshing the page

This commit is contained in:
Gregory Ballantine
2024-06-03 13:40:26 -04:00
parent b4bd116367
commit 5919226dec
3 changed files with 38 additions and 14 deletions

View File

@ -1,6 +1,8 @@
$ ->
console.log('ready.')
$('#result-form').on('submit', addResult)
$('#report-benchmarks').on('change', ->
url = '/api/benchmark/' + $('#report-benchmarks').val() + '/tests'
$.get(url, (data) ->
@ -17,3 +19,18 @@ addOption = (test) ->
.attr('value', test.id)
.text(test.title)
)
addResult = (e) ->
e.preventDefault() # prevent browser from traveling to another page
$.post('/result/add', {
redirect: false
result_test: $('#result_test').val()
result_component: $('#result_component').val()
result_benchmark: $('#result_benchmark').val()
result_avg: $('#result_avg').val()
result_min: $('#result_min').val()
result_max: $('#result_max').val()
}, (data) ->
console.log(data)
)