Skip to content
Snippets Groups Projects
Commit 1c402aa9 authored by alvaro's avatar alvaro
Browse files

Moving js related to component editor under /admin URLs

parent b14c16da
No related branches found
No related tags found
No related merge requests found
codemirror @ fdf78f75
Subproject commit fdf78f757208674d0594fe0ddaa0f1b08bbc1d82
$(document).ready(function(){ $(document).ready(function(){
var relPos = "../lodspeakr/components/"; var relPos = "../lodspeakr/components/";
var templateBuffer = "";
var queryBuffer = "";
$("#query-test-button").on('click', function(e){ $("#query-test-button").on('click', function(e){
var query = $("#query-editor").val(); var query = queryEditor.getValue();
var endpoint = $("#endpoint-list>option:selected").val(); var endpoint = $("#endpoint-list>option:selected").val();
$("#results").empty(); $("#results").empty();
$("#query-test-button").addClass('disabled').html('<img src="../img/wait.gif"/>'); $("#query-test-button").addClass('disabled').html('<img src="../img/wait.gif"/>');
...@@ -82,15 +80,15 @@ $(document).ready(function(){ ...@@ -82,15 +80,15 @@ $(document).ready(function(){
var url="components/details/"+componentType+"/"+componentName; var url="components/details/"+componentType+"/"+componentName;
templateBuffer = ""; templateBuffer = "";
queryBuffer = ""; queryBuffer = "";
$("#template-editor").val(""); templateEditor.setValue("");
$("#query-editor").val(""); queryEditor.setValue("");
$.get(url, function(data){ $.get(url, function(data){
$("#template-list").empty() $("#template-list").empty()
$("#query-list").empty() $("#query-list").empty()
$.each(data.views, function(i, item){ $.each(data.views, function(i, item){
var viewUrl = relPos+componentType+"/"+componentName+"/"+item; var viewUrl = relPos+componentType+"/"+componentName+"/"+item;
var viewFileUrl = componentType+"/"+componentName+"/"+item; var viewFileUrl = componentType+"/"+componentName+"/"+item;
$("#template-list").append("<li class='file-li'><button type='button' class='close hide lodspk-delete-file' data-parent='"+dataParent+"' data-file='"+viewFileUrl+"' style='align:left'>x</button><a class='lodspk-template' href='#template-save-button' data-url='"+viewUrl+"'>"+item+"</a></li>") ; $("#template-list").append("<li class='file-li'><button type='button' class='close hide lodspk-delete-file' data-parent='"+dataParent+"' data-file='"+viewFileUrl+"' style='align:left'>x</button><a class='lodspk-template' href='#template-editor' data-url='"+viewUrl+"'>"+item+"</a></li>") ;
}); });
$.each(data.models, function(i, item){ $.each(data.models, function(i, item){
var modelUrl = relPos+componentType+"/"+componentName+"/queries/"+item; var modelUrl = relPos+componentType+"/"+componentName+"/queries/"+item;
...@@ -164,9 +162,12 @@ $(document).ready(function(){ ...@@ -164,9 +162,12 @@ $(document).ready(function(){
cache: false, cache: false,
url: fileUrl, url: fileUrl,
success: function(data){ success: function(data){
$("#template-editor").val(data); templateEditor.setValue(data);
templateBuffer = data; templateBuffer = data;
$("#template-save-button").attr("data-url", fileUrl).addClass("disabled"); $("#template-save-button").attr("data-url", fileUrl).addClass("disabled");
$('html, body').stop().animate({
scrollTop: $('body').offset().top
}, 100);
} }
}); });
}); });
...@@ -176,27 +177,30 @@ $(document).ready(function(){ ...@@ -176,27 +177,30 @@ $(document).ready(function(){
cache: false, cache: false,
url: fileUrl, url: fileUrl,
success: function(data){ success: function(data){
$("#query-editor").val(data); queryEditor.setValue(data);
queryBuffer = data; queryBuffer = data;
$("#query-save-button").attr("data-url", fileUrl).addClass("disabled"); $("#query-save-button").attr("data-url", fileUrl).addClass("disabled");
$('#query-editor').stop().animate({
scrollTop: $('body').offset().top
}, 100);
} }
}); });
}); });
//Turn 'save' buttons disable when no change has been made //Turn 'save' buttons disable when no change has been made
$("#query-editor").on("keyup", function(e){ /*$("#query-editor").on("keyup", function(e){
if($("#query-editor").val() == queryBuffer){ if($("#query-editor").val() == queryBuffer){
$("#query-save-button").addClass("disabled"); $("#query-save-button").addClass("disabled");
}else{ }else{
$("#query-save-button").removeClass("disabled"); $("#query-save-button").removeClass("disabled");
} }
}); });
$("#template-editor").on("keyup", function(e){ templateEditor.("keyup", function(e){
if($("#template-editor").val() == templateBuffer){ if($("#template-editor").val() == templateBuffer){
$("#template-save-button").addClass("disabled"); $("#template-save-button").addClass("disabled");
}else{ }else{
$("#template-save-button").removeClass("disabled"); $("#template-save-button").removeClass("disabled");
} }
}); });*/
//Save action //Save action
$("#template-save-button").on("click", function(e){ $("#template-save-button").on("click", function(e){
if(!$("#template-save-button").hasClass("disabled")){ if(!$("#template-save-button").hasClass("disabled")){
...@@ -204,14 +208,14 @@ $(document).ready(function(){ ...@@ -204,14 +208,14 @@ $(document).ready(function(){
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
url: url, url: url,
data: {content: $("#template-editor").val()}, data: {content: templateEditor.getValue()},
success: function(data){if(data.success == true){ success: function(data){if(data.success == true){
$("#template-msg").removeClass('hide').html("Saved!").show().delay(2000).fadeOut("slow"); $("#template-msg").removeClass('hide').html("Saved!").show().delay(2000).fadeOut("slow");
}}, }},
dataType: 'json' dataType: 'json'
}); });
templateBuffer=$("#template-save-button").val(); templateBuffer=templateEditor.getValue();
$("#template-save-button").addClass('disabled'); $("#template-save-button").addClass('disabled');
} }
}); });
...@@ -221,7 +225,7 @@ $(document).ready(function(){ ...@@ -221,7 +225,7 @@ $(document).ready(function(){
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
url: url, url: url,
data: {content: $("#query-editor").val()}, data: {content: queryEditor.getValue()},
success: function(data){if(data.success == true){ success: function(data){if(data.success == true){
$("#query-msg").removeClass('hide').html("Saved!").show().delay(2000).fadeOut("slow"); $("#query-msg").removeClass('hide').html("Saved!").show().delay(2000).fadeOut("slow");
}else{ }else{
...@@ -234,7 +238,7 @@ $(document).ready(function(){ ...@@ -234,7 +238,7 @@ $(document).ready(function(){
dataType: 'json' dataType: 'json'
}); });
queryBuffer=$("#query-save-button").val(); queryBuffer=queryEditor.getValue();
$("#query-save-button").addClass('disabled'); $("#query-save-button").addClass('disabled');
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment