mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
118 lines
4 KiB
JavaScript
118 lines
4 KiB
JavaScript
// Generated by CoffeeScript 1.7.1
|
|
(function() {
|
|
var fOnLoad;
|
|
|
|
fOnLoad = function() {
|
|
var editor, fChangeInputVisibility;
|
|
document.title = 'Forge Event Poller';
|
|
$('#pagetitle').text("{{{user.username}}}, forge your custom event poller!");
|
|
editor = ace.edit("editor");
|
|
editor.setTheme("ace/theme/monokai");
|
|
editor.getSession().setMode("ace/mode/coffee");
|
|
editor.setShowPrintMargin(false);
|
|
$('#editor_mode').change(function(el) {
|
|
if ($(this).val() === 'CoffeeScript') {
|
|
return editor.getSession().setMode("ace/mode/coffee");
|
|
} else {
|
|
return editor.getSession().setMode("ace/mode/javascript");
|
|
}
|
|
});
|
|
fChangeInputVisibility = function() {
|
|
return $('#tableParams tr').each(function(id) {
|
|
if ($(this).is(':last-child' || $(this).is(':only-child'))) {
|
|
$('img', this).hide();
|
|
return $('input[type=checkbox]', this).hide();
|
|
} else {
|
|
$('img', this).show();
|
|
return $('input[type=checkbox]', this).show();
|
|
}
|
|
});
|
|
};
|
|
$('#tableParams').on('click', 'img', function() {
|
|
var par;
|
|
par = $(this).closest('tr');
|
|
if (!par.is(':last-child')) {
|
|
par.remove();
|
|
}
|
|
return fChangeInputVisibility();
|
|
});
|
|
$('#tableParams').on('keyup', 'input', function(e) {
|
|
var cb, code, img, inp, par, tr;
|
|
code = e.keyCode || e.which;
|
|
if (code !== 9) {
|
|
par = $(this).closest('tr');
|
|
if (par.is(':last-child')) {
|
|
tr = $('<tr>');
|
|
img = $('<img>').attr('title', 'Remove?').attr('src', 'red_cross_small.png');
|
|
cb = $('<input>').attr('type', 'checkbox').attr('title', 'Password shielded input?');
|
|
inp = $('<input>').attr('type', 'text').attr('class', 'textinput');
|
|
tr.append($('<td>').append(img));
|
|
tr.append($('<td>').append(cb));
|
|
tr.append($('<td>').append(inp));
|
|
tr.append($('<td>'));
|
|
par.parent().append(tr);
|
|
return fChangeInputVisibility();
|
|
} else if ($(this).val() === '' && !par.is(':only-child')) {
|
|
return par.remove();
|
|
}
|
|
}
|
|
});
|
|
fChangeInputVisibility();
|
|
return $('#but_submit').click(function() {
|
|
var listParams, obj;
|
|
if ($('#input_id').val() === '') {
|
|
return alert('Please enter an event poller name!');
|
|
} else {
|
|
listParams = {};
|
|
$('#tableParams tr').each(function() {
|
|
var shld, val;
|
|
val = $('input.textinput', this).val();
|
|
shld = $('input[type=checkbox]', this).is(':checked');
|
|
if (val !== "") {
|
|
listParams[val] = shld;
|
|
}
|
|
return true;
|
|
});
|
|
obj = {
|
|
command: 'forge_event_poller',
|
|
payload: {
|
|
id: $('#input_id').val(),
|
|
lang: $('#editor_mode').val(),
|
|
"public": $('#is_public').is(':checked'),
|
|
data: editor.getValue(),
|
|
params: JSON.stringify(listParams)
|
|
}
|
|
};
|
|
obj.payload = JSON.stringify(obj.payload);
|
|
window.scrollTo(0, 0);
|
|
return $.post('/usercommand', obj).done(function(data) {
|
|
$('#info').text(data.message);
|
|
return $('#info').attr('class', 'success');
|
|
}).fail(function(err) {
|
|
var fDelayed;
|
|
if (err.status === 401) {
|
|
return window.location.href = 'forge?page=forge_event_poller';
|
|
} else {
|
|
fDelayed = function() {
|
|
var msg, oErr;
|
|
if (err.responseText === '') {
|
|
msg = 'No Response from Server!';
|
|
} else {
|
|
try {
|
|
oErr = JSON.parse(err.responseText);
|
|
msg = oErr.message;
|
|
} catch (_error) {}
|
|
}
|
|
$('#info').text('Event Poller not stored! ' + msg);
|
|
return $('#info').attr('class', 'error');
|
|
};
|
|
return setTimeout(fDelayed, 500);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
window.addEventListener('load', fOnLoad, true);
|
|
|
|
}).call(this);
|