-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split up the client-side code into more manageable pieces
- Loading branch information
Showing
11 changed files
with
1,925 additions
and
1,909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
function updateUsername(username: string) { | ||
let p = $.url().param() | ||
p.worker = username | ||
window.history.pushState($.url().param(), 'Audio annotation', '/gui.html?' + $.param(p)) | ||
$('#worker-name').val(username) | ||
} | ||
|
||
updateUsername($.url().param().worker) | ||
|
||
$('#change-user').click(function(e) { | ||
recordMouseClick(e, "#change-user"); | ||
// @ts-ignore | ||
updateUsername($('#worker-name').val()) | ||
$('#worker-name').blur() | ||
reload(null) | ||
}) | ||
|
||
$('#worker-name').keypress(function(event) { | ||
if (event.which == 13) { | ||
event.preventDefault() | ||
$('#change-user').click() | ||
$('#worker-name').blur() | ||
} | ||
}) | ||
|
||
function updateReferences(references: string[]) { | ||
let p = $.url().param() | ||
// TODO This is the old system | ||
delete p.references | ||
p.reference = references | ||
window.history.pushState($.url().param(), 'Audio annotation', '/gui.html?' + $.param(p)) | ||
$('#references-input').val(_.join(references, ' ')) | ||
} | ||
|
||
function currentReferences() { | ||
return _.concat( // TODO Legacy, remove 'references' and keep repeated 'reference' | ||
_.isUndefined($.url().param().references) ? [] : _.split($.url().param().references, ',') | ||
, _.isUndefined($.url().param().reference) ? [] : $.url().param().reference) | ||
} | ||
|
||
updateReferences(currentReferences()) | ||
|
||
$('#edit-references').click(function(e) { | ||
recordMouseClick(e, "#edit-references"); | ||
// @ts-ignore | ||
updateReferences(_.split($('#references-input').val(), ' ')) | ||
$('#references-input').blur() | ||
reload(null) | ||
}) | ||
|
||
$('#references-input').keypress(function(event) { | ||
if (event.which == 13) { | ||
event.preventDefault() | ||
$('#edit-references').click() | ||
$('#references-input').blur() | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
|
||
interface JQueryStatic { | ||
url: any | ||
} | ||
interface JQuery { | ||
bootstrapSwitch: any | ||
} | ||
interface AudioBufferSourceNode { | ||
playbackState: any | ||
PLAYING_STATE: any | ||
} | ||
|
||
// https://gist.github.com/aaronk6/bff7cc600d863d31a7bf | ||
/** | ||
* Register ajax transports for blob send/recieve and array buffer send/receive via XMLHttpRequest Level 2 | ||
* within the comfortable framework of the jquery ajax request, with full support for promises. | ||
* | ||
* Notice the +* in the dataType string? The + indicates we want this transport to be prepended to the list | ||
* of potential transports (so it gets first dibs if the request passes the conditions within to provide the | ||
* ajax transport, preventing the standard transport from hogging the request), and the * indicates that | ||
* potentially any request with any dataType might want to use the transports provided herein. | ||
* | ||
* Remember to specify 'processData:false' in the ajax options when attempting to send a blob or arraybuffer - | ||
* otherwise jquery will try (and fail) to convert the blob or buffer into a query string. | ||
*/ | ||
$.ajaxTransport('+*', function(options, _originalOptions, jqXHR) { | ||
// Test for the conditions that mean we can/want to send/receive blobs or arraybuffers - we need XMLHttpRequest | ||
// level 2 (so feature-detect against window.FormData), feature detect against window.Blob or window.ArrayBuffer, | ||
// and then check to see if the dataType is blob/arraybuffer or the data itself is a Blob/ArrayBuffer | ||
if ( | ||
FormData && | ||
((options.dataType && (options.dataType === 'blob' || options.dataType === 'arraybuffer')) || | ||
(options.data && | ||
((window.Blob && options.data instanceof Blob) || (ArrayBuffer && options.data instanceof ArrayBuffer)))) | ||
) { | ||
return { | ||
/** | ||
* Return a transport capable of sending and/or receiving blobs - in this case, we instantiate | ||
* a new XMLHttpRequest and use it to actually perform the request, and funnel the result back | ||
* into the jquery complete callback (such as the success function, done blocks, etc.) | ||
* | ||
* @param headers | ||
* @param completeCallback | ||
*/ | ||
send: function(headers, completeCallback) { | ||
var xhr = new XMLHttpRequest(), | ||
url = options.url || window.location.href, | ||
type = options.type || 'GET', | ||
dataType = options.dataType || 'text', | ||
data = options.data || null, | ||
async = options.async || true, | ||
key | ||
|
||
xhr.addEventListener('load', function() { | ||
var response = <any>{}, | ||
isSuccess | ||
|
||
isSuccess = (xhr.status >= 200 && xhr.status < 300) || xhr.status === 304 | ||
|
||
if (isSuccess) { | ||
response[dataType] = xhr.response | ||
} else { | ||
// In case an error occured we assume that the response body contains | ||
// text data - so let's convert the binary data to a string which we can | ||
// pass to the complete callback. | ||
response.text = String.fromCharCode.apply( | ||
null, | ||
// @ts-ignore | ||
new Uint8Array(xhr.response) | ||
) | ||
} | ||
|
||
// @ts-ignore | ||
completeCallback(xhr.status, xhr.statusText, response, xhr.getAllResponseHeaders()) | ||
}) | ||
|
||
xhr.open(type, url, async) | ||
// @ts-ignore | ||
xhr.responseType = dataType | ||
|
||
for (key in headers) { | ||
if (headers.hasOwnProperty(key)) xhr.setRequestHeader(key, headers[key]) | ||
} | ||
// @ts-ignore | ||
xhr.send(data) | ||
}, | ||
abort: function() { | ||
jqXHR.abort() | ||
}, | ||
} | ||
} | ||
}) |
Oops, something went wrong.