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 (133 loc) · 5.54 KB
/
tags.js
File metadata and controls
149 lines (133 loc) · 5.54 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.id);
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');
$.getJSON( baseUrl, function( data ) {
var tags = [];
$.each( data.Tags, function( id, tagMap ) {
tags.push( "<div class='tag-button'>" +
"<div class='tag-name' id='tag-name-"+tagMap['id']+"'>" +
tagMap['name'] +
"</div>"+
"<div class='controls'>"+
"<span class='fas fa-edit clickable tag-edit' id='"+tagMap['id']+"' data-name='"+tagMap['name']+"'></span>"+
"<span class='fas fa-times clickable tag-delete' id='"+tagMap['id']+"'></span>"+
"</div>" +
"</div>" );
});
$("#tags").html($( "<div/>", {
"class": "tags-list",
html: tags.join( "" )
}))
$('.tag-edit').click(function(e) {
e.preventDefault();
dialogTagEditForm.target = e.target;
form = dialogTagEditForm.find( "form" )
form.find("#name").val($(e.target).data("name"));
dialogTagEditForm.dialog("open");
return false;
})
$('.tag-delete').click(function(e) {
$("#dialog-confirm").dialog({
buttons : {
"Confirm" : {click: function() {
var baseUrl = OC.generateUrl('/apps/timetracker/ajax/delete-tag/'+e.target.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");
return false;
})
});
}
} );
}());