|
@@ -5,19 +5,28 @@ function getAllData(){
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
var url_string = window.location.href
|
|
|
var url = new URL(url_string);
|
|
|
if(!url.searchParams.has("display")){
|
|
|
- var urlarray = ["aktivieren","aktivierenPrio","stornieren","moveTop","moveX","edit"]
|
|
|
+ var urlarray = ["aktivieren","aktivierenPrio","stornieren","moveTop","moveX","move","edit"]
|
|
|
}else{
|
|
|
|
|
|
var urlparams = url.searchParams.get("display").replace("/","");
|
|
|
var urlarray = urlparams.split(",");
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ if(url.searchParams.has("menu")){
|
|
|
+ console.log("MENU");
|
|
|
+ menuentries = url.searchParams.get("menu").split(",")
|
|
|
+ $( "#data" ).append("<a class='ontop'href='" + menuentries[1] + "' target='_blank'>" + menuentries[0] +"</a>" );
|
|
|
+ }
|
|
|
|
|
|
$.ajax({
|
|
|
type: "GET",
|
|
|
url: 'data.db',
|
|
|
+ async: false,
|
|
|
success: function(ret) {
|
|
|
if(!$(ret.data).length == 0){
|
|
|
container = document.getElementById("data");
|
|
@@ -38,7 +47,7 @@ function getAllData(){
|
|
|
tablehead += "<th class='editable'>" + Object.keys(JSON.parse(ret.data[0].alldata))[i]
|
|
|
|
|
|
if(url.searchParams.has("showfilter")){
|
|
|
- tablehead += '<br><input type="text" id="searchtable' + ++joinkey +'" onkeyup="searchtable(' + joinkey + ')" placeholder="Search for ' + Object.keys(JSON.parse(ret.data[0].alldata))[i] + '">'
|
|
|
+ tablehead += '<br><input styl="width: 100%;" type="text" id="searchtable' + ++joinkey +'" onkeyup="searchtable(' + joinkey + ')" placeholder="Search for ' + Object.keys(JSON.parse(ret.data[0].alldata))[i] + '" name="' +Object.keys(JSON.parse(ret.data[0].alldata))[i] + '">'
|
|
|
}
|
|
|
tablehead += '</th>'
|
|
|
}
|
|
@@ -78,7 +87,60 @@ function getAllData(){
|
|
|
}
|
|
|
|
|
|
});
|
|
|
+
|
|
|
+
|
|
|
+ if(url.searchParams.has("searchkey")){
|
|
|
+ var searchkey = url.searchParams.get("searchkey").replace("/","");
|
|
|
+ $('[name="' + searchkey +'"]').val(url.searchParams.get("searchterm").replace("/",""));
|
|
|
+ $('[name="' + searchkey +'"]').keyup();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if(url.searchParams.has("sendListBack")){
|
|
|
+
|
|
|
+
|
|
|
+ $('body').append('<a onclick="collectdata2sendBack()" href="#">Sende Liste</a>');
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ new Sortable(document.getElementById('data'),{
|
|
|
+ handle: '.handle',
|
|
|
+ animation: 150
|
|
|
+ });
|
|
|
+ */
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+function collectdata2sendBack(){
|
|
|
+ console.log("sending");
|
|
|
+ var sendback = [];
|
|
|
+ $('[name="pkvalues"]:visible').each(function(){
|
|
|
+ sendback.push($(this).html());
|
|
|
+ });
|
|
|
+
|
|
|
+ sendDataElementBack(sendback)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+var row;
|
|
|
+
|
|
|
+function start(){
|
|
|
+ row = event.target;
|
|
|
}
|
|
|
+function dragover(){
|
|
|
+ var e = event;
|
|
|
+ e.preventDefault();
|
|
|
+
|
|
|
+ let children= Array.from(e.target.parentNode.parentNode.children);
|
|
|
+
|
|
|
+ if(children.indexOf(e.target.parentNode)>children.indexOf(row))
|
|
|
+ e.target.parentNode.after(row);
|
|
|
+ else
|
|
|
+ e.target.parentNode.before(row);
|
|
|
+}
|
|
|
+
|
|
|
function searchtable(key) {
|
|
|
console.log("AAA");
|
|
|
|
|
@@ -204,6 +266,13 @@ function setSingleData(singleData, urlarray, i = -1, url = ""){
|
|
|
$(entry).attr("class","tableentry");
|
|
|
|
|
|
|
|
|
+ if(urlarray.includes("move")){
|
|
|
+ $(entry).attr("draggable","true");
|
|
|
+ $(entry).attr("ondragstart","start()");
|
|
|
+ $(entry).attr("ondragover","dragover()");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
if(url.searchParams.has("colorize")){
|
|
@@ -245,13 +314,16 @@ function setSingleData(singleData, urlarray, i = -1, url = ""){
|
|
|
if(urlarray.includes("moveX")){
|
|
|
tableentry += "<td><a onclick='move(" + singleData.__orderID__ +",7)' href='#'>MovetoX</a></td>"
|
|
|
}
|
|
|
+ if(urlarray.includes("move")){
|
|
|
+ tableentry += '<td class="handle"><a href="#">⇅</a></td>'
|
|
|
+ }
|
|
|
if(urlarray.includes("edit")){
|
|
|
tableentry += "<td class='edit'><a onclick='edit(" + singleData.__orderID__ +")' href='#'>Edit</a></td>"
|
|
|
}
|
|
|
|
|
|
|
|
|
if(singleData.hasOwnProperty('pkvalue')){
|
|
|
- tableentry += "<td>" + singleData.pkvalue + "</td>";
|
|
|
+ tableentry += "<td name='pkvalues'>" + singleData.pkvalue + "</td>";
|
|
|
}
|
|
|
tableentry += "<td class='editable'>" + Object.values(JSON.parse(singleData.alldata)).join("</td><td class='editable'>") + "</td>"
|
|
|
$(entry).html(tableentry);
|