replace mootools in add_monitors

This commit is contained in:
Andrew Bauer 2020-12-23 08:54:11 -06:00
parent c91a0b2c09
commit 3c79204592
1 changed files with 10 additions and 9 deletions

View File

@ -1,12 +1,11 @@
var probeReq = new Request.JSON( {url: thisUrl, method: 'get', timeout: AJAX_TIMEOUT, link: 'cancel', onSuccess: getProbeResponse} );
var ProbeResults;
function probe( url_e ) {
probeReq.send( "request=add_monitors&action=probe&url="+url_e.value );
$j.getJSON(thisUrl + '?view=request&request=add_monitors&action=probe&url=' + url_e.value)
.done(getProbeResponse)
.fail(logAjaxFail);
}
var ProbeResults;
function getProbeResponse( respObj, respText ) {
if ( checkStreamForErrors( "getProbeResponse", respObj ) ) {
console.log(respText);
@ -83,7 +82,6 @@ function addMonitor(url) {
function import_csv( form ) {
var formData = new FormData( form );
console.log(formData);
//formData.append('file', $('#file')[0].files[0]);
$j.ajax({
url: thisUrl+"?request=add_monitors&action=import",
@ -91,16 +89,19 @@ function import_csv( form ) {
data: formData,
processData: false, // tell jQuery not to process the data
contentType: false, // tell jQuery not to set contentType
success: function(data) {
done: function(data) {
var json = JSON.parse(data);
parseStreams( json.Streams );
}
});
}
function initPage() {
url = $j('#Url')[0];
var url = $j('#Url')[0];
if ( url.value ) {
probe(url);
}
}
window.addEventListener( 'DOMContentLoaded', initPage );
$j(document).ready(initPage);