/*global $, ace, Materialize, newCSS*/ (function () { if($("#css_editor").length != 0) { var editor = ace.edit("css_editor"); debugger; } function postForm() { var name = $('#css_name').val(); var var_enabled = $("#toggleCSSVar").is(':checked'); var variables = JSON.stringify(formatCSSVars()); var css = null; if($("#css_editor").length != 0) { css = editor.getValue(); if (css.length == 0) { css = null; } } var funct = $.ajax({ dataType: "json", method: "POST", data: {"name": name, "variables_enabled": var_enabled, "variables": variables, "css": css} }); return funct.promise(); } $(function(){ if($("#css_editor").length != 0) { 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); } }); } })();