480 |
jpm |
1 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
2 |
// Onglets et Portlets
|
391 |
aurelien |
3 |
/**
|
|
|
4 |
* Les variables suivantes ont été ajoutée par php
|
|
|
5 |
*
|
|
|
6 |
* var urlTexteBrutSectionWikiTpl : url pour obtenir le texte brut d'une section de wiki
|
|
|
7 |
* var urlEditionSectionWikiTpl : url pour éditer une section du wiki
|
|
|
8 |
* var urlTexteFormateSectionWikiTpl : url pour obtenir le texte formaté en html d'une section de wiki
|
|
|
9 |
* var pageWikiTaxon : url pour obtenir le texte formaté en html d'une section de wiki
|
917 |
aurelien |
10 |
* var urlPopup = url de base pour les popup contenant du code un peu complexe
|
391 |
aurelien |
11 |
*
|
|
|
12 |
*/
|
|
|
13 |
|
|
|
14 |
/**
|
|
|
15 |
* Variables globales du script
|
|
|
16 |
*/
|
227 |
delphine |
17 |
var modules = Array();
|
1545 |
delphine |
18 |
var REFERENTIEL = "<?php echo Registre::get('parametres.referentiel'); ?>";
|
480 |
jpm |
19 |
|
227 |
delphine |
20 |
/** Classe Module
|
|
|
21 |
* Définit un module de type portlet
|
|
|
22 |
**/
|
|
|
23 |
function Module(id, module, onglet, statique) {
|
|
|
24 |
|
|
|
25 |
// Variables de classe : identifiant, titre, et le HTML du résumé à afficher dans le contenu
|
|
|
26 |
this.id = id;
|
|
|
27 |
this.titre;
|
|
|
28 |
this.htmlResume;
|
|
|
29 |
this.statique = statique;
|
1584 |
killian |
30 |
}
|
227 |
delphine |
31 |
|
480 |
jpm |
32 |
function getUrlVars() {
|
242 |
aurelien |
33 |
var vars = [], hash;
|
|
|
34 |
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
|
480 |
jpm |
35 |
for (var i = 0; i < hashes.length; i++) {
|
242 |
aurelien |
36 |
hash = hashes[i].split('=');
|
|
|
37 |
vars.push(hash[0]);
|
|
|
38 |
vars[hash[0]] = hash[1];
|
|
|
39 |
}
|
|
|
40 |
return vars;
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
|
1243 |
aurelien |
44 |
// remplace des liens directs vers les onglets par des liens permettant de ne charger
|
|
|
45 |
// que le contenu de l'onglet (pour le plugin tab)
|
|
|
46 |
function remplacerUrlsOnglets() {
|
1502 |
delphine |
47 |
$(".lien-onglet").each(function() {
|
506 |
jpm |
48 |
var urlOnglet = $(this).attr('href');
|
892 |
aurelien |
49 |
var urlVars = urlOnglet.slice(urlOnglet.indexOf('?') + 1);
|
|
|
50 |
urlBase = base_url_application_onglets+"?"+urlVars;
|
|
|
51 |
urlOnglet = urlBase.replace('action=fiche','action=onglet');
|
506 |
jpm |
52 |
$(this).attr('href', urlOnglet);
|
1502 |
delphine |
53 |
});
|
242 |
aurelien |
54 |
}
|
227 |
delphine |
55 |
|
1266 |
aurelien |
56 |
|
1243 |
aurelien |
57 |
|
480 |
jpm |
58 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
59 |
// Wikini Flora
|
|
|
60 |
var htmlWikiOriginal = '';
|
|
|
61 |
var objetContenuWiki = null;
|
|
|
62 |
|
391 |
aurelien |
63 |
function getTemplateFormulaireEditionWiki(page, section, texte) {
|
|
|
64 |
var urlWebServiceWiki = getUrlEditionPourPageEtSection(page, section);
|
|
|
65 |
var formulaire =
|
|
|
66 |
'<form method="post" id="formulaire_edition_wiki" name="formulaire_edition_wiki" action="'+urlWebServiceWiki+'">'+
|
|
|
67 |
'<div>'+
|
|
|
68 |
'<textarea id="pageContenu" name="pageContenu" class="champ_edition_wiki">'+texte+'</textarea>'+
|
|
|
69 |
'</div>'+
|
|
|
70 |
'<input type="hidden" name="pageSectionTitre" id="pageSectionTitre" value="'+section+'" />'+
|
|
|
71 |
'<input type="submit" text="sauver" />'+
|
|
|
72 |
'<input class="bouton_annuler_edition" type="button" value="annuler" />';
|
|
|
73 |
'</form>';
|
|
|
74 |
return formulaire;
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
function getSection() {
|
407 |
aurelien |
78 |
return objetContenuWiki.attr("title");
|
391 |
aurelien |
79 |
}
|
|
|
80 |
|
|
|
81 |
function getPageWikiTaxon() {
|
|
|
82 |
return pageWikiTaxon;
|
|
|
83 |
}
|
|
|
84 |
|
|
|
85 |
function getUrlEditionPourPageEtSection(page, section) {
|
1375 |
mathias |
86 |
var url = urlEditionSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
87 |
return url;
|
391 |
aurelien |
88 |
}
|
|
|
89 |
|
|
|
90 |
function getUrlTextePourPageSectionBrute(page, section) {
|
|
|
91 |
return urlTexteBrutSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
92 |
}
|
|
|
93 |
|
|
|
94 |
function getUrlTextePourPageSectionFormatee(page, section) {
|
|
|
95 |
return urlTexteFormateSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
96 |
}
|
|
|
97 |
|
|
|
98 |
function remplacerContenuWikiParFormulaireEdition(objet_contenu) {
|
407 |
aurelien |
99 |
objetContenuWiki = objet_contenu;
|
453 |
aurelien |
100 |
var adresse = getUrlEditionPourPageEtSection(getPageWikiTaxon(), getSection());
|
391 |
aurelien |
101 |
htmlWikiOriginal = objet_contenu.html();
|
|
|
102 |
$.getJSON(adresse, function(data) {
|
999 |
raphael |
103 |
$(objetContenuWiki).removeClass('editable_sur_clic').html(getTemplateFormulaireEditionWiki(getPageWikiTaxon(), getSection(), data.texte));
|
391 |
aurelien |
104 |
});
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
function gererEvenementsWiki() {
|
400 |
aurelien |
108 |
//TODO: ajout automatique d'un lien ouvrant une page d'aide (un popup) au formatage des pages wikini
|
1594 |
killian |
109 |
$('.editable_sur_clic').on('dblclick',function(event) {
|
999 |
raphael |
110 |
remplacerContenuWikiParFormulaireEdition($(this));
|
391 |
aurelien |
111 |
});
|
|
|
112 |
|
1594 |
killian |
113 |
$('#formulaire_edition_wiki').on('submit',function(event) {
|
391 |
aurelien |
114 |
event.preventDefault();
|
|
|
115 |
var valeurs = $(this).serialize();
|
|
|
116 |
$.post($(this).attr('action'), valeurs, function(data) {
|
|
|
117 |
var adresse = getUrlTextePourPageSectionFormatee(getPageWikiTaxon(), getSection());
|
|
|
118 |
$.getJSON(adresse, function(data) {
|
999 |
raphael |
119 |
$(objetContenuWiki).addClass('editable_sur_clic').html(data.texte);
|
391 |
aurelien |
120 |
});
|
|
|
121 |
});
|
|
|
122 |
});
|
|
|
123 |
|
1594 |
killian |
124 |
$('.bouton_annuler_edition').on('click', function(event) {
|
999 |
raphael |
125 |
event.preventDefault();
|
|
|
126 |
$(objetContenuWiki).addClass('editable_sur_clic').html(htmlWikiOriginal);
|
391 |
aurelien |
127 |
});
|
638 |
aurelien |
128 |
|
|
|
129 |
rendreLienAffichableDansNouvelleFenetre('.contenu_editable');
|
391 |
aurelien |
130 |
}
|
|
|
131 |
|
480 |
jpm |
132 |
//+----------------------------------------------------------------------------------------------------------+
|
638 |
aurelien |
133 |
//Affichage dans une nouvelle fenetre
|
|
|
134 |
function rendreLienAffichableDansNouvelleFenetre(selecteur) {
|
1594 |
killian |
135 |
$(selecteur).find('a').on('click', function(event) {
|
638 |
aurelien |
136 |
window.open($(this).attr('href'));
|
|
|
137 |
event.preventDefault();
|
|
|
138 |
return false;
|
|
|
139 |
});
|
|
|
140 |
}
|
|
|
141 |
|
|
|
142 |
//+----------------------------------------------------------------------------------------------------------+
|
480 |
jpm |
143 |
// Plier / déplier
|
474 |
aurelien |
144 |
function plierTout() {
|
|
|
145 |
$('.nom').children('.imagetteMoins').removeClass('imagetteMoins').addClass('imagettePlus');
|
|
|
146 |
$('.plus').css('display', 'none');
|
|
|
147 |
}
|
|
|
148 |
|
|
|
149 |
function deplierTout() {
|
|
|
150 |
$('.nom').children('.imagettePlus').removeClass('imagettePlus').addClass('imagetteMoins');
|
|
|
151 |
$('.plus').css('display', 'inline');
|
|
|
152 |
}
|
|
|
153 |
|
|
|
154 |
function gestionBiblio(parent) {
|
1389 |
aurelien |
155 |
$('.nom').each(function () {
|
|
|
156 |
if ($(this).children('.plus').length == 0) {
|
|
|
157 |
html = $(this).html();
|
474 |
aurelien |
158 |
|
1389 |
aurelien |
159 |
// La partie biblio commence au premier crochet ouvrant
|
|
|
160 |
// ou bien au span de la biblio à exclure
|
|
|
161 |
posCrochetGauche = html.indexOf('[');
|
1390 |
aurelien |
162 |
posbiblioAExclure = html.indexOf('<span class="bib_excl">');
|
|
|
163 |
|
|
|
164 |
if(posCrochetGauche < 0 || (posbiblioAExclure > 0 && posbiblioAExclure < posCrochetGauche)) {
|
|
|
165 |
posCrochetGauche = posbiblioAExclure;
|
1389 |
aurelien |
166 |
}
|
474 |
aurelien |
167 |
|
1510 |
killian |
168 |
// console.log(posCrochetGauche+" "+posbiblioAExclure);
|
1390 |
aurelien |
169 |
|
|
|
170 |
|
1389 |
aurelien |
171 |
if (posCrochetGauche > 0) {
|
|
|
172 |
nom = html.substr(0, posCrochetGauche);
|
|
|
173 |
biblio = html.substr(posCrochetGauche, html.length);
|
|
|
174 |
$(this).html(nom);
|
|
|
175 |
|
|
|
176 |
imagettePlus = document.createElement('div');
|
|
|
177 |
$(imagettePlus).addClass('imagettePlus');
|
|
|
178 |
$(this).prepend($(imagettePlus));
|
|
|
179 |
|
|
|
180 |
plus = document.createElement('span');
|
|
|
181 |
$(plus).addClass('plus');
|
|
|
182 |
$(plus).html(biblio);
|
|
|
183 |
$(plus).hide();
|
|
|
184 |
|
|
|
185 |
$(this).click(function(e) {
|
|
|
186 |
// test pour ne réagir que sur le clic sur le + ou -
|
|
|
187 |
// TODO: fusionner ce bout de code en doublon avec synthese.js
|
|
|
188 |
if($(e.target).hasClass("imagettePlus") || $(e.target).hasClass("imagetteMoins")) {
|
|
|
189 |
if (!$(this).children('.plus').is(':visible')) {
|
|
|
190 |
$(this).children('.imagettePlus').removeClass('imagettePlus').addClass('imagetteMoins');
|
|
|
191 |
$(this).children('.plus').css('display', 'inline');
|
|
|
192 |
} else {
|
|
|
193 |
$(this).children('.imagetteMoins').removeClass('imagetteMoins').addClass('imagettePlus');
|
|
|
194 |
$(this).children('.plus').css('display', 'none');
|
|
|
195 |
}
|
|
|
196 |
}
|
|
|
197 |
|
|
|
198 |
});
|
|
|
199 |
|
|
|
200 |
$(this).append($(plus));
|
|
|
201 |
|
|
|
202 |
}
|
474 |
aurelien |
203 |
}
|
|
|
204 |
});
|
|
|
205 |
}
|
|
|
206 |
|
|
|
207 |
function gererEvenementsPliage() {
|
1594 |
killian |
208 |
$('.lien_tout_deplier').on('click', function() {
|
474 |
aurelien |
209 |
deplierTout();
|
|
|
210 |
});
|
1594 |
killian |
211 |
$('.lien_tout_plier').on('click', function() {
|
474 |
aurelien |
212 |
plierTout();
|
|
|
213 |
});
|
|
|
214 |
gestionBiblio(document);
|
|
|
215 |
}
|
|
|
216 |
|
480 |
jpm |
217 |
//+----------------------------------------------------------------------------------------------------------+
|
626 |
mathilde |
218 |
//Pop Up images
|
|
|
219 |
function ouvrirPopUpImg(event) {
|
|
|
220 |
event.preventDefault();
|
1306 |
aurelien |
221 |
window.open($(this).attr('href'),"Photo_"+$(this).children("img").attr("data-num-image"),
|
966 |
aurelien |
222 |
'"'+'height='+event.data.h+',width='+event.data.w+',top='+event.data.t+',left='+event.data.l
|
|
|
223 |
+',toolbar='+event.data.toolbar+',menubar='+event.data.menubar +',location='
|
|
|
224 |
+event.data.location+',resizable='+event.data.resizable+',scrollbars='+event.data.scrollbars
|
|
|
225 |
+',status='+event.data.status+'"');
|
626 |
mathilde |
226 |
}
|
|
|
227 |
|
480 |
jpm |
228 |
//+----------------------------------------------------------------------------------------------------------+
|
761 |
aurelien |
229 |
// Message de chargement pour les graphique écologie
|
|
|
230 |
function gererChargementGraphiqueEcologie() {
|
|
|
231 |
$('.ecologie_svg').addClass('chargement');
|
|
|
232 |
}
|
971 |
aurelien |
233 |
|
|
|
234 |
function gererAffichageLegendeEcologie() {
|
1594 |
killian |
235 |
$('.voir').on('click', function() {
|
971 |
aurelien |
236 |
$(this).siblings('.legende_graphique').show();
|
|
|
237 |
$(this).siblings('.cacher').show();
|
|
|
238 |
$(this).hide();
|
|
|
239 |
});
|
|
|
240 |
|
1594 |
killian |
241 |
$('.cacher').on('click', function() {
|
971 |
aurelien |
242 |
$(this).siblings('.legende_graphique').hide();
|
|
|
243 |
$(this).siblings('.voir').show();
|
|
|
244 |
$(this).hide();
|
|
|
245 |
});
|
|
|
246 |
}
|
|
|
247 |
|
|
|
248 |
|
761 |
aurelien |
249 |
//+----------------------------------------------------------------------------------------------------------+
|
480 |
jpm |
250 |
// Initialisation
|
317 |
aurelien |
251 |
var fancyboxinitialise = false;
|
626 |
mathilde |
252 |
var param_popup_Coste = {h: 650, w: 550, t: 100, l: 100,
|
|
|
253 |
toolbar: 'no', menubar: 'no', location: 'no', resizable: 'yes', scrollbars: 'yes', status: 'no'};
|
317 |
aurelien |
254 |
|
626 |
mathilde |
255 |
var param_popup_Cel = {h: 750, w: 630, t: 100, l: 100,
|
|
|
256 |
toolbar: 'no', menubar: 'no', location: 'no', resizable: 'yes', scrollbars: 'yes', status: 'no'};
|
|
|
257 |
|
1243 |
aurelien |
258 |
//Initialisation (uniquement sur la présence de la div bloc-fiche, qui contient la fiche eflore)
|
1272 |
aurelien |
259 |
$(document).one('ficheSyntheseChargee', function() {
|
1594 |
killian |
260 |
$('.lien_popup').on('click',function(event) {
|
277 |
aurelien |
261 |
event.preventDefault();
|
|
|
262 |
$.fancybox(this,{
|
|
|
263 |
autoDimensions:false,
|
321 |
aurelien |
264 |
width:580
|
277 |
aurelien |
265 |
});
|
|
|
266 |
});
|
|
|
267 |
|
1594 |
killian |
268 |
$('.lien_popup.lien_metadonnees').on('click',function(event) {
|
1126 |
aurelien |
269 |
event.preventDefault();
|
|
|
270 |
$.fancybox(this,{
|
|
|
271 |
autoDimensions:true
|
|
|
272 |
});
|
|
|
273 |
});
|
1243 |
aurelien |
274 |
|
1594 |
killian |
275 |
$('.lien-image-cel').on('click', param_popup_Cel , ouvrirPopUpImg);
|
|
|
276 |
$('.lien-image-coste').on('click', param_popup_Coste , ouvrirPopUpImg);
|
626 |
mathilde |
277 |
|
391 |
aurelien |
278 |
gererEvenementsWiki();
|
474 |
aurelien |
279 |
gererEvenementsPliage();
|
887 |
delphine |
280 |
|
|
|
281 |
$('a.lien_retour_synthese').click(function(event) {
|
|
|
282 |
$('#onglet_synthese a').click();
|
|
|
283 |
event.preventDefault();
|
|
|
284 |
});
|
966 |
aurelien |
285 |
|
1243 |
aurelien |
286 |
if($("#bloc-fiche").length > 0) {
|
|
|
287 |
// initialisation de l'url avec l'onglet par défaut ou bien
|
|
|
288 |
// celui qui a été explicitement demandé
|
|
|
289 |
mettreAJourUrl(permalienNumNom+"-"+onglet, onglet);
|
|
|
290 |
}
|
1246 |
aurelien |
291 |
gererInteractionsPermaliens();
|
324 |
gduche |
292 |
});
|
|
|
293 |
|
1266 |
aurelien |
294 |
function ajouterEvenement(elementHtml, nomEvenement, functionCallBack) {
|
|
|
295 |
if(!!elementHtml && elementHtml != null) {
|
|
|
296 |
if(elementHtml.attachEvent) {// Internet Explorer
|
|
|
297 |
elementHtml.attachEvent("on" + nomEvenement, function() {functionCallBack.call(elementHtml);});
|
|
|
298 |
} else if(elementHtml.addEventListener) { // Firefox & autres
|
|
|
299 |
elementHtml.addEventListener(nomEvenement, functionCallBack, false);
|
|
|
300 |
}
|
|
|
301 |
}
|
1370 |
mathias |
302 |
}
|
1257 |
aurelien |
303 |
|
|
|
304 |
$(document).one('ongletRepartitionCharge', function() {
|
1370 |
mathias |
305 |
var contRepObs = $(".conteneur_repartition_observations");
|
|
|
306 |
contRepObs.addClass("chargement_repartition");
|
1257 |
aurelien |
307 |
// utilisation d'une fonction native car jQuery refuse d'ajouter un évènement load
|
|
|
308 |
// sur autre chose qu'une image
|
1266 |
aurelien |
309 |
$('#repartition_observations').ready(function() {
|
|
|
310 |
ajouterEvenement(document.getElementById("repartition_observations"), "load", function() {
|
1370 |
mathias |
311 |
contRepObs.removeClass("chargement_repartition");
|
1266 |
aurelien |
312 |
});
|
1257 |
aurelien |
313 |
});
|
1370 |
mathias |
314 |
// lien "recalculer la carte de moissonnage"
|
|
|
315 |
$('#lien_recalculer_carte').click(function() {
|
|
|
316 |
var carteMoissonnageSvg = $('#repartition_observations'); // c'est plutôt "moissonnage" que "répartition" => squelette pourave power
|
|
|
317 |
var urlCarte = carteMoissonnageSvg.attr("data");
|
|
|
318 |
urlCarte += '&recalculer=1';
|
|
|
319 |
contRepObs.addClass("chargement_repartition");
|
|
|
320 |
carteMoissonnageSvg.attr("data", urlCarte);ajouterEvenement(document.getElementById("repartition_observations"), "load", function() {
|
|
|
321 |
contRepObs.removeClass("chargement_repartition");
|
|
|
322 |
});
|
|
|
323 |
return false;
|
|
|
324 |
});
|
1257 |
aurelien |
325 |
});
|
|
|
326 |
|
1243 |
aurelien |
327 |
|
1123 |
mathias |
328 |
// À la fin du chargement de l'onglet Illustrations
|
1243 |
aurelien |
329 |
$(document).one('ongletIllustrationsCharge', function() {
|
1594 |
killian |
330 |
$('a.lien-images-organes.fourni').on('click', afficherOngletOrgane);
|
|
|
331 |
$('a.lien-grande-image-organe').on('click', afficherGrandeImageOrgane);
|
1243 |
aurelien |
332 |
// pour que la galerie soit ouverte par défaut sur le premier organe non vide
|
|
|
333 |
var premier = $('a.lien-images-organes.fourni').first().data('tag');
|
|
|
334 |
afficherOngletOrgane(null, premier);
|
1289 |
aurelien |
335 |
|
1594 |
killian |
336 |
$('a.lien_telechargement_image').on('click',function(e) {
|
1400 |
aurelien |
337 |
if($(e.target).data('oneclicked')!='yes')
|
|
|
338 |
{
|
|
|
339 |
$(e.target).data('oneclicked','yes');
|
|
|
340 |
$(this).fancybox({
|
|
|
341 |
"type" : "iframe",
|
|
|
342 |
"autoDimensions" : false,
|
|
|
343 |
"width" : 800,
|
|
|
344 |
"height" : 405,
|
|
|
345 |
"titleShow" : false
|
|
|
346 |
}).click();
|
|
|
347 |
}
|
|
|
348 |
|
|
|
349 |
e.preventDefault();
|
|
|
350 |
return false;
|
1289 |
aurelien |
351 |
});
|
1123 |
mathias |
352 |
});
|
|
|
353 |
|
|
|
354 |
// Affiche les n images ayant le plus de votes, pour l'organe $tag
|
|
|
355 |
function afficherOngletOrgane(e, tag) {
|
|
|
356 |
var onglets = $('div.onglet-organe'),
|
|
|
357 |
contenu = $('#galerie-organes-contenu'),
|
|
|
358 |
organeOnglet;
|
|
|
359 |
|
|
|
360 |
if (tag === undefined) {
|
|
|
361 |
tag = $(this).data('tag')
|
|
|
362 |
}
|
|
|
363 |
if ($(this).parent().hasClass('active')) { // replier
|
|
|
364 |
$(this).parent().removeClass('active')
|
|
|
365 |
contenu.hide();
|
|
|
366 |
return false;
|
|
|
367 |
}
|
|
|
368 |
|
|
|
369 |
onglets.each(function() {
|
|
|
370 |
organeOnglet = $(this).data('tag');
|
|
|
371 |
var li = $('a.lien-images-organes[data-tag="' + organeOnglet + '"]').parent();
|
|
|
372 |
if (organeOnglet == tag) {
|
|
|
373 |
$(this).show();
|
|
|
374 |
li.addClass('active');
|
|
|
375 |
} else {
|
|
|
376 |
$(this).hide();
|
|
|
377 |
li.removeClass('active');
|
|
|
378 |
}
|
|
|
379 |
});
|
|
|
380 |
|
|
|
381 |
contenu.show();
|
|
|
382 |
|
|
|
383 |
var premierLienGrandeImage = $('div.onglet-organe:visible').find('a.lien-grande-image-organe').first(),
|
|
|
384 |
grandeImage = $('#grande-image-organe').find('img');
|
|
|
385 |
premierLienGrandeImage.trigger('click');
|
|
|
386 |
grandeImage.show('fast');
|
|
|
387 |
|
|
|
388 |
return false;
|
|
|
389 |
}
|
|
|
390 |
|
|
|
391 |
// Affiche en grand sous les miniatures l'image d'organe sur laquelle on a cliqué
|
|
|
392 |
function afficherGrandeImageOrgane() {
|
1488 |
delphine |
393 |
if ($(this).data('id-image') === "") {
|
|
|
394 |
return false;
|
|
|
395 |
}
|
1123 |
mathias |
396 |
var grandeImage = $('#grande-image-organe').find('img'),
|
|
|
397 |
source = $(this).find('img').attr('src');
|
1303 |
aurelien |
398 |
source = obtenirUrlMoyenFormatIdImage($(this).data('id-image'));
|
1131 |
mathias |
399 |
// chargement image et lien popup
|
1123 |
mathias |
400 |
grandeImage.attr('src', source);
|
1361 |
mathias |
401 |
// important pour Pinterest et cie.
|
|
|
402 |
grandeImage.attr('alt', $(this).data('auteur') + ' - ' + $(this).data('titre'));
|
1305 |
aurelien |
403 |
grandeImage.parent().attr('href',obtenirUrlGrandFormatIdImage($(this).data('id-image')));
|
1123 |
mathias |
404 |
// métadonnées
|
|
|
405 |
var metadonnees = ['id-image', 'titre', 'description', 'localisation', 'auteur'],
|
|
|
406 |
clef;
|
|
|
407 |
for (var i = 0; i < metadonnees.length; i++) {
|
|
|
408 |
clef = metadonnees[i];
|
1303 |
aurelien |
409 |
var contenu = $(this).data(clef);
|
|
|
410 |
if(clef == 'id-image') {
|
|
|
411 |
contenu +=
|
1571 |
delphine |
412 |
' <a title="T\xE9l\xE9charger cette image" class="lien_telechargement_image" href="'+urlBaseWidget+'telechargement?id_image='+$(this).data(clef)+'">'+
|
1303 |
aurelien |
413 |
'<img class="icone_action_ill" src="'+urlCssImages+'sauver.png" />'+
|
1571 |
delphine |
414 |
'</a> '+
|
1305 |
aurelien |
415 |
'<a title="Voir plus d\'informations sur cette image (s\'ouvre dans un popup)" class="lien-image-cel" href="'+urlPopup+'?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=' + $(this).data('id-image')+'">'+
|
1320 |
aurelien |
416 |
'<img class="icone_action_ill" src="'+urlCssImages+'infos_image.png" />'+
|
1349 |
mathias |
417 |
'</a>'+
|
1567 |
delphine |
418 |
'<a style="float:right" title="Signaler une mauvaise identification ou en proposer une autre via l\'outil identiplante" class="signaler-mauvaise-identification" href="' + $(this).data('url-mauvaise-ident') + '" target="_blank">' +
|
1571 |
delphine |
419 |
'<img class="icone_action_ill" src="'+urlCssImages+'mauvaise_id.png">Signaler une mauvaise identification' +
|
1303 |
aurelien |
420 |
'</a>';
|
|
|
421 |
}
|
|
|
422 |
$('#grande-image-legende-' + clef).html(contenu);
|
|
|
423 |
|
1123 |
mathias |
424 |
}
|
1361 |
mathias |
425 |
// valeurs génériques
|
1303 |
aurelien |
426 |
$('#grande-image-legende-' + clef).html($(this).data(clef));
|
1123 |
mathias |
427 |
$('#grande-image-legende-date').html(formaterDateVersFrancais($(this).data('date')));
|
1192 |
aurelien |
428 |
$('#grande-image-legende-id-destinataire').attr('href', urlPopup+'?module=popup-contact&action=form&referentiel='+REFERENTIEL+'&id_destinataire=' +
|
1208 |
mathias |
429 |
$(this).data('id-destinataire') + '&id_img=' + $(this).data('id-image'));
|
1317 |
aurelien |
430 |
$('#grande-image-legende-id-destinataire').attr('title', "Envoyer un message \xE0 l'auteur \xE0 propos de cette image (n\xE9cessite d'\xEAtre identifi\xE9)");
|
1131 |
mathias |
431 |
$('#grande-image-legende-auteur').attr('href', 'http://tela-botanica.org/profil:' + $(this).data('id-destinataire'));
|
1208 |
mathias |
432 |
$('#grande-image-legende-auteur').attr('target', '_blank');
|
1317 |
aurelien |
433 |
$('#grande-image-legende-auteur').attr('title', "Voir le profil de cet utilisateur (n\xE9cessite d'\xEAtre identifi\xE9)");
|
1309 |
aurelien |
434 |
|
|
|
435 |
|
|
|
436 |
$('#grande-image-legende-id-image a.lien_telechargement_image').unbind('click.fb').fancybox({
|
|
|
437 |
"type" : "iframe",
|
|
|
438 |
"autoDimensions" : false,
|
|
|
439 |
"width" : 800,
|
|
|
440 |
"height" : 405,
|
|
|
441 |
"titleShow" : false
|
|
|
442 |
});
|
1123 |
mathias |
443 |
}
|
|
|
444 |
|
1303 |
aurelien |
445 |
function obtenirUrlMoyenFormatIdImage(idImage) {
|
|
|
446 |
idImage = remplirChaineDebut(idImage, "0", 9);
|
|
|
447 |
return urlImagesOrganesMoyenFormatTpl.replace('{id_image}', idImage);
|
|
|
448 |
}
|
|
|
449 |
|
|
|
450 |
function obtenirUrlGrandFormatIdImage(idImage) {
|
|
|
451 |
idImage = remplirChaineDebut(idImage, "0", 9);
|
|
|
452 |
return urlImagesOrganesGrandFormatTpl.replace('{id_image}', idImage);
|
|
|
453 |
}
|
|
|
454 |
|
|
|
455 |
function remplirChaineDebut(chaine, remplissage, longueur) {
|
|
|
456 |
while(chaine.toString().length < longueur) {
|
|
|
457 |
chaine = remplissage.toString()+chaine.toString();
|
|
|
458 |
}
|
|
|
459 |
return chaine;
|
|
|
460 |
}
|
|
|
461 |
|
1123 |
mathias |
462 |
// transforme une date du type "2012-04-06" en "06 avril 2012"
|
|
|
463 |
function formaterDateVersFrancais(date) {
|
|
|
464 |
var mois = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
|
|
|
465 |
amj_hms = date.split(' '),
|
|
|
466 |
amj = amj_hms[0].split('-');
|
|
|
467 |
return amj[2] + ' ' + mois[parseInt(amj[1]) - 1] + ' ' + amj[0];
|
|
|
468 |
}
|
|
|
469 |
|
966 |
aurelien |
470 |
|
1123 |
mathias |
471 |
// ouvre le popup de galerie lors d'un clic sur l'illustration dans la fiche synthèse
|
864 |
aurelien |
472 |
function gererClicIllustrationsFiche() {
|
1594 |
killian |
473 |
$('.illustration_cel').on('click', function() {
|
917 |
aurelien |
474 |
var url_image = $(this).attr('src');
|
922 |
aurelien |
475 |
var titre = $('.nomenclature').first().text();
|
1136 |
mathias |
476 |
var url = urlPopup+"?module=popup-galerie&action=fiche&num_nom="+$(this).attr('data-num-nom')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image)+"&referentiel="+REFERENTIEL;
|
|
|
477 |
//var url = urlPopup+"?module=popup-galerie-organes&action=fiche&num_nom="+$(this).attr('data-num-nom')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image)+"&referentiel="+REFERENTIEL;
|
1123 |
mathias |
478 |
//alert(url);
|
|
|
479 |
//return false;
|
984 |
aurelien |
480 |
window.open(url, $(this).attr('data-num-nom'), 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(375));
|
864 |
aurelien |
481 |
});
|
|
|
482 |
}
|
|
|
483 |
|
|
|
484 |
function ouvrirFenetreIllustrationFiche(url, titre, hauteur, largeur) {
|
928 |
aurelien |
485 |
var fenetre = window.open('_blank', '','directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(largeur+17)+', height='+(hauteur+17));
|
864 |
aurelien |
486 |
var tmp = fenetre.document;
|
|
|
487 |
tmp.write('<html><head><title>'+titre+'</title>');
|
|
|
488 |
tmp.write('</head><body>');
|
|
|
489 |
tmp.write('<p style="height='+hauteur+'px;text-align:center;line-height='+hauteur+'px;"><img id="image_agrandie" height="'+hauteur+'" width="'+largeur+'" style="vertical-align:middle;" src="'+url+'" /></p>');
|
|
|
490 |
tmp.write('</body></html>');
|
|
|
491 |
tmp.close();
|
|
|
492 |
}
|
|
|
493 |
|
1246 |
aurelien |
494 |
|
|
|
495 |
// met à jour l'url dans la barre du navigateur ainsi que dans le permalien en bas
|
|
|
496 |
// de la fiche
|
1243 |
aurelien |
497 |
function mettreAJourUrl(nouvelleUrl, etat) {
|
1246 |
aurelien |
498 |
$('#permalien_num_nom').val(nouvelleUrl);
|
1243 |
aurelien |
499 |
if (!!(window.history && window.history.pushState)) {
|
|
|
500 |
var currentState = window.history.state;
|
|
|
501 |
if (currentState != nouvelleUrl && !!etat) {
|
|
|
502 |
window.history.pushState(etat, "", nouvelleUrl);
|
|
|
503 |
}
|
|
|
504 |
}
|
|
|
505 |
}
|
|
|
506 |
|
1246 |
aurelien |
507 |
function gererInteractionsPermaliens() {
|
|
|
508 |
$(".conteneur_permalien > a").each(function() {
|
|
|
509 |
var txt = '<input type="text" id="'+$(this).attr('id')+'" readonly="readonly" class="lien_externe" value="'+$(this).attr('href')+'">';
|
|
|
510 |
$(this).replaceWith(txt);
|
|
|
511 |
});
|
|
|
512 |
$(".conteneur_permalien > input").each(function() {
|
|
|
513 |
$(this).attr('size', $(this).val().length - 7);
|
|
|
514 |
});
|
|
|
515 |
$(".conteneur_permalien > input").hover(
|
|
|
516 |
function() {
|
|
|
517 |
$(this).select();
|
|
|
518 |
}, function() {
|
|
|
519 |
// rien à faire sur le mouseout
|
|
|
520 |
}
|
|
|
521 |
);
|
|
|
522 |
}
|
|
|
523 |
|
1381 |
aurelien |
524 |
function gererTemplatesChargementALaDemande() {
|
1521 |
delphine |
525 |
$('.lien-ajax-tpl a.lien-ajax-tpl-chargement').on('click', function(e) {
|
1381 |
aurelien |
526 |
if($(this).attr('data-loading') != "true") {
|
|
|
527 |
$(this).attr('data-loading', "true");
|
|
|
528 |
e.preventDefault();
|
|
|
529 |
urlTpl = $(this).attr('href');
|
|
|
530 |
$(this).hide();
|
|
|
531 |
thisElementParent = $(this).parent();
|
|
|
532 |
thisElementParent.append("<div class='tab-chargement'>Chargement des informations...</div>");
|
|
|
533 |
$.get(urlTpl, function( data ) {
|
|
|
534 |
thisElementParent.replaceWith( data );
|
|
|
535 |
});
|
|
|
536 |
return false;
|
|
|
537 |
}
|
|
|
538 |
});
|
|
|
539 |
}
|
|
|
540 |
|
1516 |
delphine |
541 |
$(document).ready(function() {
|
761 |
aurelien |
542 |
gererChargementGraphiqueEcologie();
|
971 |
aurelien |
543 |
gererAffichageLegendeEcologie();
|
1381 |
aurelien |
544 |
gererTemplatesChargementALaDemande();
|
1584 |
killian |
545 |
if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') === false) {
|
480 |
jpm |
546 |
$('.svg').each(function() {
|
1584 |
killian |
547 |
var img = document.createElement('img');
|
|
|
548 |
img.src = $(this).attr('alt');
|
480 |
jpm |
549 |
$(this).replaceWith(img);
|
|
|
550 |
});
|
324 |
gduche |
551 |
}
|
999 |
raphael |
552 |
});
|
1381 |
aurelien |
553 |
|