Updates map on address edition.
[platal.git] / htdocs / javascript / profile.js
1 /***************************************************************************
2 * Copyright (C) 2003-2011 Polytechnique.org *
3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
21 // Page initialization {{{1
22
23 function wizPage_onLoad(id)
24 {
25 switch (id) {
26 case 'general':
27 var i = 1;
28 while ($('.edu_' + i).length != 0) {
29 prepareType(i - 1);
30 ++i;
31 }
32 break;
33 case 'adresses':
34 checkCurrentAddress();
35 break;
36 case 'poly':
37 updateGroupSubLink();
38 break;
39 case 'deco':
40 var i = 0;
41 while ($('#medal_' + i).length != 0) {
42 prepareMedal(i);
43 ++i;
44 }
45 break;
46 case 'emploi':
47 if ($('#jobs_0').find("[name='jobs[0][name]']").val() == '') {
48 registerEnterpriseAutocomplete(0);
49 }
50 break;
51 }
52 }
53
54 var educationDegree;
55 var educationDegreeAll;
56 var educationDegreeName;
57 var subgrades;
58 var names;
59 var multiples;
60
61 // Publicity follows the following ordering: private < ax < public.
62 var publicity = [];
63 publicity['private'] = 0;
64 publicity['ax'] = 1;
65 publicity['public'] = 2;
66
67 // Names {{{1
68
69 function toggleNamesAdvanced()
70 {
71 $('.names_advanced').toggle();
72 }
73
74 function addSearchName(isFemale)
75 {
76 var i = 0;
77 while ($('#search_name_' + i).length != 0) {
78 i++;
79 }
80 $('#search_name_' + i)
81 .updateHtml('profile/ajax/searchname/' + i + '/' + isFemale,
82 function(data) {
83 $('#searchname').before(data);
84 changeNameFlag(i);
85 });
86 }
87
88 function removeSearchName(i, isFemale)
89 {
90 $('#search_name_' + i).remove();
91 updateNameDisplay(isFemale);
92 }
93
94 function changeNameFlag(i)
95 {
96 $('#flag_' + i).remove();
97 var typeid = $('#search_name_' + i).find('select').val();
98 var type = $('#search_name_' + i).find('select :selected').text();
99 if ($('[name=sn_type_' + typeid + '_' + i + ']').val() > 0) {
100 $('#flag_cb_' + i).after('<span id="flag_' + i + '">&nbsp;' +
101 '<img src="images/icons/flag_green.gif" alt="site public" title="site public" />' +
102 '<input type="hidden" name="search_names[' + i + '][pub]" value="1"/>' +
103 '<input type="hidden" name="search_names[' + i + '][typeid]" value="' + typeid + '"/>' +
104 '<input type="hidden" name="search_names[' + i + '][type]" value="' + type + '"/></span>');
105 } else {
106 $('#flag_cb_' + i).after('<span id="flag_' + i + '">&nbsp;' +
107 '<img src="images/icons/flag_red.gif" alt="site privé" title="site privé" />' +
108 '<input type="hidden" name="search_names[' + i + '][typeid]" value="' + typeid + '"/>' +
109 '<input type="hidden" name="search_names[' + i + '][type]" value="' + type + '"/></span>');
110 }
111 }
112
113 function updateNameDisplay(isFemale)
114 {
115 var searchnames = '';
116 for (var i = 0; i < 10; i++) {
117 if ($('#search_name_' + i).find(':text').val()) {
118 searchnames += $('#search_name_' + i).find('[name*=typeid]').val() + ';';
119 searchnames += $('#search_name_' + i).find(':text').val() + ';;';
120 }
121 }
122 $.xget('profile/ajax/buildnames/' + searchnames + '/' + isFemale,
123 function(data){
124 var name = data.split(';');
125 $('#public_name').html(name[0]);
126 $('#private_name').html(name[0] + name[1]);
127 });
128 }
129
130 function toggleParticle(id)
131 {
132 if ($('#search_name_' + id).find("[name*='[particle]']").val() == '') {
133 $('#search_name_' + id).find("[name*='[particle]']").val(1);
134 } else {
135 $('#search_name_' + id).find("[name*='[particle]']").val('');
136 }
137 }
138
139 // Promotions {{{1
140
141 function togglePromotionEdition()
142 {
143 $(".promotion_edition").toggle();
144 }
145
146 // Nationalities {{{1
147
148 function delNationality(i)
149 {
150 $('#nationality' + i).hide().find('select').val('');
151 }
152
153 function addNationality()
154 {
155 var i = 0;
156 if ($('#nationality2').find('select').val() == "") {
157 i = 2;
158 } else if ($('#nationality3').find('select').val() == "") {
159 i = 3;
160 }
161 if ((i == 2) || (i == 3)) {
162 $('#nationality' + i).show();
163 }
164 }
165
166 // Education {{{1
167
168 function prepareType(id)
169 {
170 var edu = $('.edu_' + id).find("[name='edus[" + id + "][eduid]']").val() - 1;
171 var sel = $('.edu_' + id).find('[name=edu_' + id + '_tmp]').val();
172 var html = '';
173 if (educationDegree[edu]) {
174 var length = educationDegree[edu].length;
175 } else {
176 var length = 0;
177 }
178 for (i = 0; i < length; ++i) {
179 html += '<option value="' + educationDegree[edu][i] + '"';
180 if (sel == educationDegree[edu][i]) {
181 html += ' selected="selected"';
182 }
183 html += '>' + educationDegreeName[educationDegree[edu][i] - 1] + '</option>';
184 }
185 // XXX: to be removed once SQL table profile_merge_issues is.
186 if (sel != '' && html == '') {
187 html += '<option value="' + sel + '" selected="selected">' + educationDegreeName[sel - 1] + '</option>';
188 }
189 $('.edu_' + id).find("[name='edus[" + id + "][degreeid]']").html(html);
190 }
191
192 function addEdu()
193 {
194 var i = 0;
195 var j = 0;
196 var prefix = 'edu_';
197 var class_parity;
198
199 while (!$('#edu_add').hasClass(prefix + i)) {
200 if ($('.' + prefix + i).length != 0) {
201 j++;
202 }
203 i++;
204 }
205 if (j % 2) {
206 class_parity = 'pair';
207 } else {
208 class_parity = 'impair';
209 }
210 $('#edu_add').removeClass(prefix + i);
211 i++;
212 $('#edu_add').addClass(prefix + i);
213 i--;
214 $.xget('profile/ajax/edu/' + i + '/' + class_parity,
215 function(data) {
216 $('#edu_add').before(data);
217 prepareType(i);
218 });
219 }
220
221 function removeEdu(i)
222 {
223 var prefix = 'edu_';
224 $('.' + prefix + i).remove();
225 while (!$('#edu_add').hasClass(prefix + i)) {
226 $('.' + prefix + i).toggleClass('pair');
227 $('.' + prefix + i).toggleClass('impair');
228 i++;
229 }
230 }
231
232 // Networking {{{1
233
234 function addNetworking()
235 {
236 var i = 0;
237 while ($('#networking_' + i).length != 0) {
238 i++;
239 }
240 var namefirst = '';
241 var html = '<tr id="networking_' + i + '">'
242 + ' <td colspan="2">'
243 + ' <div style="float: left; width: 200px;">'
244 + ' <span class="flags">'
245 + ' <input type="checkbox" name="networking[' + i + '][pub]"/>'
246 + ' <img src="images/icons/flag_green.gif" alt="site public" title="site public">'
247 + ' </span>&nbsp;'
248 + ' <select name="networking[' + i + '][type]" onchange="javascript:updateNetworking(' + i + ');">';
249 for (nw in nw_list) {
250 if (namefirst == '') {
251 namefirst = nw;
252 }
253 html += ' <option value="' + nw_list[nw] + '">' + nw + '</option>';
254 }
255 html += '</select>'
256 + ' <input type="hidden" name="networking[' + i + '][name]" value="' + namefirst + '"/>'
257 + ' </div>'
258 + ' <div style="float: left">'
259 + ' <input type="text" name="networking[' + i + '][address]" value="" size="30"/>'
260 + ' <a href="javascript:removeNetworking(' + i + ')">'
261 + ' <img src="images/icons/cross.gif" alt="cross" title="Supprimer cet élément"/>'
262 + ' </a>'
263 + ' </div>'
264 + ' </td>'
265 + '</tr>';
266
267 $('#networking').before(html);
268 }
269
270 function removeNetworking(id)
271 {
272 $('#networking_' + id).remove();
273 }
274
275 function updateNetworking(i)
276 {
277 $('#networking_' + i).find("[name='networking[" + i + "][name]']").val($('#networking_' + i).find('select option:selected').text());
278 }
279
280 // Addresses {{{1
281
282 function toggleAddress(id, val)
283 {
284 $('#addresses_' + id + '_grayed').toggle();
285 $('#addresses_' + id).toggle();
286 $('#addresses_' + id + '_cont').find('[name*=removed]').val(val);
287 checkCurrentAddress();
288 }
289
290 function checkCurrentAddress(id)
291 {
292 var hasCurrentAddress = id ? true : false;
293 var i = 0;
294 while ($('#addresses_' + i + '_cont').length != 0) {
295 if ($('#addresses_' + i + '_cont').find('[name*=removed]').val() == 1) {
296 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', false);
297 }
298 if (!hasCurrentAddress && $('#addresses_' + i + '_cont').find('[name*=current]:checked').length != 0) {
299 hasCurrentAddress = true;
300 } else {
301 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', false);
302 }
303 i++;
304 }
305 if (!hasCurrentAddress) {
306 i = 0;
307 while ($('#addresses_' + i + '_cont').length != 0) {
308 if ($('#addresses_' + i + '_cont').find('[name*=removed]').val() == 0) {
309 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', 'checked');
310 break;
311 }
312 i++;
313 }
314 }
315 if (id) {
316 $('#addresses_' + id + '_cont').find('[name*=current]').attr('checked', 'checked');
317 }
318 }
319
320 function addAddress()
321 {
322 var i = 0;
323 while ($('#addresses_' + i + '_cont').length != 0) {
324 i++;
325 }
326 $('#add_address').before('<div id="addresses_' + i + '_cont"></div>');
327 $('#addresses_' + i + '_cont').updateHtml('profile/ajax/address/' + i,
328 checkCurrentAddress());
329 }
330
331 function addressChanged(prefid, color)
332 {
333 var text = $('#' + prefid + '_cont').find("[name*='[text]']").val();
334 $('#' + prefid + '_cont').find('[name*=changed]').val("1");
335 $.xpost('map_url/', { text:text, color:color }, function(data) {
336 $('.static_map_url').find('img').attr('src', data);
337 });
338 }
339
340 function deleteGeocoding(prefid, hrpid)
341 {
342 var confirmation = confirm(
343 "La localisation de l'adresse sert Ă  deux choses : te placer dans "
344 + "le planisphère et te faire apparaître dans la recherche avancée par "
345 + "pays, région, département, ville... La supprimer t'en fera disparaître. "
346 + "\nIl ne faut le faire que si cette localisation "
347 + "est réellement erronée. Avant de supprimer cette localisation, l'équipe de "
348 + "Polytechnique.org tentera de la réparer.\n\nConfirmes-tu ta "
349 + "demande de suppression de cette localisation ?");
350
351 if (confirmation) {
352 var address = $('#' + prefid).find("[name*='[text]']").val();
353 $.xpost('profile/ajax/address/del/' + hrpid, { address:address });
354 $('#' + prefid + '_geocoding_removal').html('Localisation en attente de validation.');
355 }
356 }
357
358 // {{{1 Phones
359
360 function addTel(prefid, prefname, subField, mainField, mainId)
361 {
362 var i = 0;
363 var prefix = prefid + '_';
364 while ($('#' + prefix + i).length != 0) {
365 i++;
366 }
367 $('#' + prefix + 'add').before('<div id="' + prefix + i + '" style="clear: both; padding-top: 4px; padding-bottom: 4px"></div>');
368 $('#' + prefix + i).updateHtml('profile/ajax/tel/' + prefid + '/' + prefname + '/' + i + '/' + subField + '/' + mainField + '/' + mainId);
369 }
370
371 function removeTel(prefname, prefid, id)
372 {
373 var total = 0;
374 while ($('#' + prefid + '_' + total).length != 0) {
375 ++total;
376 }
377 $('#' + prefid + '_' + id).remove();
378 for (var i = parseInt(id) + 1; i < total; ++i) {
379 renumberPhone(prefname, prefid, i);
380 }
381 }
382
383 function addPhoneComment(id)
384 {
385 $('#' + id + '_comment').show();
386 $('#' + id + '_addComment').hide();
387 }
388
389 function removePhoneComment(id, pref)
390 {
391 $('#' + id + '_comment').hide();
392 $('#' + id + '_comment').find("[name='" + pref + "[comment]']").val('');
393 $('#' + id + '_addComment').show();
394 }
395
396 function renumberPhone(prefname, prefid, i)
397 {
398 var telid = i - 1;
399 var telprefOld = prefname + '[' + i + ']';
400 var telpref = prefname + '[' + telid + ']';
401 var idOld = prefid + '_' + i;
402 var id = prefid + '_' + telid;
403
404 $('#' + idOld).attr('id', id);
405 $('#' + id).find('div.titre').html('N°' + i);
406 $('#' + id).find('a.removeTel').attr('href', 'javascript:removeTel(\'' + prefname + '\',\'' + prefid + '\',' + telid + ')');
407 $('#' + id).find('select').attr('name', telpref + '[type]');
408 $('#' + id).find("[name='" + telprefOld + "[display]']").attr('name', telpref + '[display]');
409 $('#' + id).find("[name='" + telprefOld + "[comment]']").attr('name', telpref + '[comment]');
410 $('#' + id).find('a.removePhoneComment').attr('href', 'javascript:removePhoneComment(' + id + ',' + telpref + ')');
411 $('#' + id).find('#' + idOld + '_addComment').attr('id', id + '_addComment');
412 $('#' + id).find('#' + id + '_addComment').attr('href', 'javascript:addPhoneComment(' + id + ')');
413 $('#' + id).find('#' + idOld + '_comment').attr('id', id + '_comment');
414 $('#' + id).find("[name='" + telprefOld + "[pub]']").attr('name', telpref + '[pub]');
415 }
416
417 // {{{1 Groups
418
419 function addBinet()
420 {
421 var id = $('#binets_table').find('[name=binets_sel]').val();
422 var text = $('#binets_table').find('select option:selected').text();
423 var html = '<tr id="binets_' + id + '">'
424 + ' <td>'
425 + ' <input type="hidden" name="binets[' + id + ']" value="' + text + '" />'
426 + ' </td>'
427 + ' <td>'
428 + ' <div style="float: left; width: 70%">'
429 + text
430 + ' </div>'
431 + ' <a href="javascript:removeElement(\'binets\',' + id + ')">'
432 + ' <img src="images/icons/cross.gif" alt="cross" title="Supprimer ce groupe" />'
433 + ' </a>'
434 + ' </td>'
435 + '</tr>';
436 $('#binets_table').after(html);
437 updateElement('binets');
438 }
439
440 function updateGroupSubLink()
441 {
442 var href = $('[name*=groupesx_sub]').val() ? $('[name*=groupesx_sub]').val() : 'http://www.polytechnique.net';
443 $('#groupesx_sub').attr('href', href);
444 }
445
446 // {{{1 Medals
447
448 function prepareMedal(i)
449 {
450 getMedalName($('#medal_' + i).find('[name="medals[' + i + '][id]"]').val());
451 buildGrade(i);
452 }
453
454 function updateMedal()
455 {
456 var val = $('#medals').find('[name*=medal_sel]').val();
457
458 if ((multiple[val] && subgrades[val]) || $('.medal_name_' + val).length == 0) {
459 $('#medal_add').show();
460 } else {
461 $('#medal_add').hide();
462 }
463 }
464
465 function getMedalName(id)
466 {
467 $('.medal_name_' + id).html(names[id]);
468 }
469
470 function buildGrade(i)
471 {
472 var id = $('#medal_' + i).find('[name="medals[' + i + '][id]"]').val();
473 var current = $('#medal_' + i).find('[name="medals_' + i + '_grade"]').val();
474 var subg = subgrades[id];
475 var obj = $('#medal_grade_' + i);
476 if (!subg) {
477 obj.prepend('<input type="hidden" name="medals[' + i + '][grade]" value="0" />');
478 } else {
479 var html = 'Agrafe : <select name="medals[' + i + '][grade]">';
480 html += '<option value="0">Non précisée</option>';
481 for (var grade = 0; grade < subg.length; ++grade) {
482 html += '<option value="' + subg[grade][0] + '"';
483 if (subg[grade][0] == current) {
484 html += ' selected="selected"';
485 }
486 html += '>' + subg[grade][1] + '</option>';
487 }
488 html += '</select>';
489 obj.prepend(html);
490 }
491 }
492
493 function makeAddProcess(i, id)
494 {
495 return function(data)
496 {
497 $('#medals').after(data);
498 updateMedal();
499 getMedalName(id);
500 buildGrade(i, 0);
501 };
502 }
503
504 function addMedal()
505 {
506 var i = 0;
507 while ($('#medal_' + i).length != 0) {
508 ++i;
509 }
510
511 var id = $('#medals').find('[name=medal_sel]').val();
512 $.xget('profile/ajax/medal/' + i + '/' + id, makeAddProcess(i, id));
513 }
514
515 function removeMedal(id)
516 {
517 var total = 0;
518 while ($('#medal_' + total).length != 0) {
519 ++total;
520 }
521 $('#medal_' + id).remove();
522 for (var i = parseInt(id) + 1; i < total; ++i) {
523 renumberMedal(i);
524 }
525 updateMedal();
526 }
527
528 function renumberMedal(i)
529 {
530 var new_i = i - 1;
531
532 $('#medal_' + i).attr('id', 'medal_' + new_i);
533 $('#medal_grade_' + i).attr('id', 'medal_grade_' + new_i);
534 $('#medal_grade_' + new_i).find("[name='medals_" + i + "_grade']").attr('name', 'medals_' + new_i + '_grade');
535 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][id]']").attr('name', 'medals[' + new_i + '][id]');
536 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][valid]']").attr('name', 'medals[' + new_i + '][valid]');
537 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][grade]']").attr('name', 'medals[' + new_i + '][grade]');
538 $('#medal_' + new_i).find('a.removeMedal').attr('href', 'javascript:removeMedal(' + new_i + ')');
539 }
540
541 // Jobs {{{1
542
543 function removeJob(id, pref)
544 {
545 $('#' + id + '_cont').hide();
546 if ($('#' + id).find("[name='" + pref + "[new]']").val() == '0') {
547 $('#' + id + '_grayed').show();
548 $('#' + id + '_grayed_name').html($('#' + id).find("[name='" + pref + "[name]']").val());
549 }
550 $('#' + id).find("[name='" + pref + "[removed]']").val('1');
551 }
552
553 function restoreJob(id, pref)
554 {
555 $('#' + id + '_cont').show();
556 $('#' + id + '_grayed').hide();
557 $('#' + id).find("[name='" + pref + "[removed]']").val('0');
558 }
559
560 function makeAddJob(id)
561 {
562 return function(data)
563 {
564 $('#add_job').before(data);
565 registerEnterpriseAutocomplete(id);
566 };
567 }
568
569 function addJob()
570 {
571 var i = 0;
572 while ($('#jobs_' + i).length != 0) {
573 ++i;
574 }
575 $.xget('profile/ajax/job/' + i, makeAddJob(i));
576 }
577
578 function addEntreprise(id)
579 {
580 $('.entreprise_' + id).toggle();
581 }
582
583 /**
584 * Adds a job term in job profile page
585 * @param jobid id of profile's job among his different jobs
586 * @param jtid id of job term to add
587 * @param full_name full text of job term
588 * @return false if the term already exist for this job, true otherwise
589 */
590 function addJobTerm(jobid, jtid, full_name)
591 {
592 var termid = 0;
593 var parentpath;
594 var formvarname;
595 if (jobid < 0) {
596 parentpath = '';
597 jobid = '';
598 formvarname = 'terms';
599 } else {
600 parentpath = '#jobs_'+jobid+' ';
601 formvarname = 'jobs['+jobid+'][terms]';
602 }
603 var lastJobTerm = $(parentpath + '.jobs_term:last');
604 if (lastJobTerm.length != 0) {
605 termid = parseInt(lastJobTerm.children('input').attr('name').replace(/^(jobs\[[0-9]+\]\[terms\]|terms)\[([0-9]+)\]\[jtid\]/, '$2')) + 1;
606 if ($('#job'+jobid+'_term'+jtid).length > 0) {
607 return false;
608 }
609 }
610 var newdiv = '<div class="jobs_term" id="job'+jobid+'_term'+jtid+'">'+
611 '<span>'+full_name+'</span>'+
612 '<input type="hidden" name="'+formvarname+'['+termid+'][jtid]" value="'+jtid+'" />'+
613 '<img title="Retirer ce mot-clef" alt="retirer" src="images/icons/cross.gif" />'+
614 '</div>';
615 if (lastJobTerm.length == 0) {
616 $(parentpath + '.jobs_terms').prepend(newdiv);
617 } else {
618 lastJobTerm.after(newdiv);
619 }
620 $('#job'+jobid+'_term'+jtid+' img').css('cursor','pointer').click(removeJobTerm);
621 return true;
622 }
623
624 /**
625 * Remove a job term in job profile page.
626 * Must be called from a button in a div containing the term
627 */
628 function removeJobTerm()
629 {
630 $(this).parent().remove();
631 }
632
633 /**
634 * Prepare display for autocomplete suggestions in job terms
635 * @param row an array of (title of term, id of term)
636 * @return text to display
637 * If id is negative, it is because there are too much terms to
638 * be displayed.
639 */
640 function displayJobTerm(row)
641 {
642 if (row[1] < 0) {
643 return '... <em>parcourir les résultats dans un arbre</em> ...';
644 }
645 return row[0];
646 }
647
648 /**
649 * Function called when a job term has been selected from autocompletion
650 * in search
651 * @param li is the list item (<li>) that has been clicked
652 * The context is the jsquery autocomplete object.
653 */
654 function selectJobTerm(li)
655 {
656 var jobid = this.extraParams.jobid;
657 if (li.extra[0] >= 0) {
658 addJobTerm(jobid,li.extra[0],$(li).text());
659 }
660 var search_input;
661 if (jobid < 0) {
662 search_input = $('.term_search')[0];
663 } else {
664 search_input = $('#jobs_'+jobid+' .term_search')[0];
665 }
666 if (li.extra[0] >= 0) {
667 search_input.value = '';
668 search_input.focus();
669 } else {
670 search_input.value = li.selectValue.replace(/%$/,'');
671 toggleJobTermsTree(jobid, li.selectValue);
672 }
673 }
674
675 /**
676 * Function to show or hide a terms tree in job edition
677 * @param jobid is the id of the job currently edited
678 */
679 function toggleJobTermsTree(jobid, textfilter)
680 {
681 $('#term_tree_comment').toggle();
682
683 var treepath;
684 if (jobid < 0) {
685 treepath = '';
686 } else {
687 treepath = '#jobs_'+jobid+' ';
688 }
689 treepath += '.term_tree';
690 if ($(treepath + ' ul').length > 0) {
691 $(treepath).empty().removeClass().addClass('term_tree');
692 if (!textfilter) {
693 return;
694 }
695 }
696 createJobTermsTree(treepath, 'profile/ajax/tree/jobterms/all', 'job' + jobid, 'chooseJobTerm', textfilter);
697 }
698
699 /**
700 * Function called when a job term is chosen from terms tree
701 * @param treeid is the full id of the tree (must look like job3)
702 * @param jtid is the id of the job term chosen
703 * @param fullname is the complete name (understandable without context) of the term
704 */
705 function chooseJobTerm(treeid, jtid, fullname)
706 {
707 addJobTerm(treeid.replace(/^job(.*)$/, '$1'), jtid, fullname);
708 }
709
710 // {{{1 Skills
711
712 function addSkill(cat)
713 {
714 var val = $('#' + cat + '_table').find('[name=' + cat + '_sel]').val();
715 var text = $('#' + cat + '_table').find('[name=' + cat + '_sel] :selected').text();
716 $.xget('profile/ajax/skill/' + cat + '/' + val,
717 function(data) {
718 $('#' + cat).append(data);
719 $('#' + cat + '_' + val + '_title').text(text);
720 updateElement(cat);
721 });
722 }
723
724 // {{{1 Mentor
725
726 function addCountry()
727 {
728 var val = $('#countries_table').find('[name=countries_sel] :selected').val();
729 var text = $('#countries_table').find('[name=countries_sel] :selected').text();
730 var html = '<div id="countries_' + val + '" style="clear: both; margin-bottom: 0.7em">'
731 + ' <a href="javascript:removeElement(\'countries\',\'' + val + '\')" style="display: block; float:right">'
732 + ' <img src="images/icons/cross.gif" alt="" title="Supprimer ce pays" />'
733 + ' </a>'
734 + ' <div style="float: left; width: 50%">' + text + '</div>'
735 + ' <input type="hidden" name="countries[' + val + ']" value="' + text + '" />'
736 + '</div>';
737 $('#countries').append(html);
738 updateElement('countries');
739 }
740
741 function registerEnterpriseAutocomplete(id)
742 {
743 $(".enterpriseName").each(
744 function() {
745 if (id == -1 || this.name == "jobs[" + id + "][name]") {
746 $(this).autocomplete($.plURL("search/autocomplete/entreprise"),
747 {
748 selectOnly:1,
749 field:this.name,
750 matchSubset:0,
751 width:$(this).width()
752 });
753 }
754 });
755
756 $(".sectorName").each(
757 function() {
758 if (id == -1 || this.name == "jobs[" + id + "][subSubSectorName]") {
759 $(this).autocomplete($.plURL("search/autocomplete/subSubSector"),
760 {
761 selectOnly:1,
762 field:this.name,
763 matchSubset:0,
764 width:$(this).width()
765 });
766 }
767 });
768 }
769
770 // {{{1 Multiusage functions
771
772 function updateElement(cat)
773 {
774 var val = $('#' + cat + '_table').find('[name=' + cat + '_sel]').val();
775 if (val == '' || $('#' + cat + '_' + val).length != 0) {
776 $('#' + cat + '_add').hide();
777 } else {
778 $('#' + cat + '_add').show();
779 }
780 }
781
782 function removeElement(cat, id)
783 {
784 $('#' + cat + '_' + id).remove();
785 updateElement(cat);
786 }
787
788 function updateSubPublicity(subFieldId, name, mainPub)
789 {
790 var subPub = $(subFieldId).find("[name='" + name + "']:checked").val();
791 if (publicity[subPub] > publicity[mainPub]) {
792 $(subFieldId).find("[name='" + name + "']:checked").removeAttr('checked');
793 $(subFieldId).find('[value=' + mainPub + ']').attr('checked', 'checked');
794 }
795 }
796
797 function updatePublicity(mainField, mainId, subField, subId)
798 {
799 var mainFieldId = '#' + mainField + '_' + mainId;
800 var mainPub = $(mainFieldId).find("[name='" + mainField + "[" + mainId + "][pub]']:checked").val();
801 if (subId == -1) {
802 var subFields = subField.split(',');
803 for (var i =0; i < subFields.length; ++i) {
804 var subFieldBaseId = mainFieldId + '_' + subFields[i];
805 var name = mainField + '[' + mainId + '][' + subFields[i] + ']';
806 if ($(subFieldBaseId).length != 0) {
807 updateSubPublicity(subFieldBaseId, name + '[pub]', mainPub);
808 updateSubPublicity(subFieldBaseId, mainField + '[' + mainId + '][' + subFields[i] + '_pub]', mainPub);
809 }
810 subId = 0;
811 while ($(subFieldBaseId + '_' + subId).length != 0) {
812 updateSubPublicity(subFieldBaseId + '_' + subId, name + '[' + subId + '][pub]', mainPub);
813 ++subId;
814 }
815 }
816 } else {
817 if (subId == '') {
818 updateSubPublicity(mainFieldId + '_' + subField, mainField + '[' + mainId + '][' + subField + '_pub]', mainPub);
819 updateSubPublicity(mainFieldId + '_' + subField, mainField + '[' + mainId + '][' + subField + '][pub]', mainPub);
820 } else {
821 updateSubPublicity(mainFieldId + '_' + subField + '_' + subId, mainField + '[' + mainId + '][' + subField + '][' + subId + '][pub]', mainPub);
822 }
823 }
824 }
825
826 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: