-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.js
executable file
·135 lines (112 loc) · 3.81 KB
/
news.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
var recherches=[];//tableau contenant des chaines de caracteres correspondant aux recherches stockees
var recherche_courante;// chaine de caracteres correspondant a la recherche courante
var recherche_courante_news=[]; // tableau d'objets de type resultats (avec titre, date et url)
// --
function ajouter_recherche()
{
recherche_courante = $("#zone_saisie").val();
value = $("#zone_saisie").val();
res = recherches.indexOf(value);
if (res == -1){
aj_recherche(value);
}
}
// --
function aj_recherche(value){
recherches.push(value)
$("#recherches-stockees").append('<p class="titre-recherche" onclick="selectionner_recherche(this)" ><label>'+value+'</label><img src="croix30.jpg" class="icone-croix" onclick="supprimer_recherche(this)"/> </p>');
$.cookie("recherches", JSON.stringify(recherches), { expires: 7 });
}
// --
function supprimer_recherche(e)
{
res = recherches.indexOf(e.value);
recherches.splice(res, 1);
e.closest("p").remove();
$.cookie("recherches", JSON.stringify(recherches), { expires: 7 });
}
// --
function selectionner_recherche(e)
{
$("#resultats").empty();
meh = e.firstChild.textContent;
$("#zone_saisie").val(meh);
recherche_courante = meh;
recherche_courante_news = JSON.parse($.cookie(meh));
obj = JSON.parse($.cookie(meh));
for ( var index = 0; index < obj.length; index++ ) {
$("#resultats").append('<p class="titre_result"><a class="titre_news" href="'+obj[index].url+'" target="_blank">'+obj[index].titre+'</a><span class="date_news">'+obj[index].date+'</span><span class="action_news" onclick="supprimer_nouvelle(this)"><img src="disk15.jpg"/></span></p>');
}
}
// ---
function init()
{
if ($.cookie("recherches")){
obj = JSON.parse($.cookie("recherches"));
for(i = 0; i < obj.length; i++){
aj_recherche(obj[i]);
}
}
}
// --
function rechercher_nouvelles()
{
recherche_courante_news = [];
$("#resultats").empty();
$("#wait").show();
var s = $("#zone_saisie").val();
$.get('search.php?data='+s,maj_resultats);
}
// --
function maj_resultats(res)
{
$("#resultats").empty();
obj = JSON.parse(res);
for ( var index = 0; index < obj.length; index++ ) {
console.log(obj[index].date);
$("#resultats").append('<p class="titre_result"><a class="titre_news" href="'+obj[index].url+'" target="_blank">'+obj[index].titre+'</a><span class="date_news">'+format(obj[index].date)+'</span><span class="action_news" onclick="sauver_nouvelle(this)"><img src="horloge15.jpg"/></span></p>');
}
$("#wait").hide();
}
// --
function sauver_nouvelle(e)
{
value = $("#zone_saisie").val()
res = recherches.indexOf(value);
if (res == -1){
alert("Sauvegardez votre recherche avant de pouvoir enregistrer des offres !");
} else {
e.firstChild.setAttribute("src","disk15.jpg");
e.setAttribute("onclick","supprimer_nouvelle(this)");
url = $(e.parentNode).find("a").attr("href");
titre = $(e.parentNode).find("a").text();
date = $(e.parentNode).find(".date_news").text();
obj = new Object(titre,url,date);
if (indexOf(recherche_courante_news,obj)==-1){
recherche_courante_news.push(obj);
}
jsonText = JSON.stringify(recherche_courante_news);
$.cookie(recherche_courante,jsonText,{expires:1000});
}
}
function supprimer_nouvelle(e)
{
e.firstChild.setAttribute("src","horloge15.jpg");
e.setAttribute("onclick","sauver_nouvelle(this)");
url = $(e.parentNode).find("a").attr("href");
titre = $(e.parentNode).find("a").text();
date = $(e.parentNode).find(".date_news").text();
obj = new Object(titre,url,date);
console.log(titre);
console.log(recherche_courante_news);
if (indexOf(recherche_courante_news,obj)){
recherche_courante_news.splice(indexOf(recherche_courante_news,obj),1);
}
jsonText = JSON.stringify(recherche_courante_news);
$.cookie(recherche_courante,jsonText,{expires:1000});
}
function Object(titre,url,date){
this.titre=titre;
this.url=url;
this.date=date;
}