-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdRecords.js
363 lines (268 loc) · 9.84 KB
/
stdRecords.js
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
var recordArr = [];
var getJSON = function () {
console.log("In getJSON function");
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log("AJAX call success");
console.log(this.responseText);
recordArr = JSON.parse(this.responseText);
console.log(recordArr);
saveDataToLS();
// display the data
displayRecords();
}
};
console.log("Loading Data complete");
xhttp.open("GET", "personInfo.json", true);
xhttp.send();
};
var displayRecords = function () {
console.log("displaying " + recordArr.length + " records");
//clear previous records
var table = document.getElementById("showDeatilsInTable");
table.innerHTML = "<tr> <th id=\"nameCell\" class=\"celldecor\">Name</th> <th id=\"locCell\"class=\"celldecor\">Location</th> <th id=\"pnumCell\" class=\"celldecor\">Phone Number</th> <th id=\"addCell\" class=\"celldecor\">Address</th> </tr>";
// display recArr
for(var i = 0; i< recordArr.length; i++)
{
var row = table.insertRow();
var nameCell = row.insertCell(0);
var locCell = row.insertCell(1);
var pnumCell = row.insertCell(2);
var addCell = row.insertCell(3);
nameCell.innerHTML = recordArr[i].name;
locCell.innerHTML = recordArr[i].location;
pnumCell.innerHTML = recordArr[i].phoneNumber;
addCell.innerHTML = recordArr[i].address;
}
};
var saveDataToLS = function () {
// logic
localStorage.setItem('sendData', JSON.stringify(recordArr));
console.log("saving data to LS");
};
var loadDataToLS = function () {
console.log("loading data frm LS");
//logic
recordArr = JSON.parse(localStorage.getItem('sendData'));
console.log(recordArr);
};
var submitClick = function () {
if(!checkValidation()) {
return;
}
//function on clicking the submit button : submits the info
var redObj = {
name:document.getElementById("name").value,
location:document.getElementById("loc").value,
phoneNumber:document.getElementById("pnum").value,
address:document.getElementById("add").value
};
recordArr.push(redObj);
console.log("Adding new user");
console.log(redObj);
saveDataToLS();
displayRecords();
document.getElementById("name").value = "";
document.getElementById("loc").value = "";
document.getElementById("pnum").value = "";
document.getElementById("add").value = "";
console.log("the text box gets clear as soon as we press submit");
};
window.onload = function() {
console.log("Program Started");
//check if data available in LS
if(localStorage.getItem('sendData') != null) {
console.log("data present in LS");
loadDataToLS();
// display the data
displayRecords();
}
else {
// get data form JSON
console.log("data not present in LS");
getJSON();
}
};
//show and hide of the form
function showHideForm() {
var x = document.getElementById('displayDetails');
if (x.style.display === 'none') {
x.style.display = 'block';
} else {
x.style.display = 'none';
}
}
var checkValidation = function () {
//adding validation to the text boxes.
//getting all the input text objects where we wanna apply the validation.
var xname= document.getElementById("name");
var xloc= document.getElementById("loc");
var xpnum= document.getElementById("pnum");
var xadd= document.getElementById("add");
//getting the error displayed.
var nameError = document.getElementById("nameError");
var locError = document.getElementById("locError");
var pnumError = document.getElementById("pnumError");
var addError = document.getElementById("addError");
//refreshing the text
nameError.innerHTML = "";
locError.innerHTML = "";
pnumError.innerHTML = "";
addError.innerHTML = "";
//for the border
xname.style.border = "";
xloc.style.border = "";
xpnum.style.border ="";
xpnum.style.border ="";
if(xname.value == "" || xloc.value == "" || xpnum.value =="" || xadd.value == "")
{
if(xname.value == ""){
xname.style.border = "1px solid red";
nameError.innerHTML = "Please Enter something";
xname.focus();
//return false;
}
if(xloc.value == ""){
xloc.style.border = "1px solid red";
locError.innerHTML = "Please Enter something";
xloc.focus();
//return false;
}
if(xpnum.value == ""){
xpnum.style.border = "1px solid red";
pnumError.innerHTML = "Please Enter something";
xpnum.focus();
//return false
}
if(xadd.value == ""){
xadd.style.border = "1px solid red";
addError.innerHTML = "Please Enter something";
xadd.focus();
//return false
}
return false;
}
else {
return true;
}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
CODEI WAS TESTING WHILE MAKING THIS APPLICATION.
/*
// this is temp , remove later
var temp = function () {
console.log("In temp function");
var httpRequest = new XMLHttpRequest();
httpRequest.open("GET", "personInfo.json",true);
httpRequest.onreadystatechange = function() {
console.log("in ready state");
if (this.readyState === 4 && this.status === 200)
{
console.log("Ajax Success");
var data = JSON.parse(httpRequest.responseText);
recordArr.push(data);
console.log("JSON data file saved to array");
saveDataToLS();
console.log("displaying array");
console.log(data);
}
httpRequest.send();
};
function readData(data){
recordArr.push(data);
}
};
*/
/*var temp = function () {
httpRequest.send();
// when we include the json file directly
recordArr = [
{
"name":"Sudipta",
"location":"NJ",
"phoneNumber":"8625889787",
"address":"310 clevland ave, harrison"
},
{
"name":"Sreekar",
"location":"NJ",
"phoneNumber":"8625886235",
"address":"423 william street, harrison"
},
{
"name":"Venu",
"location":"NJ",
"phoneNumber":"8625886549",
"address":"208 harrison ave, harrison"
}
] ;
}
*/
// this requests the file and executes a callback with the parsed result once
// it is available
///code i wrote to experiment.
/*
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState ==4 && xhttp.status ==200) {
var recordArray = JSON.parse(localStorage.records);
renderHTML(recordArray);
}
};
//get method
xhttp.open("GET", "personInfo.json");
xhttp.send();
var personInfo = document.getElementById("showDeatilsInTable");
addInformation.addEventListener("click", function() {
var ourRequest = new XMLHttpRequest();
ourRequest.open('GET','\personInfo.json');
ourRequest.onload = function() {
var recordArray = JSON.parse(localStorage.records);
renderHTML(recordArray);
};
ourRequest.send();
});
var recordArray = [];
var init1 = function {
console.log("init() called");
if(localStorage.records){
console.log("There are records in ls initial check");
function renderHTML(data) {
var detailList = "";
for(var i=0; i<recordArray.length; i++){
detailList = registerProcess(recordArray[i].name, recordArray[i].loccation, recordArray[i].phoneNumber, recordArray[i].address);
}
personInfo.insertAdjacentHTML('beforeend', detailList);
}
}
console.log("There are no records in ls initial check");
}
function addNewInformation(){
var name=document.getElementById("name").value;
var location=document.getElementById("loc").value;
var phoneNumber=document.getElementById("pnum").value;
var address=document.getElementById("add").value;
var redObj = {name:name, loccation:location, phoneNumber:phoneNumber, address:address};
recordArray.push(redObj);
localStorage.records = JSON.stringify(recordArray);
registerProcess(name, location, phoneNumber, address);
document.getElementById("name").value = "";
document.getElementById("loc").value = "";
document.getElementById("pnum").value = "";
document.getElementById("add").value = "";
}
function registerProcess(name, location, phoneNumber, address){
var table = document.getElementById("showDeatilsInTable");
var row = table.insertRow();
var nameCell = row.insertCell(0);
var locCell = row.insertCell(1);
var pnumCell = row.insertCell(2);
var addCell = row.insertCell(3);
nameCell.innerHTML = name;
locCell.innerHTML = location;
pnumCell.innerHTML = phoneNumber;
addCell.innerHTML = address;
}
*/