forked from mtierltd/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtags.js
More file actions
149 lines (131 loc) · 5 KB
/
tags.js
File metadata and controls
149 lines (131 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
(function() {
$( function() {
$(document).ready(function() {
$("#dialog-confirm").dialog({
autoOpen: false,
modal: true
});
});
$("#new-tag-submit").click(function () {
if ($("#new-tag-input").val().trim() == '')
return false;
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/add-tag/'+$("#new-tag-input").val());
var jqxhr = $.post( baseUrl, function() {
getTags();
$(dialogTagEditForm).dialog("close");
})
.done(function(data, status, jqXHR) {
var response = data;
if ('Error' in response){
alert(response.Error);
}
})
.fail(function() {
alert( "error" );
})
return false;
});
dialogTagEditForm = $( "#dialog-tag-edit-form" ).dialog({
autoOpen: false,
height: 400,
width: 350,
modal: true,
buttons: {
"Edit tag": {click: function(){
editTag(dialogTagEditForm);
return false;
},
text: 'Edit tag',
class:'primary'
},
Cancel: function() {
dialogTagEditForm.dialog( "close" );
}
},
close: function() {
form[ 0 ].reset();
}
});
form = dialogTagEditForm.find( "form" ).on( "submit", function( event ) {
event.preventDefault();
editTag(dialogTagEditForm);
});
getTags();
function editTag(dialogTagEditForm){
target = dialogTagEditForm.target;
form = dialogTagEditForm.find( "form" );
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/edit-tag/'+target);
var jqxhr = $.post( baseUrl, {name:form.find("#name").val()},function() {
getTags();
$(dialogTagEditForm).dialog("close");
})
.done(function(data, status, jqXHR) {
var response = data;
if ('Error' in response){
alert(response.Error);
}
})
.fail(function() {
alert( "error" );
})
}
function getTags(){
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/tags');
var editIcon = function(cell, formatterParams){ //plain text value
return "<i class='fa fa-edit'></i>";
};
var columns = [
{title:"#", field:"", formatter:"rownum", width: 40, align: "center"},
{title:"Name", field:"name", widthGrow:1}, //column will be allocated 1/5 of the remaining space
{formatter:"buttonCross", width:40, align:"center", cellClick:function(e, cell){
$("#dialog-confirm").dialog({
buttons : {
"Confirm" : {click: function() {
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/delete-tag/'+cell.getRow().getData().id);
var jqxhr = $.post( baseUrl, function() {
getTags();
$("#dialog-confirm").dialog("close");
})
.done(function(data, status, jqXHR) {
var response = data;
if ('Error' in response){
alert(response.Error);
}
})
.fail(function() {
alert( "error" );
})
return false;
},
text: 'Confirm',
class:'primary'
},
"Cancel" : function() {
$(this).dialog("close");
}
}
});
$("#dialog-confirm").dialog('open');
//cell.getRow().delete();
}},
{formatter:editIcon, width:40, align:"center", cellClick:function(e, cell){
dialogTagEditForm.target = cell.getRow().getData().id;
form = dialogTagEditForm.find( "form" )
form.find("#name").val(cell.getRow().getData().name);
dialogTagEditForm.dialog("open");
}},
];
var table = new Tabulator("#tags", {
ajaxURL:baseUrl,
layout:"fitColumns",
columns:columns,
rowClick:function(e, row){
return false;
},
ajaxResponse:function(url, params, response){
return response.Tags; //return the tableData property of a response json object
},
});
}
} );
}());