4b5fcc4d050f6ab9970a5dc09bacb88d7bf125ea
[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(togglePrivate)
70 {
71 $('.names_advanced_public').toggle();
72 if (togglePrivate) {
73 $('.names_advanced_private').toggle();
74 }
75 }
76
77 function addSearchName(isFemale)
78 {
79 var i = 0;
80 while ($('#search_name_' + i).length != 0) {
81 i++;
82 }
83 $('#search_name_' + i).updateHtml('profile/ajax/searchname/' + i + '/' + isFemale,
84 function(data) {
85 $('#searchname').before(data);
86 });
87 }
88
89 function removeSearchName(i, isFemale)
90 {
91 $('#search_name_' + i).remove();
92 updateNameDisplay(isFemale);
93 }
94
95 function updateNameDisplay(isFemale)
96 {
97 var lastnames = new Array('lastname_main', 'lastname_ordinary', 'lastname_marital', 'pseudonym');
98 var firstnames = new Array('firstname_main', 'firstname_ordinary');
99 var searchnames = '';
100
101 for (var i = 0; i < 4; ++i) {
102 searchnames += $('.names_advanced_public').find('[name*=' + lastnames[i] + ']').val() + ';';
103 }
104 searchnames += '-;'
105 for (var i = 0; i < 2; ++i) {
106 searchnames += $('.names_advanced_public').find('[name*=' + firstnames[i] + ']').val() + ';';
107 }
108 searchnames += '-';
109
110 var has_private = false;
111 for (var i = 0; i < 10; ++i) {
112 if ($('#search_name_' + i).find(':text').val()) {
113 searchnames += ';' + $('#search_name_' + i).find('[name*=type]').val() + ';' + $('#search_name_' + i).find(':text').val();
114 has_private = true;
115 }
116 }
117 searchnames += (has_private ? '' : ';');
118 $.xget('profile/ajax/buildnames/' + searchnames + '/' + isFemale,
119 function(data){
120 var name = data.split(';');
121 $('#public_name').html(name[0]);
122 $('#private_name').html(name[0] + name[1]);
123 });
124 }
125
126 // Promotions {{{1
127
128 function togglePromotionEdition()
129 {
130 $(".promotion_edition").toggle();
131 }
132
133 // Nationalities {{{1
134
135 function delNationality(i)
136 {
137 $('#nationality' + i).hide().find('select').val('');
138 }
139
140 function addNationality()
141 {
142 var i = 0;
143 if ($('#nationality2').find('select').val() == "") {
144 i = 2;
145 } else if ($('#nationality3').find('select').val() == "") {
146 i = 3;
147 }
148 if ((i == 2) || (i == 3)) {
149 $('#nationality' + i).show();
150 }
151 }
152
153 // Education {{{1
154
155 function prepareType(id)
156 {
157 var edu = $('.edu_' + id).find("[name='edus[" + id + "][eduid]']").val() - 1;
158 var sel = $('.edu_' + id).find('[name=edu_' + id + '_tmp]').val();
159 var html = '';
160 if (educationDegree[edu]) {
161 var length = educationDegree[edu].length;
162 } else {
163 var length = 0;
164 }
165 for (i = 0; i < length; ++i) {
166 html += '<option value="' + educationDegree[edu][i] + '"';
167 if (sel == educationDegree[edu][i]) {
168 html += ' selected="selected"';
169 }
170 html += '>' + educationDegreeName[educationDegree[edu][i] - 1] + '</option>';
171 }
172 // XXX: to be removed once SQL table profile_merge_issues is.
173 if (sel != '' && html == '') {
174 html += '<option value="' + sel + '" selected="selected">' + educationDegreeName[sel - 1] + '</option>';
175 }
176 $('.edu_' + id).find("[name='edus[" + id + "][degreeid]']").html(html);
177 }
178
179 function addEdu()
180 {
181 var i = 0;
182 var j = 0;
183 var prefix = 'edu_';
184 var class_parity;
185
186 while (!$('#edu_add').hasClass(prefix + i)) {
187 if ($('.' + prefix + i).length != 0) {
188 j++;
189 }
190 i++;
191 }
192 if (j % 2) {
193 class_parity = 'pair';
194 } else {
195 class_parity = 'impair';
196 }
197 $('#edu_add').removeClass(prefix + i);
198 i++;
199 $('#edu_add').addClass(prefix + i);
200 i--;
201 $.xget('profile/ajax/edu/' + i + '/' + class_parity,
202 function(data) {
203 $('#edu_add').before(data);
204 prepareType(i);
205 });
206 }
207
208 function removeEdu(i)
209 {
210 var prefix = 'edu_';
211 $('.' + prefix + i).remove();
212 while (!$('#edu_add').hasClass(prefix + i)) {
213 $('.' + prefix + i).toggleClass('pair');
214 $('.' + prefix + i).toggleClass('impair');
215 i++;
216 }
217 }
218
219 // Networking {{{1
220
221 function addNetworking()
222 {
223 var i = 0;
224 while ($('#networking_' + i).length != 0) {
225 i++;
226 }
227 var namefirst = '';
228 var html = '<tr id="networking_' + i + '">'
229 + ' <td colspan="2">'
230 + ' <div style="float: left; width: 200px;">'
231 + ' <span class="flags">'
232 + ' <input type="checkbox" name="networking[' + i + '][pub]"/>'
233 + ' <img src="images/icons/flag_green.gif" alt="site public" title="site public">'
234 + ' </span>&nbsp;'
235 + ' <select name="networking[' + i + '][type]" onchange="javascript:updateNetworking(' + i + ');">';
236 for (nw in nw_list) {
237 if (namefirst == '') {
238 namefirst = nw;
239 }
240 html += ' <option value="' + nw_list[nw] + '">' + nw + '</option>';
241 }
242 html += '</select>'
243 + ' <input type="hidden" name="networking[' + i + '][name]" value="' + namefirst + '"/>'
244 + ' </div>'
245 + ' <div style="float: left">'
246 + ' <input type="text" name="networking[' + i + '][address]" value="" size="30"/>'
247 + ' <a href="javascript:removeNetworking(' + i + ')">'
248 + ' <img src="images/icons/cross.gif" alt="cross" title="Supprimer cet élément"/>'
249 + ' </a>'
250 + ' </div>'
251 + ' </td>'
252 + '</tr>';
253
254 $('#networking').before(html);
255 }
256
257 function removeNetworking(id)
258 {
259 $('#networking_' + id).remove();
260 }
261
262 function updateNetworking(i)
263 {
264 $('#networking_' + i).find("[name='networking[" + i + "][name]']").val($('#networking_' + i).find('select option:selected').text());
265 }
266
267 // Hobby {{{1
268
269 function addHobby()
270 {
271 var i = 0;
272 while ($('#hobby_' + i).length != 0) {
273 ++i;
274 }
275 var html = '<tr id="hobby_' + i + '">'
276 + ' <td colspan="2">'
277 + ' <div style="float: left; width: 200px;">'
278 + ' <span class="flags">'
279 + ' <input type="checkbox" name="hobbies[' + i + '][pub]"/>'
280 + ' <img src="images/icons/flag_green.gif" alt="site public" title="site public">'
281 + ' </span>&nbsp;'
282 + ' <select name="hobbies[' + i + '][type]">'
283 + ' <option value="Sport">Sport</option>'
284 + ' <option value="Loisir">Loisir</option>'
285 + ' <option value="Hobby">Hobby</option>'
286 + ' </select>'
287 + ' </div>'
288 + ' <div style="float: left">'
289 + ' <input type="text" name="hobbies[' + i + '][text]" value="" size="30"/>'
290 + ' <a href="javascript:removeHobby(' + i + ')">'
291 + ' <img src="images/icons/cross.gif" alt="cross" title="Supprimer cet élément"/>'
292 + ' </a>'
293 + ' </div>'
294 + ' </td>'
295 + '</tr>';
296
297 $('#hobby').before(html);
298 }
299
300 function removeHobby(id)
301 {
302 $('#hobby_' + id).remove();
303 }
304
305 // Addresses {{{1
306
307 function toggleAddress(id, val)
308 {
309 $('#addresses_' + id + '_grayed').toggle();
310 $('#addresses_' + id).toggle();
311 $('#addresses_' + id + '_cont').find('[name*=removed]').val(val);
312 checkCurrentAddress();
313 }
314
315 function checkCurrentAddress(id)
316 {
317 var hasCurrentAddress = id ? true : false;
318 var i = 0;
319 while ($('#addresses_' + i + '_cont').length != 0) {
320 if ($('#addresses_' + i + '_cont').find('[name*=removed]').val() == 1) {
321 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', false);
322 }
323 if (!hasCurrentAddress && $('#addresses_' + i + '_cont').find('[name*=current]:checked').length != 0) {
324 hasCurrentAddress = true;
325 } else {
326 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', false);
327 }
328 i++;
329 }
330 if (!hasCurrentAddress) {
331 i = 0;
332 while ($('#addresses_' + i + '_cont').length != 0) {
333 if ($('#addresses_' + i + '_cont').find('[name*=removed]').val() == 0) {
334 $('#addresses_' + i + '_cont').find('[name*=current]').attr('checked', 'checked');
335 break;
336 }
337 i++;
338 }
339 }
340 if (id) {
341 $('#addresses_' + id + '_cont').find('[name*=current]').attr('checked', 'checked');
342 }
343 }
344
345 function addAddress(pid)
346 {
347 var i = 0;
348 while ($('#addresses_' + i + '_cont').length != 0) {
349 i++;
350 }
351 $('#add_address').before('<div id="addresses_' + i + '_cont"></div>');
352 $('#addresses_' + i + '_cont').updateHtml('profile/ajax/address/' + i + '/' + pid,
353 checkCurrentAddress());
354 }
355
356 function addressChanged(prefid, color)
357 {
358 var text = $('#' + prefid + '_cont').find("[name*='[text]']").val();
359 $('#' + prefid + '_cont').find('[name*=changed]').val("1");
360 $.xpost('map_url/', { text:text, color:color }, function(data) {
361 if (data) {
362 $('#' + prefid + '_static_map_url').show();
363 $('#' + prefid + '_static_map_url').find('img').attr('src', data);
364 } else {
365 $('#' + prefid + '_static_map_url').hide();
366 $('#' + prefid + '_geocoding_removal').find('[name*=request]:checkbox').removeAttr('checked');
367 }
368 });
369 }
370
371 function deleteGeocoding(prefid)
372 {
373 if($('#' + prefid + '_geocoding_removal').find('[name*=request]:checkbox:checked').length == 0) {
374 return true;
375 }
376
377 return confirm(
378 "La localisation de l'adresse sert à deux choses : te placer dans "
379 + "le planisphère et te faire apparaître dans la recherche avancée par "
380 + "pays, région, département, ville... La supprimer t'en fera disparaître. "
381 + "\nIl ne faut le faire que si cette localisation "
382 + "est réellement erronée. Avant de supprimer cette localisation, l'équipe de "
383 + "Polytechnique.org tentera de la réparer.\n\nConfirmes-tu ta "
384 + "demande de suppression de cette localisation ?");
385 }
386
387 // {{{1 Phones
388
389 function addTel(prefid, prefname, subField, mainField, mainId)
390 {
391 var i = 0;
392 var prefix = prefid + '_';
393 while ($('#' + prefix + i).length != 0) {
394 i++;
395 }
396 $('#' + prefix + 'add').before('<div id="' + prefix + i + '" style="clear: both; padding-top: 4px; padding-bottom: 4px"></div>');
397 $('#' + prefix + i).updateHtml('profile/ajax/tel/' + prefid + '/' + prefname + '/' + i + '/' + subField + '/' + mainField + '/' + mainId);
398 }
399
400 function removeTel(prefname, prefid, id)
401 {
402 var total = 0;
403 while ($('#' + prefid + '_' + total).length != 0) {
404 ++total;
405 }
406 $('#' + prefid + '_' + id).remove();
407 for (var i = parseInt(id) + 1; i < total; ++i) {
408 renumberPhone(prefname, prefid, i);
409 }
410 }
411
412 function addPhoneComment(id)
413 {
414 $('#' + id + '_comment').show();
415 $('#' + id + '_addComment').hide();
416 }
417
418 function removePhoneComment(id, pref)
419 {
420 $('#' + id + '_comment').hide();
421 $('#' + id + '_comment').find("[name='" + pref + "[comment]']").val('');
422 $('#' + id + '_addComment').show();
423 }
424
425 function renumberPhone(prefname, prefid, i)
426 {
427 var telid = i - 1;
428 var telprefOld = prefname + '[' + i + ']';
429 var telpref = prefname + '[' + telid + ']';
430 var idOld = prefid + '_' + i;
431 var id = prefid + '_' + telid;
432
433 $('#' + idOld).attr('id', id);
434 $('#' + id).find('div.titre').html('N°' + i);
435 $('#' + id).find('a.removeTel').attr('href', 'javascript:removeTel(\'' + prefname + '\',\'' + prefid + '\',' + telid + ')');
436 $('#' + id).find('select').attr('name', telpref + '[type]');
437 $('#' + id).find("[name='" + telprefOld + "[display]']").attr('name', telpref + '[display]');
438 $('#' + id).find("[name='" + telprefOld + "[comment]']").attr('name', telpref + '[comment]');
439 $('#' + id).find('a.removePhoneComment').attr('href', 'javascript:removePhoneComment(' + id + ',' + telpref + ')');
440 $('#' + id).find('#' + idOld + '_addComment').attr('id', id + '_addComment');
441 $('#' + id).find('#' + id + '_addComment').attr('href', 'javascript:addPhoneComment(' + id + ')');
442 $('#' + id).find('#' + idOld + '_comment').attr('id', id + '_comment');
443 $('#' + id).find("[name='" + telprefOld + "[pub]']").attr('name', telpref + '[pub]');
444 }
445
446 // {{{1 Groups
447
448 function addBinet()
449 {
450 var id = $('#binets_table').find('[name=binets_sel]').val();
451 var text = $('#binets_table').find('select option:selected').text();
452 var html = '<tr id="binets_' + id + '">'
453 + ' <td>'
454 + ' <input type="hidden" name="binets[' + id + ']" value="' + text + '" />'
455 + ' </td>'
456 + ' <td>'
457 + ' <div style="float: left; width: 70%">'
458 + text
459 + ' </div>'
460 + ' <a href="javascript:removeElement(\'binets\',' + id + ')">'
461 + ' <img src="images/icons/cross.gif" alt="cross" title="Supprimer ce groupe" />'
462 + ' </a>'
463 + ' </td>'
464 + '</tr>';
465 $('#binets_table').after(html);
466 updateElement('binets');
467 }
468
469 function updateGroupSubLink()
470 {
471 var href = $('[name*=groupesx_sub]').val() ? $('[name*=groupesx_sub]').val() : 'http://www.polytechnique.net';
472 $('#groupesx_sub').attr('href', href);
473 }
474
475 // {{{1 Medals
476
477 function prepareMedal(i)
478 {
479 getMedalName($('#medal_' + i).find('[name="medals[' + i + '][id]"]').val());
480 buildGrade(i);
481 }
482
483 function updateMedal()
484 {
485 var val = $('#medals').find('[name*=medal_sel]').val();
486
487 if ((multiple[val] && subgrades[val]) || $('.medal_name_' + val).length == 0) {
488 $('#medal_add').show();
489 } else {
490 $('#medal_add').hide();
491 }
492 }
493
494 function getMedalName(id)
495 {
496 $('.medal_name_' + id).html(names[id]);
497 }
498
499 function buildGrade(i)
500 {
501 var id = $('#medal_' + i).find('[name="medals[' + i + '][id]"]').val();
502 var current = $('#medal_' + i).find('[name="medals_' + i + '_grade"]').val();
503 var subg = subgrades[id];
504 var obj = $('#medal_grade_' + i);
505 if (!subg) {
506 obj.prepend('<input type="hidden" name="medals[' + i + '][grade]" value="0" />');
507 } else {
508 var html = 'Agrafe : <select name="medals[' + i + '][grade]">';
509 html += '<option value="0">Non précisée</option>';
510 for (var grade = 0; grade < subg.length; ++grade) {
511 html += '<option value="' + subg[grade][0] + '"';
512 if (subg[grade][0] == current) {
513 html += ' selected="selected"';
514 }
515 html += '>' + subg[grade][1] + '</option>';
516 }
517 html += '</select>';
518 obj.prepend(html);
519 }
520 }
521
522 function makeAddProcess(i, id)
523 {
524 return function(data)
525 {
526 $('#medals').after(data);
527 updateMedal();
528 getMedalName(id);
529 buildGrade(i, 0);
530 };
531 }
532
533 function addMedal()
534 {
535 var i = 0;
536 while ($('#medal_' + i).length != 0) {
537 ++i;
538 }
539
540 var id = $('#medals').find('[name=medal_sel]').val();
541 $.xget('profile/ajax/medal/' + i + '/' + id, makeAddProcess(i, id));
542 }
543
544 function removeMedal(id)
545 {
546 var total = 0;
547 while ($('#medal_' + total).length != 0) {
548 ++total;
549 }
550 $('#medal_' + id).remove();
551 for (var i = parseInt(id) + 1; i < total; ++i) {
552 renumberMedal(i);
553 }
554 updateMedal();
555 }
556
557 function renumberMedal(i)
558 {
559 var new_i = i - 1;
560
561 $('#medal_' + i).attr('id', 'medal_' + new_i);
562 $('#medal_grade_' + i).attr('id', 'medal_grade_' + new_i);
563 $('#medal_grade_' + new_i).find("[name='medals_" + i + "_grade']").attr('name', 'medals_' + new_i + '_grade');
564 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][id]']").attr('name', 'medals[' + new_i + '][id]');
565 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][valid]']").attr('name', 'medals[' + new_i + '][valid]');
566 $('#medal_grade_' + new_i).find("[name='medals[" + i + "][grade]']").attr('name', 'medals[' + new_i + '][grade]');
567 $('#medal_' + new_i).find('a.removeMedal').attr('href', 'javascript:removeMedal(' + new_i + ')');
568 }
569
570 // Jobs {{{1
571
572 function removeJob(id, pref)
573 {
574 $('#' + id + '_cont').hide();
575 if ($('#' + id).find("[name='" + pref + "[new]']").val() == '0') {
576 $('#' + id + '_grayed').show();
577 $('#' + id + '_grayed_name').html($('#' + id).find("[name='" + pref + "[name]']").val());
578 }
579 $('#' + id).find("[name='" + pref + "[removed]']").val('1');
580 }
581
582 function restoreJob(id, pref)
583 {
584 $('#' + id + '_cont').show();
585 $('#' + id + '_grayed').hide();
586 $('#' + id).find("[name='" + pref + "[removed]']").val('0');
587 }
588
589 function makeAddJob(id)
590 {
591 return function(data)
592 {
593 $('#add_job').before(data);
594 registerEnterpriseAutocomplete(id);
595 };
596 }
597
598 function addJob(pid)
599 {
600 var i = 0;
601 while ($('#jobs_' + i).length != 0) {
602 ++i;
603 }
604 $.xget('profile/ajax/job/' + i + '/' + pid, makeAddJob(i));
605 }
606
607 function addEntreprise(id)
608 {
609 $('.entreprise_' + id).toggle();
610 }
611
612 /**
613 * Adds a job term in job profile page
614 * @param jobid id of profile's job among his different jobs
615 * @param jtid id of job term to add
616 * @param full_name full text of job term
617 * @return false if the term already exist for this job, true otherwise
618 */
619 function addJobTerm(jobid, jtid, full_name)
620 {
621 var termid = 0;
622 var parentpath;
623 var formvarname;
624 if (jobid < 0) {
625 parentpath = '';
626 jobid = '';
627 formvarname = 'terms';
628 } else {
629 parentpath = '#jobs_'+jobid+' ';
630 formvarname = 'jobs['+jobid+'][terms]';
631 }
632 var lastJobTerm = $(parentpath + '.jobs_term:last');
633 if (lastJobTerm.length != 0) {
634 termid = parseInt(lastJobTerm.children('input').attr('name').replace(/^(jobs\[[0-9]+\]\[terms\]|terms)\[([0-9]+)\]\[jtid\]/, '$2')) + 1;
635 if ($('#job'+jobid+'_term'+jtid).length > 0) {
636 return false;
637 }
638 }
639 var newdiv = '<div class="jobs_term" id="job'+jobid+'_term'+jtid+'">'+
640 '<span>'+full_name+'</span>'+
641 '<input type="hidden" name="'+formvarname+'['+termid+'][jtid]" value="'+jtid+'" />'+
642 '<img title="Retirer ce mot-clef" alt="retirer" src="images/icons/cross.gif" />'+
643 '</div>';
644 if (lastJobTerm.length == 0) {
645 $(parentpath + '.jobs_terms').prepend(newdiv);
646 } else {
647 lastJobTerm.after(newdiv);
648 }
649 $('#job'+jobid+'_term'+jtid+' img').css('cursor','pointer').click(removeJobTerm);
650 return true;
651 }
652
653 /**
654 * Remove a job term in job profile page.
655 * Must be called from a button in a div containing the term
656 */
657 function removeJobTerm()
658 {
659 $(this).parent().remove();
660 }
661
662 /**
663 * Function called when a job term has been selected from autocompletion
664 * in search
665 * @param li is the list item (<li>) that has been clicked
666 * The context is the jsquery autocomplete object.
667 */
668 function selectJobTerm(id, value, jobid)
669 {
670 if (id >= 0) {
671 addJobTerm(jobid, id, value);
672 }
673 var search_input;
674 if (jobid < 0) {
675 search_input = $('.term_search')[0];
676 } else {
677 search_input = $('#jobs_' + jobid + ' .term_search')[0];
678 }
679 if (id >= 0) {
680 search_input.value = '';
681 search_input.focus();
682 } else {
683 search_input.value = value.replace(/%$/, '');
684 toggleJobTermsTree(jobid, ''); // Use given value instead
685 }
686 }
687
688 /**
689 * Function to show or hide a terms tree in job edition
690 * @param jobid is the id of the job currently edited
691 */
692 function toggleJobTermsTree(jobid, textfilter)
693 {
694 $('#term_tree_comment').toggle();
695
696 var treepath;
697 if (jobid < 0) {
698 treepath = '';
699 } else {
700 treepath = '#jobs_'+jobid+' ';
701 }
702 treepath += '.term_tree';
703 if ($(treepath + ' ul').length > 0) {
704 $(treepath).empty().removeClass().addClass('term_tree');
705 if (!textfilter) {
706 return;
707 }
708 }
709 createJobTermsTree(treepath, 'profile/ajax/tree/jobterms/all', 'job' + jobid, 'chooseJobTerm', textfilter);
710 }
711
712 /**
713 * Function called when a job term is chosen from terms tree
714 * @param treeid is the full id of the tree (must look like job3)
715 * @param jtid is the id of the job term chosen
716 * @param fullname is the complete name (understandable without context) of the term
717 */
718 function chooseJobTerm(treeid, jtid, fullname)
719 {
720 addJobTerm(treeid.replace(/^job(.*)$/, '$1'), jtid, fullname);
721 }
722
723 // {{{1 Skills
724
725 function addSkill(cat)
726 {
727 var val = $('#' + cat + '_table').find('[name=' + cat + '_sel]').val();
728 var text = $('#' + cat + '_table').find('[name=' + cat + '_sel] :selected').text();
729 $.xget('profile/ajax/skill/' + cat + '/' + val,
730 function(data) {
731 $('#' + cat).append(data);
732 $('#' + cat + '_' + val + '_title').text(text);
733 updateElement(cat);
734 });
735 }
736
737 // {{{1 Mentor
738
739 function addCountry()
740 {
741 var val = $('#countries_table').find('[name=countries_sel] :selected').val();
742 var text = $('#countries_table').find('[name=countries_sel] :selected').text();
743 var html = '<div id="countries_' + val + '" style="clear: both; margin-bottom: 0.7em">'
744 + ' <a href="javascript:removeElement(\'countries\',\'' + val + '\')" style="display: block; float:right">'
745 + ' <img src="images/icons/cross.gif" alt="" title="Supprimer ce pays" />'
746 + ' </a>'
747 + ' <div style="float: left; width: 50%">' + text + '</div>'
748 + ' <input type="hidden" name="countries[' + val + ']" value="' + text + '" />'
749 + '</div>';
750 $('#countries').append(html);
751 updateElement('countries');
752 }
753
754 function registerEnterpriseAutocomplete(id)
755 {
756 $('.enterprise_name').each(function() {
757 if (id == -1 || this.name == "jobs[" + id + "][name]") {
758 $(this).autocomplete({
759 source: $.plURL('search/autocomplete/entreprise/') + this.name,
760 change: function(event, ui) {
761 if (ui.item != null && ui.item.field != null) {
762 $(this).val(ui.item.field);
763 }
764 }
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: