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