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