mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
75 lines
2.4 KiB
JavaScript
75 lines
2.4 KiB
JavaScript
/*global $, ace, Materialize, newCSS*/
|
|
(function () {
|
|
var editor = ace.edit("css_editor");
|
|
|
|
function postForm() {
|
|
var name = $('#css_name').val();
|
|
var var_enabled = $("#toggleCSSVar").is(':checked');
|
|
var variables = JSON.stringify(formatCSSVars());
|
|
var css = editor.getValue();
|
|
var funct = $.ajax({
|
|
dataType: "json",
|
|
method: "POST",
|
|
data: {"name": name, "variables_enabled": var_enabled, "variables": variables, "css": css}
|
|
});
|
|
return funct.promise();
|
|
}
|
|
|
|
$(function(){
|
|
editor.getSession().setMode("ace/mode/css");
|
|
editor.setTheme("ace/theme/chrome");
|
|
$("#submit-btn").click(submitForm);
|
|
|
|
if (!newCSS) {
|
|
$("#delete-btn").click(delete_css);
|
|
}
|
|
});
|
|
|
|
function formatCSSVars() {
|
|
return {
|
|
"modal": $("#css_var_modal").val(),
|
|
"noroleusers": $("#css_var_noroleusers").val(),
|
|
"main": $("#css_var_main").val(),
|
|
"placeholder": $("#css_var_placeholder").val(),
|
|
"sidebardivider": $("#css_var_sidebardivider").val(),
|
|
"leftsidebar": $("#css_var_leftsidebar").val(),
|
|
"rightsidebar": $("#css_var_rightsidebar").val(),
|
|
"header": $("#css_var_header").val(),
|
|
"chatmessage": $("#css_var_chatmessage").val(),
|
|
"discrim": $("#css_var_discrim").val(),
|
|
"chatbox": $("#css_var_chatbox").val(),
|
|
};
|
|
}
|
|
|
|
function submitForm() {
|
|
var formPost = postForm();
|
|
formPost.done(function (data) {
|
|
if (newCSS) {
|
|
window.location.href = "edit/" + data.id;
|
|
} else {
|
|
Materialize.toast('CSS Updated!', 10000);
|
|
}
|
|
});
|
|
formPost.fail(function () {
|
|
Materialize.toast('Oh no! Something has failed posting your CSS!', 10000);
|
|
});
|
|
}
|
|
|
|
function delete_css() {
|
|
var candelete = confirm("Do you really want to delete this css???");
|
|
if (!candelete) {
|
|
return;
|
|
}
|
|
|
|
$.ajax({
|
|
type: 'DELETE',
|
|
success: function() {
|
|
alert("You have successfully deleted the CSS!");
|
|
window.location.href = "/user/dashboard";
|
|
},
|
|
error: function() {
|
|
Materialize.toast('Oh no! Something has failed deleting your CSS!', 10000);
|
|
}
|
|
});
|
|
}
|
|
})(); |