-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.js
495 lines (413 loc) · 15.3 KB
/
jquery.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
$(function(){
$(".search_summary").hide ();
$(".loading_message").hide ();
$(".search_query").focus ();
$(".chat_form").hide ();
$(".latest_messages").hide ();
$("#menu_icon_container").fadeIn ();
$.ajax ( {
url: "scripts/latest_weather_report.php",
cache: true,
success: function ( response ) {
$("#weather_text").append ( response );
}
} );
var stopMoving = false;
$("#search_query_results").on ( "mouseover", function () {
stopMoving = true;
} );
$("#search_query_results").on ( "mouseleave", function () {
stopMoving = false;
menu_icon ();
} );
$("#menu_icon").click ( function () {
$("#menu_icon_container").fadeOut ( 800, function () {
$(".latest_messages").fadeIn ( 400, function () {
});
});
});
setInterval(function() {
if ( $(".loading_message").is(":visible") ) {
$("#loading_message_text").text("." + $("#loading_message_text").text() + ".");
}
}, 1500);
setInterval(function() {
$(".chat_form:visible").each( function () {
var article_id = $(this).attr("article_id");
var chatlog = $(this).find(".chat");
refreshMessageList ( chatlog, article_id );
} );
}, 5000);
setInterval(function () {
// Refresh the latest messages
$.ajax ( {
url: "scripts/get_latest_messages.php",
cache: false,
success: function ( response ) {
var trimmedResponse = response.substr ( 1, response.length - 2 );
var messages = new Array ();
while ( trimmedResponse.search('",') != -1 ) {
var text = trimmedResponse.substr(0, trimmedResponse.search('",') + 1);
trimmedResponse = trimmedResponse.substr (trimmedResponse.search('",') + 2, trimmedResponse.length);
messages.push(text);
}
messages.push(trimmedResponse);
var latest_messages = $(".latest_messages").find(".latest_chat");
var panelbody = latest_messages.parent ();
var previous_scroll_height = panelbody.scrollTop ();
latest_messages.empty ();
messages = messages.reverse ();
for ( i = 0; i < messages.length; i ++ ) {
var trimmedQuotes = messages[i].substr ( 1, messages[i].length - 2 );
var title = trimmedQuotes.substr ( 0, trimmedQuotes.search("---") );
var id = trimmedQuotes.substr ( trimmedQuotes.search ("---") + 3, trimmedQuotes.length );
var message = $("<li class='latest_message' article_id='" + id + "'><p class='latest_message' align='left'>" + title + "</p></li>");
latest_messages.append ( message );
message.click ( function () {
var id = $(this).attr ( "article_id" );
$.ajax ( {
url: "search_result.php?id=" + id,
cache: false,
success: function ( response ) {
$(".weather").hide ();
$(".search_latest_news").hide ();
$(".search_local_news").hide ();
$(".logo").hide ();
$(".common_searches").hide ();
$("#loading_message_text").text ("Give us a moment while we search the web!");
$(".search_icon").show ();
$(".loading_message").show ();
$("#search_query_results").empty();
// Hide the introduction
$(".introduction").hide ();
$(".single_article_intro").hide ();
$(".single_article_class").hide ();
// Obtain the search query
var search_query = $(".search_query").val ();
// Reposition the search bar
$(".search_class").remove ();
$(".search_class_new").remove ();
var image_icon = $("<img class='search_icon' src='images/newspaper.png' width='30' height='30' />");
image_icon.click ( function () {
location.reload ()
} );
$(".navbar").append ( "<div class='search_class_new' style='margin-left: 5px; float: left; margin-top: 5px;' align='center'></div>" );
$(".search_class_new").append ( image_icon );
$(".search_class_new").append ( "<input class='search_query' type='text' placeholder='Ex: Trump' list='search_suggestions'><datalist id='search_suggestions'></datalist></input><button class='btn btn-primary btn-sm' id='search_button' type='button'>Search</button>");
$(".search_query").val ( search_query );
$(".loading_message").hide ();
$("#search_query_results").empty().append ( response );
stopMoving = true;
}
} );
});
}
$(".badge").empty ();
$(".badge").append ( messages.length );
// Scroll to the bottom
var panelbody = latest_messages.parent ();
panelbody.scrollTop(previous_scroll_height);
}
} );
}, 5000);
function refreshMessageList (chatlog, article_id) {
// Refresh the message list
$.ajax ( {
url: "scripts/extract_article_messages.php?id=" + article_id,
cache: false,
success: function ( response ) {
var trimmedResponse = response.substr(1, response.length - 2 );
var messages = new Array ();
while ( trimmedResponse.search('",') != -1 ) {
var text = trimmedResponse.substr(0, trimmedResponse.search('",') + 1);
trimmedResponse = trimmedResponse.substr (trimmedResponse.search('",') + 2, trimmedResponse.length);
messages.push(text);
}
messages.push(trimmedResponse);
// Clear the chat
chatlog.empty ();
// Add messages
for ( i = 0; i < messages.length; i ++ ) {
chatlog.append ( "<li><p align='left'>" + messages [i].substr(1, messages[i].length - 2) + "</p></li>" );
}
// Scroll to the bottom
var panelbody = chatlog.parent ();
panelbody.scrollTop(panelbody.prop("scrollHeight"));
}
} );
}
if ( $("#search_query_results").html ().length < 10 ) {
$(".search_icon").hide ();
}
$(".search_icon").click ( function () {
location.reload ();
});
$(".search_local_news").click ( function () {
$.ajax ( {
url: "scripts/extract_location_from_ip.php",
cache: false,
success: function ( response ) {
$(".search_query").val ( "Latest News in " + response );
$("#search_button").click ();
}
});
});
var previousText = $(".search_query").val ();
setInterval(function () {
// Obtain the latest text
var text = $(".search_query").val ();
if ( text.length > 0 && previousText != text ) {
$.ajax ( {
url: "scripts/search_suggestions.php?search=" + text,
cache: false,
success: function ( response ) {
previousText = text;
$("#search_suggestions").empty ();
while ( response.indexOf(",") != -1 ) {
var index = response.indexOf(",");
var str = response.substring(0, index);
response = response.substring(index + 1, response.length);
$("#search_suggestions").append ( "<option value='" + str + "'>" );
}
$(".search_query").fadeOut(10, function() {
$(".search_query").fadeIn(10, function () {
$(".search_query").focus();
$(".search_query").val($(".search_query").val());
});
});
}
});
}
}, 500);
$(".search_query").keypress ( function (e) {
if ( e.keyCode == 13 ) {
$("#search_button").click ();
$("#search_query").blur ();
}
});
$("#single_article_query").keypress ( function (e) {
if ( e.keyCode == 13 ) {
$("#single_article_button").click ();
$("#single_article_query").blur ();
}
});
$(".logo").click ( function () {
location.reload ()
} );
$("#search_button").click ( function () {
$(".weather").hide ();
$(".search_latest_news").hide ();
$(".search_local_news").hide ();
$(".logo").hide ();
$(".common_searches").hide ();
$("#loading_message_text").text ("Give us a moment while we search the web!");
$(".search_icon").show ();
$(".loading_message").show ();
$("#search_query_results").empty();
// Hide the introduction
$(".introduction").hide ();
$(".single_article_intro").hide ();
$(".single_article_class").hide ();
// Obtain the search query
var search_query = $(".search_query").val ();
// Reposition the search bar
$(".search_class").remove ();
$(".search_class_new").remove ();
var image_icon = $("<img class='search_icon' src='images/newspaper.png' width='30' height='30' />");
image_icon.click ( function () {
location.reload ()
} );
$(".navbar").append ( "<div class='search_class_new' style='margin-left: 5px; float: left; margin-top: 5px;' align='center'></div>" );
$(".search_class_new").append ( image_icon );
$(".search_class_new").append ( "<input class='search_query' type='text' placeholder='Ex: Trump' list='search_suggestions'><datalist id='search_suggestions'></datalist></input><button class='btn btn-primary btn-sm' id='search_button' type='button'>Search</button>");
$(".search_query").val ( search_query );
search_query = search_query.replace ( " ", "%20" );
// Display the results
$.ajax ( {
url: "search_result.php?search=" + search_query,
cache: false,
success: function ( response ) {
$(".loading_message").hide ();
$("#search_query_results").empty().append ( response );
stopMoving = true;
}
} );
} );
$("#single_article_button").click ( function () {
$(".weather").hide ();
$(".search_latest_news").hide ();
$(".search_local_news").hide ();
$(".logo").hide ();
$(".common_searches").hide ();
$("#loading_message_text").text ("Give us a moment while we read the article!");
$(".search_icon").show ();
$(".loading_message").show ();
$("#search_query_results").empty();
// Hide the introduction
$(".introduction").hide ();
$(".single_article_intro").hide ();
$(".search_class").hide ();
// Obtain the search query
var search_query = $("#single_article_query").val ();
// Reposition the search bar
$(".single_article_class").remove ();
$(".single_article_class_new").remove ();
var image_icon = $("<img class='search_icon' src='images/newspaper.png' width='30' height='30' />");
image_icon.click ( function () {
location.reload ()
} );
$(".navbar").append ( "<div class='single_article_class_new' style='margin-left: 5px; float: left; margin-top: 5px;' align='center'>");
$(".single_article_class_new").append ( image_icon );
$(".single_article_class_new").append ( "<input id='single_article_query' type='text' placeholder='Ex: http://google.ca' /><button class='btn btn-primary btn-sm' id='single_article_button' type='button'>Summarize</button></div>");
$("#single_article_query").val ( search_query );
search_query = search_query.replace ( " ", "%20" );
search_query = search_query.replace ( "http://", "" );
search_query = search_query.replace ( "https://", "" );
// Display the results
$.ajax ( {
url: "search_result.php?url=" + search_query,
cache: false,
success: function ( response ) {
$(".loading_message").hide ();
$("#search_query_results").empty().append ( response );
stopMoving = true;
}
} );
});
$(".search_summary").click ( function () {
// Hide the image
$(this).fadeOut ("fast", function () {
// Display the summary
$(this).parents(".search_information").children ( ".chat_form" ).hide();
$(this).parent().children(".search_image").fadeIn ();
$(this).parent().children(".search_image_generic").fadeIn ();
});
} );
$(".search_image").click ( function () {
// Hide the image
$(this).fadeOut ("fast", function () {
// Display the summary
$(this).parent().children(".search_summary").fadeIn ();
$(this).parents(".search_information").children ( ".chat_form" ).show ();
var article_id = $(this).parents(".search_information").children(".chat_form").attr("article_id");
var chatlog = $(this).parents(".search_information").children(".chat_form").find(".chat");
refreshMessageList ( chatlog, article_id );
});
} );
$(".search_latest_news").click ( function () {
$(".search_query").val ("");
$("#search_button").click ();
} );
$("#search_tesla").click ( function () {
$(".search_query").val ("tesla");
$("#search_button").click ();
} );
$("#search_islam").click ( function () {
$(".search_query").val ("islam");
$("#search_button").click ();
} );
$("#search_syria").click ( function () {
$(".search_query").val ("syria");
$("#search_button").click ();
} );
$("#search_trump").click ( function () {
$(".search_query").val ("trump");
$("#search_button").click ();
} );
$("#search_obama").click ( function () {
$(".search_query").val ("obama");
$("#search_button").click ();
} );
$("#search_sports").click ( function () {
$(".search_query").val ("sports");
$("#search_button").click ();
} );
$("#search_united_states").click ( function () {
$(".search_query").val ("United States");
$("#search_button").click ();
} );
$("#search_israel").click ( function () {
$(".search_query").val ("Israel");
$("#search_button").click ();
} );
$("#search_sanders").click ( function () {
$(".search_query").val ("Sanders");
$("#search_button").click ();
} );
$("#search_putin").click ( function () {
$(".search_query").val ("Putin");
$("#search_button").click ();
} );
$("#previous_result").click ( function () {
var current_page = $("#previous_result").attr ( "data-page" );
// Obtain the search query
var search_query = $(".search_query").val ();
search_query = search_query.replace ( " ", "%20" );
// Display the results
$.ajax ( {
url: "search_result.php?search=" + search_query + "¤t_page=" + current_page,
cache: true,
success: function ( response ) {
$("#search_query_results").empty().append ( response );
}
} );
} );
$("#next_result").click ( function () {
var current_page = $("#next_result").attr ( "data-page" );
// Obtain the search query
var search_query = $(".search_query").val ();
search_query = search_query.replace ( " ", "%20" );
// Display the results
$.ajax ( {
url: "search_result.php?search=" + search_query + "¤t_page=" + current_page,
cache: true,
success: function ( response ) {
$("#search_query_results").empty().append ( response );
}
} );
} );
$(".chat_form").keypress ( function (e) {
if ( e.keyCode == 13 ) {
var article_id = $(this).attr("article_id");
var name = $(this).find("#name_text").val ();
var message = $(this).find("#message_text").val ();
var chatlog = $(this).find(".chat");
if ( name.length > 0 ) {
// Reset variables
$(this).find("#message_text").val ("");
$.ajax ( {
url: "scripts/post_message.php?id=" + article_id + "&name=" + name + "&message=" + message,
cache: false,
success: function ( response ) {
refreshMessageList ( chatlog, article_id );
$.ajax ( {
url: "scripts/post_latest_messages.php?id=" + article_id + "&name=" + name,
cache: false,
success: function ( response ) {
// Do nothing
}
} );
}
} );
} else {
alert ( "Please enter a name!" );
}
}
});
$(".report_summary").click ( function () {
var article_id = $(this).attr ( "article_id" );
var article = $(this).parents(".search_information");
$.ajax ( {
url: "scripts/report_bad_article.php?id=" + article_id,
cache: false,
success: function ( response ) {
article.hide ();
}
} );
} );
$(".close_latest").click ( function () {
$(".latest_messages").fadeOut ( 400, function () {
$("#menu_icon_container").fadeIn ();
});
} );
});