forked from mtierltd/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclients.js
More file actions
153 lines (134 loc) · 5.19 KB
/
clients.js
File metadata and controls
153 lines (134 loc) · 5.19 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
150
151
152
153
(function() {
$( function() {
$(document).ready(function() {
$("#dialog-confirm").dialog({
autoOpen: false,
modal: true
});
});
$("#new-client-submit").click(function () {
if ($("#new-client-input").val().trim() == '')
return false;
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/add-client/'+$("#new-client-input").val());
var jqxhr = $.post( baseUrl, function() {
getClients();
$(dialogClientEditForm).dialog("close");
})
.done(function(data, status, jqXHR) {
var response = data;
if ('Error' in response){
alert(response.Error);
}
})
.fail(function() {
alert( "error" );
})
return false;
});
dialogClientEditForm = $( "#dialog-client-edit-form" ).dialog({
autoOpen: false,
height: 400,
width: 350,
modal: true,
buttons: {
"Edit client": {click:function(){
editClient(dialogClientEditForm);
return false;
},
text: 'Edit client',
class: 'primary'
},
Cancel: function() {
dialogClientEditForm.dialog( "close" );
return false;
}
},
close: function() {
form[ 0 ].reset();
}
});
form = dialogClientEditForm.find( "form" ).on( "submit", function( event ) {
event.preventDefault();
editClient(dialogClientEditForm);
});
getClients();
function editClient(dialogClientEditForm){
target = dialogClientEditForm.target;
form = dialogClientEditForm.find( "form" );
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/edit-client/'+target);
var jqxhr = $.post( baseUrl, {name:form.find("#name").val()},function() {
getClients();
$(dialogClientEditForm).dialog("close");
})
.done(function(data, status, jqXHR) {
var response = data;
if ('Error' in response){
alert(response.Error);
}
})
.fail(function() {
alert( "error" );
})
.always(function() {
});
}
function getClients(){
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/clients');
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-client/'+cell.getRow().getData().id);
var jqxhr = $.post( baseUrl, function() {
getClients();
$("#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){
dialogClientEditForm.target = cell.getRow().getData().id;
form = dialogClientEditForm.find( "form" )
form.find("#name").val(cell.getRow().getData().name);
dialogClientEditForm.dialog("open");
}},
];
var table = new Tabulator("#clients", {
ajaxURL:baseUrl,
layout:"fitColumns",
columns:columns,
rowClick:function(e, row){
return false;
},
ajaxResponse:function(url, params, response){
return response.Clients; //return the tableData property of a response json object
},
});
}
} );
}());