-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaricaxml.js
186 lines (150 loc) · 6.8 KB
/
caricaxml.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
function caricaXML(nomeFile){ //funzione standard per caricare il file xml
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
}
else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET", nomeFile, false);
xmlhttp.send();
return xmlhttp.responseXML;
}
function Photogallery(){ //costruttore Photogallery
this.foto= new Array();
this.generi= new Array();
this.eta= new Array();
this.colori= new Array();
this.inizializza= //carico gli array con gli elementi
function(n){
var nodo= n.getElementsByTagName("album")[0];
var l= nodo.getElementsByTagName("foto");
for(var i = 0; i < l.length; i++){
var f= new Foto();
f.inizializza(l[i]);
this.foto.push(f);
this.generi[f.genere] = true;
this.eta[f.eta] = true;
this.colori[f.colore] = true;
}
}
//select della form
this.selectEta=
function(){
var s= '<option value="TutteEt">Fotografie odierne e storiche</option>';
for(var i in this.eta){
s += '<option value="'+ i +'">Fotografie '+ i +'</option>';
}
return s;
}
//select della form
this.selectColore=
function(){
var s='<option value="TutteCol">Fotografie monocromatiche e a colori</option>';
for(var i in this.colori){
s+= '<option value="'+ i +'">Fotografie '+ i +'</option>';
}
return s;
}
//select della form
this.selectGenere=
function(){
var s='<option value="TutteGen">Fotografie con persone e monumenti</option>';
for(var i in this.generi){
s += '<option value="'+ i +'">Fotografie con '+ i +'</option>';
}
return s;
}
this.incrociaOpzioni= //in base alle opzioni selezionate, genero delle stringhe contenenti le immagini di piccola risoluzione
function(e, c, g){
var s="";
for(var i in this.foto){
if((this.foto[i].genere == g) && (this.foto[i].colore == c) && (this.foto[i].eta == e)){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((e == "TutteEt")&&(c=="TutteCol")&&(g=="TutteGen")){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((e == "TutteEt") &&(c=="TutteCol") &&(this.foto[i].genere == g)){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((e == "TutteEt")&&(this.foto[i].colore == c)&&(this.foto[i].genere == g)){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((this.foto[i].eta == e)&&(this.foto[i].colore == c)&&(g == "TutteGen")){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((e == "TutteEt") &&(this.foto[i].colore == c) &&(g == "TutteGen")){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((this.foto[i].eta == e)&&(c == "TutteCol")&&(g == "TutteGen")){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
else if((this.foto[i].eta == e)&&(c == "TutteCol")&&(this.foto[i].genere == g)){
s += '<a href="'+ this.foto[i].grande +'" onclick="showPic(this); return false;"><img src="'+ this.foto[i].thumb +'" height="53" width="53" alt="little'+ this.foto[i].numero +'" /></a>';
}
}
return s;
}
}
function Foto(){ //costruttore delle fotografie
this.numero;
this.thumb;
this.genere;
this.grande;
this.eta;
this.colore;
this.inizializza=
function(nodo){
var lnr= nodo.getElementsByTagName("numero");
var nr= lnr[0].firstChild.nodeValue;
this.numero = nr;
var llo= nodo.getElementsByTagName("thumb");
var lo= llo[0].firstChild.nodeValue;
this.thumb = lo;
var lgr= nodo.getElementsByTagName("grande");
var gr= lgr[0].firstChild.nodeValue;
this.grande = gr;
var let= nodo.getElementsByTagName("eta");
var et= let[0].firstChild.nodeValue;
this.eta= et;
var lco= nodo.getElementsByTagName("colore");
var co= lco[0].firstChild.nodeValue;
this.colore= co;
var lge= nodo.getAttribute("genere")
this.genere = lge
}
}
function getThumbs(){ //genero le thumbs tenendo conto delle opzioni scelte
var menue= document.getElementById("selectEta");
var e = menue.options[menue.selectedIndex].value;
var menug= document.getElementById("selectGenere");
var g = menug.options[menug.selectedIndex].value;
var menuc= document.getElementById("selectColore");
var c= menuc.options[menuc.selectedIndex].value;
var thumbs= document.getElementById("thumbs");
thumbs.innerHTML= photo.incrociaOpzioni(e, c, g);
}
function reimposta(){ //cancello le thumbs generate e l'immagine a risoluzione alta
var thumbs= document.getElementById("thumbs");
thumbs.innerHTML= null;
var placeholder= document.getElementById("placeholder");
placeholder.style.display='none';
}
var photo; //variabile globale
function inizializza(){
var nodo= caricaXML("fotografie.xml")
photo = new Photogallery();
photo.inizializza(nodo);
var genSelectEta = document.getElementById("selectEta");
genSelectEta.innerHTML = photo.selectEta();
var genSelectGen= document.getElementById("selectGenere");
genSelectGen.innerHTML = photo.selectGenere();
var genSelectCol= document.getElementById("selectColore");
genSelectCol.innerHTML = photo.selectColore();
var p1= document.getElementById("visualizza");
p1.onclick= getThumbs;
var p2= document.getElementById("reimposta");
p2.onclick= reimposta;
}
window.onload= inizializza;