forked from NYCPlanning/edm-metadata-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
294 lines (248 loc) · 9.41 KB
/
script.js
File metadata and controls
294 lines (248 loc) · 9.41 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
var common_status, sde_status;
common_status = false;
sde_status = false;
//Getting value from "ajax.php".
function fill(Value) {
//Assigning value to "search" div in "navbar.php" file.
$('#searchbar').val(Value);
$('#searchbar-form').submit();
//Hiding "display" div in "search.php" file.
$('#display').hide();
}
// Create button for import metadata page
function create_button() {
// If common name and sde name is both unique then the create button would be enabled
if(common_status === true && sde_status === true) {
document.getElementById("create_dataset").disabled = false;
// Else it would be disabled
} else {
document.getElementById("create_dataset").disabled = true;
}
}
$(document).ready(function() {
$(window).keydown(function(event){
if(event.keyCode == 13 && (common_status === false || sde_status === false)) {
event.preventDefault();
return false;
}
});
//On pressing a key on "Search" in "navbar.php" file. This function will be called.
$("#searchbar").keyup(function() {
//Assigning search box value to javascript variable named as "name".
var name = $('#searchbar').val();
//Validating, if "name" is empty.
if (name == "") {
//Assigning empty value to "display" div in "search.php" file.
$("#display").html("");
}
//If name is not empty.
else {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning value of "name" into "search" variable.
search: name
},
//If result found, this funtion will be called.
success: function(html) {
//Assigning result to "display" div in "search.php" file.
$("#display").html(html).show();
}
});
}
});
//On pressing a key on "Search" in "Main.php" file. This function will be called.
$("#dataset_name").keyup(function() {
//Assigning search box value to javascript variable named as "name".
var name = $('#dataset_name').val();
//Validating, if "name" is empty.
if (name == "") {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning value of "name" into "search" variable.
filter_search_blank: name
},
//If result found, this funtion will be called.
success: function(html) {
//Assigning result to "right-div" div in "Main.php" file.
$("#right-div").html(html).show();
}
});
}
//If name is not empty.
else {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning value of "name" into "search" variable.
filter_search: name
},
//If result found, this funtion will be called.
success: function(html) {
//Assigning result to "right-div" div in "Main.php" file.
$("#right-div").html(html).show();
}
});
}
});
//On pressing a key on "common name" in "import_metadata.php" file. This function will be called.
$("#commonName").keyup(function() {
//Assigning search box value to javascript variable named as "name".
var name = $('#commonName').val();
//Validating, if "name" is empty.
if (name == "") {
//Assigning empty value to "display" div in "search.php" file.
document.getElementById("commonName").classList.remove("error");
document.getElementById("commonName").classList.remove("success");
common_status = false;
create_button();
}
//If name is not empty.
else {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning value of "name" into "common" variable.
common: name
}
}).done(function(common) {
common_normalize = (JSON.stringify(common)).toLowerCase();
name_normalize = (JSON.stringify(name)).toLowerCase();
if ((common_normalize).trim() === (name_normalize).trim()) {
document.getElementById("commonName").classList.add("error");
document.getElementById("commonName").classList.remove("success");
common_status = false;
create_button();
}
else {
document.getElementById("commonName").classList.add("success");
document.getElementById("commonName").classList.remove("error");
common_status = true;
create_button();
}
})
}
});
//On pressing a key on "sde name" in "import_metadata.php" file. This function will be called.
$("#sdeName").keyup(function() {
//Assigning search box value to javascript variable named as "name".
var name = $('#sdeName').val();
var first_Char = parseInt(name.charAt(0));
//Validating, if "name" is empty.
if (name === "") {
//Assigning empty value to "display" div in "search.php" file.
document.getElementById("sdeName").classList.remove("success");
document.getElementById("sdeName").classList.remove("error");
sde_status = false;
create_button();
} else if(!isNaN(first_Char)) {
document.getElementById("sdeName").classList.add("error");
document.getElementById("sdeName").classList.remove("success");
sde_status = false;
create_button();
//If name is not empty.
} else {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning value of "name" into "sde" variable.
sde: name
}
}).done(function(sde) {
common_normalize = (JSON.stringify(sde)).toLowerCase();
name_normalize = (JSON.stringify(name)).toLowerCase();
if ((common_normalize).trim() === (name_normalize).trim()) {
document.getElementById("sdeName").classList.add("error");
document.getElementById("sdeName").classList.remove("success");
sde_status = false;
create_button()
}
else {
document.getElementById("sdeName").classList.add("success");
document.getElementById("sdeName").classList.remove("error");
sde_status = true;
create_button()
}
})
}
});
$("#deleteData").click(function() {
var commonName = $('#common-name-delete').text();
var sdeName = $('#sde-name-delete').val();
var readmeID = $('#readme-id').val();
if(confirm("Are you sure you want to delete this dataset?")) {
//AJAX is called.
$.ajax({
//AJAX type is "Post".
type: "POST",
//Data will be sent to "ajax.php".
url: "ajax.php",
//Data, that will be sent to "ajax.php".
data: {
//Assigning values into variables.
deleteCommon: commonName,
deleteSde: sdeName,
deleteID: readmeID
},
//After query runs redirect to main page.
success: function() {
window.location.replace("Main.php");
}
});
}
});
// $("#addRow").click(function() {
// var sdeName = $('#sde_name_underscore').val();
//
// //AJAX is called.
// $.ajax({
// //AJAX type is "Post".
// type: "POST",
// //Data will be sent to "ajax.php".
// url: "ajax.php",
// //Data, that will be sent to "ajax.php".
// data: {
// //Assigning values into variables.
// addSde: sdeName
// },
// //After query runs redirect to main page.
// success: function(i) {
// // var para = "edit" + i;
// // var editbtn = document.getElementById(para);
// // var savebtn = document.getElementById("save" + para);
// // var allClasses = document.getElementsByClassName("text" + para);
// //
// // console.log(editbtn.value)
//
// }
// });
//
//
// });
});