muzich.js 64KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. /*
  2. * Scripts de Muzi.ch
  3. * Rédigé et propriété de Sevajol Bastien (http://www.bux.fr) sauf si mention
  4. * contraire sur la fonction.
  5. *
  6. */
  7. // Messages flashs
  8. var myMessages = ['info','warning','error','success']; // define the messages types
  9. function hideAllMessages()
  10. {
  11. var messagesHeights = new Array(); // this array will store height for each
  12. for (i=0; i<myMessages.length; i++)
  13. {
  14. messagesHeights[i] = $('.' + myMessages[i]).outerHeight();
  15. $('.' + myMessages[i]).css('top', -messagesHeights[i]); //move element outside viewport
  16. }
  17. }
  18. $(document).ready(function(){
  19. // Initially, hide them all
  20. hideAllMessages();
  21. $('.message').animate({top:"0"}, 500);
  22. // When message is clicked, hide it
  23. $('.message a.message-close').click(function(){
  24. $(this).parent('.message').animate({top: -$(this).outerHeight()-50}, 700);
  25. return false;
  26. });
  27. });
  28. function findKeyWithValue(arrayt, value)
  29. {
  30. for(i in arrayt)
  31. {
  32. if (arrayt[i] == value)
  33. {
  34. return i;
  35. }
  36. }
  37. return "";
  38. }
  39. function json_to_array(json_string)
  40. {
  41. if (json_string.length)
  42. {
  43. return eval("(" + json_string + ")");
  44. }
  45. return new Array();
  46. }
  47. function strpos (haystack, needle, offset) {
  48. // Finds position of first occurrence of a string within another
  49. //
  50. // version: 1109.2015
  51. // discuss at: http://phpjs.org/functions/strpos // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  52. // + improved by: Onno Marsman
  53. // + bugfixed by: Daniel Esteban
  54. // + improved by: Brett Zamir (http://brett-zamir.me)
  55. // * example 1: strpos('Kevin van Zonneveld', 'e', 5); // * returns 1: 14
  56. var i = (haystack + '').indexOf(needle, (offset || 0));
  57. return i === -1 ? false : i;
  58. }
  59. /**
  60. * Converts the given data structure to a JSON string.
  61. * Argument: arr - The data structure that must be converted to JSON
  62. * Example: var json_string = array2json(['e', {pluribus: 'unum'}]);
  63. * var json = array2json({"success":"Sweet","failure":false,"empty_array":[],"numbers":[1,2,3],"info":{"name":"Binny","site":"http:\/\/www.openjs.com\/"}});
  64. * http://www.openjs.com/scripts/data/json_encode.php
  65. */
  66. function array2json(arr) {
  67. var parts = [];
  68. var is_list = (Object.prototype.toString.apply(arr) === '[object Array]');
  69. for(var key in arr) {
  70. var value = arr[key];
  71. if(typeof value == "object") { //Custom handling for arrays
  72. if(is_list) parts.push(array2json(value)); /* :RECURSION: */
  73. else parts[key] = array2json(value); /* :RECURSION: */
  74. } else {
  75. var str = "";
  76. if(!is_list) str = '"' + key + '":';
  77. //Custom handling for multiple data types
  78. if(typeof value == "number") str += value; //Numbers
  79. else if(value === false) str += 'false'; //The booleans
  80. else if(value === true) str += 'true';
  81. else str += '"' + value + '"'; //All other things
  82. // :TODO: Is there any more datatype we should be in the lookout for? (Functions?)
  83. parts.push(str);
  84. }
  85. }
  86. var json = parts.join(",");
  87. if(is_list) return '[' + json + ']';//Return numerical JSON
  88. return '{' + json + '}';//Return associative JSON
  89. }
  90. function isInteger(s) {
  91. return (s.toString().search(/^-?[0-9]+$/) == 0);
  92. }
  93. function inArray(array, p_val) {
  94. var l = array.length;
  95. for(var i = 0; i < l; i++) {
  96. if(array[i] == p_val) {
  97. return true;
  98. }
  99. }
  100. return false;
  101. }
  102. if(typeof(String.prototype.trim) === "undefined")
  103. {
  104. String.prototype.trim = function()
  105. {
  106. return String(this).replace(/^\s+|\s+$/g, '');
  107. };
  108. }
  109. function str_replace (search, replace, subject, count) {
  110. // Replaces all occurrences of search in haystack with replace
  111. //
  112. // version: 1109.2015
  113. // discuss at: http://phpjs.org/functions/str_replace // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  114. // + improved by: Gabriel Paderni
  115. // + improved by: Philip Peterson
  116. // + improved by: Simon Willison (http://simonwillison.net)
  117. // + revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) // + bugfixed by: Anton Ongson
  118. // + input by: Onno Marsman
  119. // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  120. // + tweaked by: Onno Marsman
  121. // + input by: Brett Zamir (http://brett-zamir.me) // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  122. // + input by: Oleg Eremeev
  123. // + improved by: Brett Zamir (http://brett-zamir.me)
  124. // + bugfixed by: Oleg Eremeev
  125. // % note 1: The count parameter must be passed as a string in order // % note 1: to find a global variable in which the result will be given
  126. // * example 1: str_replace(' ', '.', 'Kevin van Zonneveld');
  127. // * returns 1: 'Kevin.van.Zonneveld'
  128. // * example 2: str_replace(['{name}', 'l'], ['hello', 'm'], '{name}, lars');
  129. // * returns 2: 'hemmo, mars' var i = 0,
  130. j = 0,
  131. temp = '',
  132. repl = '',
  133. sl = 0, fl = 0,
  134. f = [].concat(search),
  135. r = [].concat(replace),
  136. s = subject,
  137. ra = Object.prototype.toString.call(r) === '[object Array]', sa = Object.prototype.toString.call(s) === '[object Array]';
  138. s = [].concat(s);
  139. if (count) {
  140. this.window[count] = 0;
  141. }
  142. for (i = 0, sl = s.length; i < sl; i++) {
  143. if (s[i] === '') {
  144. continue;
  145. }for (j = 0, fl = f.length; j < fl; j++) {
  146. temp = s[i] + '';
  147. repl = ra ? (r[j] !== undefined ? r[j] : '') : r[0];
  148. s[i] = (temp).split(f[j]).join(repl);
  149. if (count && s[i] !== temp) {this.window[count] += (temp.length - s[i].length) / f[j].length;
  150. }
  151. }
  152. }
  153. return sa ? s : s[0];
  154. }
  155. function explode (delimiter, string, limit) {
  156. // Splits a string on string separator and return array of components. If limit is positive only limit number of components is returned. If limit is negative all components except the last abs(limit) are returned.
  157. //
  158. // version: 1109.2015
  159. // discuss at: http://phpjs.org/functions/explode // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  160. // + improved by: kenneth
  161. // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
  162. // + improved by: d3x
  163. // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // * example 1: explode(' ', 'Kevin van Zonneveld');
  164. // * returns 1: {0: 'Kevin', 1: 'van', 2: 'Zonneveld'}
  165. // * example 2: explode('=', 'a=bc=d', 2);
  166. // * returns 2: ['a', 'bc=d']
  167. var emptyArray = {0: ''
  168. };
  169. // third argument is not required
  170. if (arguments.length < 2 || typeof arguments[0] == 'undefined' || typeof arguments[1] == 'undefined') {return null;
  171. }
  172. if (delimiter === '' || delimiter === false || delimiter === null) {
  173. return false;}
  174. if (typeof delimiter == 'function' || typeof delimiter == 'object' || typeof string == 'function' || typeof string == 'object') {
  175. return emptyArray;
  176. }
  177. if (delimiter === true) {
  178. delimiter = '1';
  179. }
  180. if (!limit) {
  181. return string.toString().split(delimiter.toString());
  182. }
  183. // support for limit argument
  184. var splitted = string.toString().split(delimiter.toString());var partA = splitted.splice(0, limit - 1);
  185. var partB = splitted.join(delimiter.toString());
  186. partA.push(partB);
  187. return partA;
  188. }
  189. // fonction de nettoyage des tags
  190. function remove_tags(form_name)
  191. {
  192. //tagsAddeds[form_name] = new Array();
  193. $('form[name="'+form_name+'"] ul.tagbox li.tag').remove();
  194. $('form[name="'+form_name+'"] input.tagBox_tags_ids').val('');
  195. }
  196. $(document).ready(function(){
  197. // Controle du focus sur la page
  198. function onBlur() {
  199. document.body.className = 'blurred';
  200. }
  201. function onFocus(){
  202. document.body.className = 'focused';
  203. do_action_body_focused();
  204. }
  205. if (/*@cc_on!@*/false) { // check for Internet Explorer
  206. document.onfocusin = onFocus;
  207. document.onfocusout = onBlur;
  208. } else {
  209. window.onfocus = onFocus;
  210. window.onblur = onBlur;
  211. }
  212. // Bouton de personalisation du filtre
  213. // Aucun tags
  214. $('.tags_prompt input.clear, a.filter_clear_url').live("click", function(){
  215. $('img.elements_more_loader').show();
  216. $('ul.elements').html('');
  217. var form = $('form[name="search"]');
  218. remove_tags(form.attr('name'));
  219. form.submit();
  220. });
  221. // tags préférés
  222. $('.tags_prompt input.mytags').live("click", function(){
  223. $('img.elements_more_loader').show();
  224. $('ul.elements').html('');
  225. var form = $(this).parents('form[name="search"]');
  226. $.getJSON(url_get_favorites_tags, function(response) {
  227. if (response.status == 'mustbeconnected')
  228. {
  229. $(location).attr('href', url_index);
  230. }
  231. remove_tags(form.attr('name'));
  232. // if (tags.length)
  233. // {
  234. var inputTag = $("div#tags_prompt_"+form.attr('name')+" input.form-default-value-processed");
  235. for (i in response.tags)
  236. {
  237. $('input#tags_selected_tag_'+form.attr('name')).val(i);
  238. inputTag.val(response.tags[i]);
  239. // Et on execute l'évènement selectTag de l'input
  240. inputTag.trigger("selectTag");
  241. }
  242. form.submit();
  243. //}
  244. });
  245. });
  246. // Tag cliqué dans la liste d'éléments
  247. $('ul.element_tags li a.element_tag').live('click', function(){
  248. // Si il y a une liste de tags (comme sur la page favoris, profil)
  249. var id;
  250. if ($('ul#favorite_tags').length)
  251. {
  252. id = str_replace('element_tag_', '', $(this).attr('id'));
  253. var link = $('a#filtering_tag_'+id);
  254. list_tag_clicked(link, true);
  255. }
  256. if ($('form[name="search"]').length)
  257. {
  258. $('img.elements_more_loader').show();
  259. $('ul.elements').html('');
  260. var form = $('form[name="search"]');
  261. id = str_replace('element_tag_', '', $(this).attr('id'));
  262. remove_tags('search');
  263. var inputTag = $("div#tags_prompt_search input.form-default-value-processed");
  264. $('input#tags_selected_tag_search').val(id);
  265. inputTag.val($(this).html());
  266. inputTag.trigger("selectTag");
  267. form.submit();
  268. }
  269. });
  270. function element_last_opened(li)
  271. {
  272. $('li.element').removeClass('shadows');
  273. li.addClass('shadows');
  274. }
  275. // Affichage un/des embed
  276. // 1328283150_media-playback-start.png
  277. // 1328283201_emblem-symbolic-link.png
  278. $('a.element_embed_open_link').live("click", function(){
  279. var li = $(this).parents('li.element');
  280. element_last_opened(li);
  281. li.find('a.element_embed_close_link').show();
  282. li.find('a.element_embed_open_link_text').hide();
  283. li.find('div.element_embed').show();
  284. return false;
  285. });
  286. $('a.element_name_embed_open_link').live("click", function(){
  287. var li = $(this).parents('li.element');
  288. element_last_opened(li);
  289. li.find('a.element_embed_close_link').show();
  290. li.find('a.element_embed_open_link_text').hide();
  291. li.find('div.element_embed').show();
  292. return false;
  293. });
  294. // Fermeture du embed si demandé
  295. $('a.element_embed_close_link').live("click", function(){
  296. var li = $(this).parents('li.element');
  297. li.removeClass('shadows');
  298. li.find('div.element_embed').hide();
  299. li.find('a.element_embed_open_link_text').show();
  300. $(this).hide();
  301. return false;
  302. });
  303. // Affichage du "play" ou du "open" (image png)
  304. $('li.element a.a_thumbnail, li.element img.open, li.element img.play').live({
  305. mouseenter:
  306. function()
  307. {
  308. var td = $(this).parent('td');
  309. var a = td.find('a.a_thumbnail');
  310. if (a.hasClass('embed'))
  311. {
  312. td.find('img.play').show();
  313. }
  314. else
  315. {
  316. td.find('img.open').show();
  317. }
  318. },
  319. mouseleave:
  320. function()
  321. {
  322. var td = $(this).parent('td');
  323. var a = td.find('a.a_thumbnail');
  324. if (a.hasClass('embed'))
  325. {
  326. td.find('img.play').hide();
  327. }
  328. else
  329. {
  330. td.find('img.open').hide();
  331. }
  332. }
  333. }
  334. );
  335. // Mise en favoris
  336. $('a.favorite_link').live("click", function(){
  337. var link = $(this);
  338. // Pour ne pas attendre la fin du chargement ajax:
  339. var img = link.find('img');
  340. if (!link.hasClass('loading'))
  341. {
  342. if (img.attr('src') == '/bundles/muzichcore/img/favorite_bw.png')
  343. {
  344. img.attr('src', '/bundles/muzichcore/img/favorite.png');
  345. }
  346. else
  347. {
  348. img.attr('src', '/bundles/muzichcore/img/favorite_bw.png');
  349. }
  350. }
  351. link.addClass('loading');
  352. $.getJSON($(this).attr('href'), function(response) {
  353. if (response.status == 'mustbeconnected')
  354. {
  355. $(location).attr('href', url_index);
  356. }
  357. var img = link.find('img');
  358. link.attr('href', response.link_new_url);
  359. img.attr('src', response.img_new_src);
  360. img.attr('title', response.img_new_title);
  361. link.removeClass('loading');
  362. });
  363. return false;
  364. });
  365. // Affichage du bouton Modifier et Supprimer
  366. $('ul.elements li.element').live({
  367. mouseenter:
  368. function()
  369. {
  370. $(this).find('a.element_edit_link').show();
  371. $(this).find('a.element_remove_link').show();
  372. },
  373. mouseleave:
  374. function()
  375. {
  376. if (!$(this).find('a.element_edit_link').hasClass('mustBeDisplayed'))
  377. {
  378. $(this).find('a.element_edit_link').hide();
  379. }
  380. if (!$(this).find('a.element_remove_link').hasClass('mustBeDisplayed'))
  381. {
  382. $(this).find('a.element_remove_link').hide();
  383. }
  384. }
  385. }
  386. );
  387. // Plus d'éléments
  388. var last_id = null;
  389. $('a.elements_more').click(function(){
  390. var link = $(this);
  391. var last_element = $('ul.elements li.element:last-child');
  392. var id_last = str_replace('element_', '', last_element.attr('id'));
  393. var invertcolor = 0;
  394. if (last_element.hasClass('even'))
  395. {
  396. invertcolor = 1;
  397. }
  398. $('img.elements_more_loader').show();
  399. var url = link.attr('href')+'/'+id_last+'/'+invertcolor;
  400. // Cas exeptionel si on se trouve sur la global_search
  401. if ($('div#results_search_form').length)
  402. {
  403. url = link.attr('href')+id_last+'/'+$('div#results_search_form form input[type="text"]').val();
  404. }
  405. var old_form_action = $('form[name="search"]').attr('action');
  406. $('form[name="search"]').attr('action', url);
  407. $.ajax({
  408. type: 'POST',
  409. url: url,
  410. data: $('form[name="search"]').serialize(),
  411. success: function(response) {
  412. if (response.status == 'mustbeconnected')
  413. {
  414. $(location).attr('href', url_index);
  415. }
  416. if (response.count)
  417. {
  418. $('ul.elements').append(response.html);
  419. $('img.elements_more_loader').hide();
  420. recolorize_element_list();
  421. }
  422. if (response.end || response.count < 1)
  423. {
  424. $('img.elements_more_loader').hide();
  425. $('ul.elements').after('<div class="no_elements"><p class="no-elements">'+
  426. response.message+'</p></div>');
  427. link.hide();
  428. }
  429. },
  430. dataType: "json"
  431. });
  432. $('form[name="search"]').attr('action', old_form_action);
  433. // $.getJSON(url, function(response) {
  434. // if (response.status == 'mustbeconnected')
  435. // {
  436. // $(location).attr('href', url_index);
  437. // }
  438. //
  439. // if (response.count)
  440. // {
  441. // $('ul.elements').append(response.html);
  442. // $('img.elements_more_loader').hide();
  443. // recolorize_element_list();
  444. // }
  445. //
  446. // if (response.end || response.count < 1)
  447. // {
  448. // $('img.elements_more_loader').hide();
  449. // $('ul.elements').after('<div class="no_elements"><p class="no-elements">'+
  450. // response.message+'</p></div>');
  451. // link.hide();
  452. // }
  453. // });
  454. return false;
  455. });
  456. tag_box_input_value = $('ul.tagbox input[type="text"]').val();
  457. // Filtre et affichage éléments ajax
  458. $('form[name="search"] input[type="submit"]').click(function(){
  459. $('ul.elements').html('');
  460. $('div.no_elements').hide();
  461. $('img.elements_more_loader').show();
  462. });
  463. $('form[name="search"]').ajaxForm(function(response) {
  464. if (response.status == 'mustbeconnected')
  465. {
  466. $(location).attr('href', url_index);
  467. }
  468. $('ul.elements').html(response.html);
  469. if (response.count)
  470. {
  471. $('img.elements_more_loader').hide();
  472. $('span.elements_more').show();
  473. $('a.elements_more').show();
  474. }
  475. if (response.count < 1)
  476. {
  477. $('img.elements_more_loader').hide();
  478. $('ul.elements').after('<div class="no_elements"><p class="no-elements">'+
  479. response.message+'</p></div>');
  480. $('a.elements_more').hide()
  481. ;
  482. }
  483. $('ul.tagbox input[type="text"]').val($('ul.tagbox input[type="text"]').val());
  484. });
  485. // Suppression d'un element
  486. $('a.element_remove_link').jConfirmAction({
  487. question : string_element_delete_confirm_sentence,
  488. yesAnswer : string_element_delete_confirm_yes,
  489. cancelAnswer : string_element_delete_confirm_no,
  490. onYes: function(link){
  491. var li = link.parents('li.element');
  492. li.find('img.element_loader').show();
  493. $.getJSON(link.attr('href'), function(response){
  494. if (response.status == 'mustbeconnected')
  495. {
  496. $(location).attr('href', url_index);
  497. }
  498. if (response.status == 'success')
  499. {
  500. li.remove();
  501. }
  502. else
  503. {
  504. li.find('img.element_loader').hide();
  505. }
  506. });
  507. return false;
  508. },
  509. onOpen: function(link){
  510. var li = link.parents('li.element');
  511. li.find('a.element_edit_link').addClass('mustBeDisplayed');
  512. li.find('a.element_remove_link').addClass('mustBeDisplayed');
  513. },
  514. onClose: function(link){
  515. var li = link.parents('li.element');
  516. li.find('a.element_edit_link').removeClass('mustBeDisplayed');
  517. li.find('a.element_remove_link').removeClass('mustBeDisplayed');
  518. li.find('a.element_edit_link').hide();
  519. li.find('a.element_remove_link').hide();
  520. }
  521. });
  522. var elements_edited = new Array();
  523. // Ouverture du formulaire de modification
  524. $('a.element_edit_link').live('click', function(){
  525. var link = $(this);
  526. var li = link.parents('li.element');
  527. // On garde en mémoire l'élément édité en cas d'annulation
  528. elements_edited[li.attr('id')] = li.html();
  529. var div_loader = li.find('div.loader');
  530. li.html(div_loader);
  531. li.find('img.element_loader').show();
  532. $.getJSON($(this).attr('href'), function(response) {
  533. if (response.status == 'mustbeconnected')
  534. {
  535. $(location).attr('href', url_index);
  536. }
  537. // On prépare le tagBox
  538. li.html(response.html);
  539. // Pour le click sur l'input de saisie de tag
  540. li.find('ul.tagbox li.input input[type="text"]').formDefaults();
  541. var options = new Array();
  542. options.form_name = response.form_name;
  543. options.tag_init = response.tags;
  544. ajax_query_timestamp = null;
  545. $("#tags_prompt_list_"+response.form_name).tagBox(options);
  546. // On rend ce formulaire ajaxFormable
  547. $('form[name="'+response.form_name+'"] input[type="submit"]').live('click', function(){
  548. var li = $(this).parents('li.element');
  549. li.prepend(div_loader);
  550. li.find('img.element_loader').show();
  551. });
  552. $('form[name="'+response.form_name+'"]').ajaxForm(function(response){
  553. if (response.status == 'mustbeconnected')
  554. {
  555. $(location).attr('href', url_index);
  556. }
  557. var li = $('li#'+response.dom_id);
  558. if (response.status == 'success')
  559. {
  560. li.html(response.html);
  561. delete(elements_edited[li.attr('id')]);
  562. }
  563. else if (response.status == 'error')
  564. {
  565. li.find('img.element_loader').hide();
  566. li.find('ul.error_list').remove();
  567. var ul_errors = $('<ul>').addClass('error_list');
  568. for (i in response.errors)
  569. {
  570. ul_errors.append($('<li>').append(response.errors[i]));
  571. }
  572. li.prepend(ul_errors);
  573. }
  574. });
  575. });
  576. return false;
  577. });
  578. // Annulation d'un formulaire de modification d'élément
  579. $('form.edit_element input.cancel_edit').live('click', function(){
  580. var li = $(this).parents('li.element');
  581. li.html(elements_edited[li.attr('id')]);
  582. delete(elements_edited[li.attr('id')]);
  583. });
  584. ////////////////// TAG PROMPT ///////////////
  585. var ajax_query_timestamp = null;
  586. // Les deux clicks ci-dessous permettent de faire disparaitre
  587. // la div de tags lorsque l'on clique ailleurs
  588. $('html').click(function() {
  589. if ($("div.search_tag_list").is(':visible'))
  590. {
  591. $("div.search_tag_list").hide();
  592. }
  593. });
  594. $("div.search_tag_list, div.search_tag_list a.more").live('click', function(event){
  595. event.stopPropagation();
  596. $("div.search_tag_list").show();
  597. });
  598. function autocomplete_tag(input, form_name)
  599. {
  600. // Il doit y avoir au moin un caractère
  601. if (input.val().length > 0)
  602. {
  603. // on met en variable l'input
  604. var inputTag = input;
  605. // On récupére la div de tags
  606. var divtags = $("#search_tag_"+form_name);
  607. // Si la fenêtre de tags est caché
  608. if (!divtags.is(':visible'))
  609. {
  610. // On la replace
  611. var position = input.position();
  612. divtags.css('left', Math.round(position.left) + 5);
  613. divtags.css('top', Math.round(position.top) + 28);
  614. // Et on l'affiche
  615. divtags.show();
  616. }
  617. // On affiche le loader
  618. $('#tag_loader_'+form_name).show();
  619. // On cache la liste de tags
  620. var search_tag_list = divtags.find('ul.search_tag_list');
  621. // On supprime les anciens li
  622. search_tag_list.find('li').remove();
  623. search_tag_list.hide();
  624. // Et on affiche une info
  625. var span_info = divtags.find('span.info');
  626. span_info.show();
  627. // TODO: multilingue !
  628. span_info.text(str_replace('%string_search%', input.val(), string_search_tag_title));
  629. // C'est en fonction du nb de resultats qu'il sera affiché
  630. divtags.find('a.more').hide();
  631. // On récupère le timestamp pour reconnaitre la dernière requête effectué
  632. ajax_query_timestamp = new Date().getTime();
  633. // Récupération des tags correspondants
  634. $.ajax({
  635. type: 'POST',
  636. url: url_search_tag+'/'+ajax_query_timestamp,
  637. dataType: 'json',
  638. data: {'string_search':input.val()},
  639. success: function(data) {
  640. if (data.status == 'mustbeconnected')
  641. {
  642. $(location).attr('href', url_index);
  643. }
  644. // Ce contrôle permet de ne pas continuer si une requete
  645. // ajax a été faite depuis.
  646. if (data.timestamp == ajax_query_timestamp)
  647. {
  648. var status = data.status;
  649. var tags = data.data;
  650. // Si on spécifie une erreur
  651. if (status == 'error')
  652. {
  653. // On l'affiche a l'utilisateur
  654. span_info.text(data.error);
  655. }
  656. // Si c'est un succés
  657. else if (status == 'success')
  658. {
  659. if (tags.length > 0)
  660. {
  661. var more = false;
  662. // Pour chaque tags retournés
  663. for (i in tags)
  664. {
  665. var tag_name = tags[i]['name'];
  666. var tag_id = tags[i]['id'];
  667. var t_string = tag_name
  668. // On construit un li
  669. var r_string = $.trim(input.val());
  670. var re = new RegExp(r_string, "i");
  671. t_string = t_string.replace(re,"<strong>" + r_string + "</strong>");
  672. var li_tag =
  673. $('<li>').append(
  674. $('<a>').attr('id','searched_tag_'+tag_id+'_'+tag_name)
  675. .attr('href', '#')
  676. // qui réagit quand on clique dessus
  677. .click(function(e){
  678. // On récupère le nom du tag
  679. var name = $(this).attr('id').substr(13,$(this).attr('id').length);
  680. name = name.substr(strpos(name, '_')+1, name.length);
  681. var id = $(this).attr('id').substr(13,$(this).attr('id').length);
  682. id = str_replace(name, '', id);
  683. id = str_replace('_', '', id);
  684. $('input#tags_selected_tag_'+form_name).val(id);
  685. inputTag.val(name);
  686. // Et on execute l'évènement selectTag de l'input
  687. inputTag.trigger("selectTag");
  688. // On cache la liste puisque le choix vient d'être fait
  689. divtags.hide();
  690. // On vide le champs de saisie du tag
  691. $('input.form-default-value-processed').val('');
  692. return false;
  693. })
  694. .append(t_string)
  695. );
  696. // Si on depasse les 30 tags
  697. if (i > 30)
  698. {
  699. more = true;
  700. // On le cache
  701. li_tag.hide();
  702. }
  703. // On ajout ce li a la liste
  704. search_tag_list.append(li_tag);
  705. }
  706. if (more)
  707. {
  708. divtags.find('a.more').show();
  709. }
  710. span_info.show();
  711. span_info.text(data.message);
  712. // Et on affiche la liste
  713. search_tag_list.show();
  714. }
  715. else
  716. {
  717. span_info.show();
  718. span_info.text(data.message);
  719. search_tag_list.show();
  720. // Dans ce cas ou aucun tag n'a été trouvé, la proposition
  721. // d'ajout s'affichecf en dessous
  722. //span_info.text("Aucun tag de trouvé pour \""+inputTag.val()+"\"");
  723. }
  724. // Si le tag ne semble pas connu en base
  725. if (!data.same_found)
  726. {
  727. li_tag =
  728. $('<li>').addClass('new').append(
  729. $('<a>').attr('href','#new#'+$.trim(input.val()))
  730. // qui réagit quand on clique dessus
  731. .click({
  732. inputTag: inputTag,
  733. form_name: form_name,
  734. divtags: divtags
  735. }, event_click_new_tag_proposition)
  736. .append($.trim(input.val()))
  737. );
  738. search_tag_list.append(li_tag);
  739. }
  740. }
  741. // On cache le loader
  742. $('#tag_loader_'+form_name).hide();
  743. }
  744. }
  745. });
  746. //$.getJSON(url_search_tag+'/'+input.val()+'/'+ajax_query_timestamp, );
  747. }
  748. }
  749. function event_click_new_tag_proposition(event)
  750. {
  751. form_add_open_dialog_for_new_tag($(event.target), event.data.inputTag, event.data.form_name, event.data.divtags);
  752. }
  753. function form_add_open_dialog_for_new_tag(link_add_tag, inputTag, form_name, divtags)
  754. {
  755. // Effet fade-in du fond opaque
  756. $('body').append($('<div>').attr('id', 'fade'));
  757. //Apparition du fond - .css({'filter' : 'alpha(opacity=80)'}) pour corriger les bogues de IE
  758. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  759. // En premier lieux on fait apparaître la fenêtre de confirmation
  760. var popup = $('<div>')
  761. .attr('id', 'add_tag')
  762. .addClass('popin_block')
  763. .css('width', '400px')
  764. //.append($('<h2>').append(string_tag_add_title))
  765. .append($('<form>')
  766. .attr('action', url_add_tag)
  767. .attr('method', 'post')
  768. .attr('name', 'add_tag')
  769. .ajaxForm(function(response) {
  770. /*
  771. *
  772. */
  773. if (response.status == 'mustbeconnected')
  774. {
  775. $(location).attr('href', url_index);
  776. }
  777. if (response.status == 'success')
  778. {
  779. var tag_id = response.tag_id;
  780. var tag_name = response.tag_name;
  781. $('input#tags_selected_tag_'+form_name).val(tag_id);
  782. inputTag.val(tag_name);
  783. // Et on execute l'évènement selectTag de l'input
  784. inputTag.trigger("selectTag");
  785. // On cache la liste puisque le choix vient d'être fait
  786. divtags.hide();
  787. link_add_tag.parents('div.search_tag_list').find('img.tag_loader').hide();
  788. $('#fade').fadeOut(400, function(){$('#fade').remove();});
  789. $('#add_tag').remove();
  790. }
  791. if (response.status == 'error')
  792. {
  793. $('form[name="add_tag"]').find('ul.error_list').remove();
  794. var ul_errors = $('<ul>').addClass('error_list');
  795. for (i in response.errors)
  796. {
  797. ul_errors.append($('<li>').append(response.errors[i]));
  798. }
  799. $('form[name="add_tag"]').prepend(ul_errors);
  800. }
  801. return false;
  802. })
  803. .append($('<div>').addClass('tag')
  804. .append($('<ul>')
  805. .append($('<li>').addClass('button')
  806. .append(link_add_tag.text()))))
  807. .append($('<p>').append(string_tag_add_text))
  808. .append($('<p>').append(string_tag_add_argument))
  809. .append($('<textarea>').attr('name', 'argument'))
  810. .append($('<div>').addClass('inputs')
  811. .append($('<input>')
  812. .attr('type', 'button')
  813. .attr('value', string_tag_add_inputs_cancel)
  814. .addClass('button')
  815. .click(function(){
  816. $('#fade').fadeOut(1000, function(){$('#fade').remove();});
  817. $('#add_tag').remove();
  818. return false;
  819. })
  820. )
  821. .append($('<input>')
  822. .attr('type', 'submit')
  823. .attr('value', string_tag_add_inputs_submit)
  824. .addClass('button')
  825. .click(function(){
  826. link_add_tag.parents('div.search_tag_list').find('img.tag_loader').show();
  827. })
  828. )
  829. .append($('<input>').attr('type', 'hidden').attr('name', 'tag_name').val(link_add_tag.text()))
  830. ))
  831. ;
  832. // Il faut ajouter le popup au dom avant de le positionner en css
  833. // Sinon la valeur height n'est pas encore calculable
  834. $('body').prepend(popup);
  835. //Récupération du margin, qui permettra de centrer la fenêtre - on ajuste de 80px en conformité avec le CSS
  836. var popMargTop = (popup.height() + 50) / 2;
  837. var popMargLeft = (popup.width() + 50) / 2;
  838. //On affecte le margin
  839. $(popup).css({
  840. 'margin-top' : -popMargTop,
  841. 'margin-left' : -popMargLeft
  842. });
  843. return false;
  844. }
  845. var last_keypress = 0;
  846. function check_timelaps_and_search(input, form_name, time_id, timed, info)
  847. {
  848. if (!timed)
  849. {
  850. // C'est une nouvelle touche (pas redirigé) on lui donne un id
  851. // et on met a jour l'id de la dernière pressé
  852. last_keypress = new Date().getTime();
  853. var this_time_id = last_keypress;
  854. }
  855. else
  856. {
  857. // Si elle a été redirigé, on met son id dans cette variable
  858. var this_time_id = time_id;
  859. }
  860. // C'est une touche redirigé dans le temps qui a été suivit d'une autre touche
  861. if (time_id != last_keypress && timed)
  862. {
  863. // elle disparait
  864. }
  865. else
  866. {
  867. //
  868. if ((new Date().getTime() - last_keypress) < 600 || timed == false)
  869. {
  870. // Si elle vient d'être tapé (timed == false) elle doit attendre (au cas ou une autre touche soit tapé)
  871. // Si c'est une redirigé qui n'a pas été remplacé par une nouvelle lettre
  872. // elle doit attendre au cas ou soit pressé.
  873. setTimeout(function(){check_timelaps_and_search(input, form_name, this_time_id, true, info)}, 700);
  874. }
  875. else
  876. {
  877. // il n'y a plus a attendre, on envoie la demande de tag.
  878. autocomplete_tag(input, form_name);
  879. }
  880. }
  881. }
  882. // Autocompletion de tags
  883. $("div.tags_prompt ul.tagbox li.input input").live('keypress', function(e){
  884. var form_name = $(this).parents('form').attr('name');
  885. var code = (e.keyCode ? e.keyCode : e.which);
  886. if ((e.which !== 0 && e.charCode !== 0) || (code == 8 || code == 46))
  887. {
  888. check_timelaps_and_search($(this), form_name, new Date().getTime(), false, $(this).val());
  889. }
  890. });
  891. // Un click sur ce lien affiche tout les tags cachés de la liste
  892. $('div.search_tag_list a.more').live('click', function(){
  893. jQuery.each( $(this).parent('div').find('ul.search_tag_list li') , function(){
  894. $(this).show();
  895. });
  896. $(this).hide();
  897. return false;
  898. });
  899. $('ul.tagbox li.input input[type="text"]').formDefaults();
  900. ////////////////// FIN TAG PROMPT ///////////////
  901. // Suppression d'un element
  902. $('a.group_remove_link').jConfirmAction({
  903. question : "Supprimer ce groupe ?",
  904. yesAnswer : "Oui",
  905. cancelAnswer : "Non",
  906. onYes: function(link){
  907. window.location = link.attr('href');
  908. return false;
  909. },
  910. onOpen: function(){},
  911. onClose: function(){}
  912. });
  913. // Selection Réseau global / Mon réseau
  914. $('div.select_network a').live('click', function(){
  915. var divSelect = $(this).parent('div');
  916. if ($(this).hasClass('all_network'))
  917. {
  918. divSelect.find('a.all_network').addClass('active');
  919. divSelect.find('a.my_network').removeClass('active');
  920. divSelect.find('select').val('network_public');
  921. }
  922. else
  923. {
  924. divSelect.find('a.my_network').addClass('active');
  925. divSelect.find('a.all_network').removeClass('active');
  926. divSelect.find('select').val('network_personal');
  927. }
  928. });
  929. function element_add_proceed_json_response(response)
  930. {
  931. if (response.status == 'success')
  932. {
  933. $('form[name="add"]').find('ul.error_list').remove();
  934. $('ul.elements').prepend(response.html);
  935. $('form[name="add"] input[type="text"]').val('');
  936. if ($('form[name="search"]').length)
  937. {
  938. $('form[name="search"]').slideDown();
  939. }
  940. remove_tags('add');
  941. recolorize_element_list();
  942. $('div#element_add_box').slideUp();
  943. if (response.groups.length)
  944. {
  945. // Des groupes sont proposés pour diffuser cet élément
  946. $('div#added_element_to_group').slideDown();
  947. for (i in response.groups)
  948. {
  949. var group = response.groups[i];
  950. $('ul#groups_to_add_element').html('');
  951. $('ul#groups_to_add_element')
  952. .append($('<li>')
  953. .append($('<a>')
  954. .addClass('added_element_add_to_group')
  955. .attr('href', group.url)
  956. .append(group.name)
  957. )
  958. )
  959. ;
  960. }
  961. }
  962. else
  963. {
  964. $('a#element_add_link').show();
  965. }
  966. form_add_hide_errors();
  967. return true;
  968. }
  969. else if (response.status == 'error')
  970. {
  971. form_add_display_errors(response.errors);
  972. $('#form_add_loader').hide();
  973. return false;
  974. }
  975. return false;
  976. }
  977. function form_add_hide_errors()
  978. {
  979. $('form[name="add"]').find('ul.error_list').remove();
  980. }
  981. // Affichage des erreurs lors de laprocédure d'ajout d'un élément
  982. function form_add_display_errors(errors)
  983. {
  984. $('form[name="add"]').find('ul.error_list').remove();
  985. var ul_errors = $('<ul>').addClass('error_list');
  986. for (i in errors)
  987. {
  988. ul_errors.append($('<li>').append(errors[i]));
  989. }
  990. $('form[name="add"]').prepend(ul_errors);
  991. }
  992. // Ajout d'un element #ajouter (première partie)
  993. // Click sur "ajouter" (l'url)
  994. $('a#form_add_check_url').click(function(){
  995. // On fait tourner notre gif loader
  996. $('img#form_add_loader').show();
  997. $.ajax({
  998. type: 'POST',
  999. url: url_datas_api,
  1000. data: {'url':$('input#element_add_url').val()},
  1001. success: function(response){
  1002. if (response.status == 'mustbeconnected')
  1003. {
  1004. $(location).attr('href', url_index);
  1005. }
  1006. if (response.status == 'success')
  1007. {
  1008. // On cache notre gif loader.
  1009. $('img#form_add_loader').hide();
  1010. // On commence par renseigner les champs si on a du concret
  1011. // name
  1012. if (response.name)
  1013. {
  1014. $('input#element_add_name').val(response.name);
  1015. }
  1016. // thumb
  1017. $('div#form_add_thumb img').attr('src', '/bundles/muzichcore/img/nothumb.png');
  1018. if (response.thumb)
  1019. {
  1020. $('div#form_add_thumb img').attr('src', response.thumb);
  1021. }
  1022. // Proposition de tags
  1023. if (response.tags)
  1024. {
  1025. $('ul#form_add_prop_tags li').remove();
  1026. $('ul#form_add_prop_tags').show();
  1027. $('ul#form_add_prop_tags_text').show();
  1028. for (tags_index = 0; tags_index < response.tags.length; tags_index++)
  1029. {
  1030. var tag = response.tags[tags_index];
  1031. var tag_id = '';
  1032. var tag_name = tag.original_name;
  1033. // Si il y a des équivalent en base.
  1034. if (tag.like_found)
  1035. {
  1036. tag_id = tag.like.id;
  1037. tag_name = tag.like.name;
  1038. }
  1039. // On aura plus qu'a vérifie le href pour savoir si c'est une demande d'ajout de tags =)
  1040. $('ul#form_add_prop_tags').append(
  1041. '<li>'+
  1042. '<a href="#'+tag_id+'" class="form_add_prop_tag">'+
  1043. tag_name+
  1044. '</a>'+
  1045. '</li>'
  1046. );
  1047. }
  1048. }
  1049. // On a plus qu'a afficher les champs
  1050. $('div#form_add_second_part').slideDown();
  1051. $('div#form_add_first_part').slideUp();
  1052. form_add_hide_errors();
  1053. }
  1054. else if (response.status == 'error')
  1055. {
  1056. form_add_display_errors(response.errors);
  1057. $('#form_add_loader').hide();
  1058. return false;
  1059. }
  1060. },
  1061. dataType: 'json'
  1062. });
  1063. });
  1064. /*
  1065. * Formulaire d'ajout: click sur proposition de tags du a une api
  1066. */
  1067. $('a.form_add_prop_tag').live('click', function(){
  1068. var form_name = "add";
  1069. var tag_id = str_replace('#', '', $(this).attr('href'));
  1070. var input_tag = $("div.tags_prompt ul.tagbox li.input input");
  1071. // Si on connait le tag id (pas un nouveau tag donc)
  1072. if (tag_id)
  1073. {
  1074. $('input#tags_selected_tag_'+form_name).val(tag_id);
  1075. input_tag.val($(this).text());
  1076. // Et on execute l'évènement selectTag de l'input
  1077. input_tag.trigger("selectTag");
  1078. }
  1079. else
  1080. {
  1081. // Cette var sert a rien ici, mais c'est la refactorisation qui
  1082. // pose problmeme (corrigeable cela dit)
  1083. var divtags = $("#search_tag_"+form_name);
  1084. form_add_open_dialog_for_new_tag($(this), input_tag, form_name, divtags);
  1085. }
  1086. // On nettoie le champs de saisie des tags
  1087. $('input.form-default-value-processed').val('');
  1088. });
  1089. // #ajouter ajouter un élément (envoi du formulaire)
  1090. $('form[name="add"] input[type="submit"]').live('click', function(){
  1091. $('form[name="add"]').find('img.tag_loader').show();
  1092. });
  1093. $('form[name="add"]').ajaxForm(function(response) {
  1094. if (response.status == 'mustbeconnected')
  1095. {
  1096. $(location).attr('href', url_index);
  1097. }
  1098. $('form[name="add"] img.tag_loader').hide();
  1099. if (element_add_proceed_json_response(response))
  1100. {
  1101. form_add_reinit();
  1102. }
  1103. return false;
  1104. });
  1105. function form_add_reinit()
  1106. {
  1107. $('div#element_add_box').slideUp();
  1108. $('div#form_add_first_part').show();
  1109. $('div#form_add_second_part').hide();
  1110. $('ul#form_add_prop_tags').hide();
  1111. $('ul#form_add_prop_tags_text').hide();
  1112. $('input#element_add_url').val('');
  1113. $('input#element_add_name').val('');
  1114. }
  1115. /////////////////////
  1116. var tags_ids_for_filter = new Array();
  1117. // Filtre par tags (show, favorite)
  1118. function refresh_elements_with_tags_selected(link)
  1119. {
  1120. // Puis on fait notre rekékéte ajax.
  1121. $('ul.elements').html('');
  1122. $('div.no_elements').hide();
  1123. $('img.elements_more_loader').show();
  1124. $.getJSON($('input#get_elements_url').val()+'/'+array2json(tags_ids_for_filter), function(response){
  1125. if (response.status == 'mustbeconnected')
  1126. {
  1127. $(location).attr('href', url_index);
  1128. }
  1129. $('ul.elements').html(response.html);
  1130. if (response.count)
  1131. {
  1132. $('img.elements_more_loader').hide();
  1133. $('span.elements_more').show();
  1134. $('a.elements_more').show();
  1135. }
  1136. });
  1137. return false;
  1138. }
  1139. function list_tag_clicked(link, erease)
  1140. {
  1141. if (erease)
  1142. {
  1143. $('ul#favorite_tags a.tag').removeClass('active');
  1144. }
  1145. // Ensuite on l'active ou le désactive
  1146. if (link.hasClass('active'))
  1147. {
  1148. link.removeClass('active');
  1149. }
  1150. else
  1151. {
  1152. link.addClass('active');
  1153. }
  1154. // On construit notre liste de tags
  1155. tags_ids_for_filter = new Array();
  1156. $('ul#favorite_tags a.tag.active').each(function(index){
  1157. var id = str_replace('filtering_tag_', '', $(this).attr('id'));
  1158. tags_ids_for_filter[id] = id;
  1159. });
  1160. // On adapte le lien afficher plus de résultats
  1161. var a_more = $('a.elements_more');
  1162. a_more.attr('href', $('input#more_elements_url').val()+'/'+array2json(tags_ids_for_filter));
  1163. return check_timelaps_and_find_with_tags(link, new Date().getTime(), false);
  1164. }
  1165. $('ul#favorite_tags a.tag').click(function(){
  1166. list_tag_clicked($(this));
  1167. });
  1168. last_keypress = 0;
  1169. function check_timelaps_and_find_with_tags(link, time_id, timed)
  1170. {
  1171. if (!timed)
  1172. {
  1173. // C'est une nouvelle touche (pas redirigé) on lui donne un id
  1174. // et on met a jour l'id de la dernière pressé
  1175. last_keypress = new Date().getTime();
  1176. var this_time_id = last_keypress;
  1177. }
  1178. else
  1179. {
  1180. // Si elle a été redirigé, on met son id dans cette variable
  1181. var this_time_id = time_id;
  1182. }
  1183. // C'est une touche redirigé dans le temps qui a été suivit d'une autre touche
  1184. if (time_id != last_keypress && timed)
  1185. {
  1186. // elle disparait
  1187. }
  1188. else
  1189. {
  1190. //
  1191. if ((new Date().getTime() - last_keypress) < 800 || timed == false)
  1192. {
  1193. // Si elle vient d'être tapé (timed == false) elle doit attendre (au cas ou une autre touche soit tapé)
  1194. // Si c'est une redirigé qui n'a pas été remplacé par une nouvelle lettre
  1195. // elle doit attendre au cas ou soit pressé.
  1196. setTimeout(function(){check_timelaps_and_find_with_tags(link, this_time_id, true)}, 900);
  1197. }
  1198. else
  1199. {
  1200. // il n'y a plus a attendre, on envoie la demande de tag.
  1201. return refresh_elements_with_tags_selected(link);
  1202. }
  1203. }
  1204. return null;
  1205. }
  1206. ////////////////////////////////////////
  1207. /// Gestion de nouveaux éléments
  1208. var do_check_new_elements = false;
  1209. function check_new_elements()
  1210. {
  1211. if ($('ul.elements li').length)
  1212. {
  1213. // Si l'utilisateur a quitté la page on reporte le check
  1214. if ($('body.blurred').length)
  1215. {
  1216. // on passe la variable a vrai de façon a ce que lorsque la page
  1217. // et ré affiché on lance le check
  1218. do_check_new_elements = true;
  1219. }
  1220. else
  1221. {
  1222. var url = url_element_new_count
  1223. +'/'
  1224. +str_replace('element_', '', $('ul.elements li:first').attr('id'))
  1225. ;
  1226. $.ajax({
  1227. type: 'POST',
  1228. url: url,
  1229. data: $('form[name="search"]').serialize(),
  1230. success: function(response){
  1231. if (response.status == 'mustbeconnected')
  1232. {
  1233. $(location).attr('href', url_index);
  1234. }
  1235. if (response.status == 'success' && response.count)
  1236. {
  1237. $('div.display_more_elements').show();
  1238. $('div.display_more_elements span').html(response.message);
  1239. }
  1240. setTimeout(check_new_elements, 150000);
  1241. },
  1242. dataType: "json"
  1243. });
  1244. // $.getJSON(url, function(response){
  1245. //
  1246. // if (response.status == 'mustbeconnected')
  1247. // {
  1248. // $(location).attr('href', url_index);
  1249. // }
  1250. //
  1251. // if (response.status == 'success' && response.count)
  1252. // {
  1253. // $('div.display_more_elements').show();
  1254. // $('div.display_more_elements span').html(response.message);
  1255. // }
  1256. //
  1257. // setTimeout(check_new_elements, 150000);
  1258. // });
  1259. do_check_new_elements = false;
  1260. }
  1261. }
  1262. }
  1263. if ($('div.display_more_elements').length)
  1264. {
  1265. setTimeout(check_new_elements, 150000);
  1266. }
  1267. $('a.show_new_elements').live('click', function(){
  1268. var url = url_element_new_get
  1269. +'/'
  1270. +str_replace('element_', '', $('ul.elements li:first').attr('id'))
  1271. ;
  1272. $('img.elements_new_loader').show();
  1273. $.ajax({
  1274. type: 'POST',
  1275. url: url,
  1276. data: $('form[name="search"]').serialize(),
  1277. success: function(response){
  1278. if (response.status == 'mustbeconnected')
  1279. {
  1280. $(location).attr('href', url_index);
  1281. }
  1282. if (response.status == 'success')
  1283. {
  1284. if (response.count)
  1285. {
  1286. $('div.display_more_elements').show();
  1287. $('div.display_more_elements span').html(response.message);
  1288. }
  1289. else
  1290. {
  1291. $('div.display_more_elements').hide();
  1292. }
  1293. $('ul.elements').prepend(response.html);
  1294. recolorize_element_list();
  1295. }
  1296. $('img.elements_new_loader').hide();
  1297. },
  1298. dataType: "json"
  1299. });
  1300. // $.getJSON(url, function(response){
  1301. //
  1302. // if (response.status == 'mustbeconnected')
  1303. // {
  1304. // $(location).attr('href', url_index);
  1305. // }
  1306. //
  1307. // if (response.status == 'success')
  1308. // {
  1309. // if (response.count)
  1310. // {
  1311. // $('div.display_more_elements').show();
  1312. // $('div.display_more_elements span').html(response.message);
  1313. // }
  1314. // else
  1315. // {
  1316. // $('div.display_more_elements').hide();
  1317. // }
  1318. //
  1319. // $('ul.elements').prepend(response.html);
  1320. // recolorize_element_list();
  1321. // }
  1322. //
  1323. // $('img.elements_new_loader').hide();
  1324. // });
  1325. });
  1326. function recolorize_element_list()
  1327. {
  1328. $('ul.elements li.element').each(function(index){
  1329. if ((index & 1) == 1)
  1330. {
  1331. $(this).removeClass('even');
  1332. $(this).removeClass('odd');
  1333. $(this).addClass('odd');
  1334. }
  1335. else
  1336. {
  1337. $(this).removeClass('odd');
  1338. $(this).removeClass('even');
  1339. $(this).addClass('even');
  1340. }
  1341. });
  1342. }
  1343. /*
  1344. * Action a effectuer lorsque l'utilisateur met le focus sur la page
  1345. */
  1346. function do_action_body_focused()
  1347. {
  1348. if (do_check_new_elements)
  1349. {
  1350. check_new_elements();
  1351. }
  1352. }
  1353. /*
  1354. * Commentaires d'élément
  1355. */
  1356. // Afficher les commentaires
  1357. $('td.element_content a.display_comments').live('click', function(){
  1358. display_comments($(this).parents('li.element'));
  1359. });
  1360. $('td.element_content a.hide_comments').live('click', function(){
  1361. hide_comments($(this).parents('li.element'));
  1362. });
  1363. function display_comments(li_element)
  1364. {
  1365. li_element.find('div.comments').slideDown();
  1366. li_element.find('a.display_comments').hide();
  1367. li_element.find('a.hide_comments').show();
  1368. }
  1369. function hide_comments(li_element)
  1370. {
  1371. li_element.find('div.comments').slideUp();
  1372. li_element.find('a.display_comments').show();
  1373. li_element.find('a.hide_comments').hide();
  1374. }
  1375. // Ajouter un commentaire
  1376. $('li.element a.add_comment').live('click', function(){
  1377. display_add_comment($(this).parents('li.element'));
  1378. });
  1379. $('form.add_comment input[type="submit"]').live('click', function(){
  1380. $(this).parents('div.comments').find('img.comments_loader').show();
  1381. });
  1382. function display_add_comment(li_element)
  1383. {
  1384. display_comments(li_element);
  1385. li_element.find('a.add_comment').hide();
  1386. li_element.find('form.add_comment').show();
  1387. li_element.find('form.add_comment').ajaxForm(function(response) {
  1388. if (response.status == 'mustbeconnected')
  1389. {
  1390. $(location).attr('href', url_index);
  1391. }
  1392. li_element.find('img.comments_loader').hide();
  1393. if (response.status == 'success')
  1394. {
  1395. li_element.find('form.add_comment').find('ul.error_list').remove();
  1396. li_element.find('div.comments ul.comments').append(response.html);
  1397. hide_add_comment(li_element);
  1398. }
  1399. else if (response.status == 'error')
  1400. {
  1401. li_element.find('form.add_comment').find('ul.error_list').remove();
  1402. var ul_errors = $('<ul>').addClass('error_list');
  1403. for (i in response.errors)
  1404. {
  1405. ul_errors.append($('<li>').append(response.errors[i]));
  1406. }
  1407. li_element.find('form.add_comment').prepend(ul_errors);
  1408. }
  1409. return false;
  1410. });
  1411. }
  1412. $('form.add_comment input.cancel').live('click', function(){
  1413. var li_element = $(this).parents('li.element');
  1414. hide_add_comment(li_element);
  1415. });
  1416. function hide_add_comment(li_element)
  1417. {
  1418. li_element.find('a.add_comment').show();
  1419. li_element.find('form.add_comment').hide();
  1420. li_element.find('form.add_comment textarea').val('');
  1421. }
  1422. // Modifier et supprimer
  1423. // Affichage du bouton Modifier et Supprimer
  1424. $('ul.comments li.comment').live({
  1425. mouseenter:
  1426. function()
  1427. {
  1428. $(this).find('a.comment_edit_link').show();
  1429. $(this).find('a.comment_remove_link').show();
  1430. },
  1431. mouseleave:
  1432. function()
  1433. {
  1434. if (!$(this).find('a.comment_edit_link').hasClass('mustBeDisplayed'))
  1435. {
  1436. $(this).find('a.comment_edit_link').hide();
  1437. }
  1438. if (!$(this).find('a.comment_remove_link').hasClass('mustBeDisplayed'))
  1439. {
  1440. $(this).find('a.comment_remove_link').hide();
  1441. }
  1442. }
  1443. }
  1444. );
  1445. // Supprimer
  1446. $('a.comment_remove_link').jConfirmAction({
  1447. question : string_comment_delete_confirm_sentence,
  1448. yesAnswer : string_comment_delete_confirm_yes,
  1449. cancelAnswer : string_comment_delete_confirm_no,
  1450. onYes: function(link){
  1451. var li = link.parents('li.comment');
  1452. li.find('img.comment_loader').show();
  1453. $.getJSON(link.attr('href'), function(response){
  1454. li.find('img.comment_loader').hide();
  1455. if (response.status == 'mustbeconnected')
  1456. {
  1457. $(location).attr('href', url_index);
  1458. }
  1459. if (response.status == 'success')
  1460. {
  1461. li.remove();
  1462. }
  1463. });
  1464. return false;
  1465. },
  1466. onOpen: function(link){
  1467. var li = link.parents('li.comment');
  1468. li.find('a.comment_edit_link').addClass('mustBeDisplayed');
  1469. li.find('a.comment_remove_link').addClass('mustBeDisplayed');
  1470. },
  1471. onClose: function(link){
  1472. var li = link.parents('li.comment');
  1473. li.find('a.comment_edit_link').removeClass('mustBeDisplayed');
  1474. li.find('a.comment_remove_link').removeClass('mustBeDisplayed');
  1475. li.find('a.comment_edit_link').hide();
  1476. li.find('a.comment_remove_link').hide();
  1477. }
  1478. });
  1479. var comments_edited = new Array();
  1480. // Modification
  1481. // Ouverture du formulaire de modification
  1482. $('a.comment_edit_link').live('click', function(){
  1483. var link = $(this);
  1484. var li = link.parents('li.comment');
  1485. // On garde en mémoire l'élément édité en cas d'annulation
  1486. comments_edited[li.attr('id')] = li.html();
  1487. var loader = li.find('img.comment_loader');
  1488. li.html(loader);
  1489. li.find('img.comment_loader').show();
  1490. $.getJSON($(this).attr('href'), function(response) {
  1491. if (response.status == 'mustbeconnected')
  1492. {
  1493. $(location).attr('href', url_index);
  1494. }
  1495. li.html(response.html);
  1496. // On rend ce formulaire ajaxFormable
  1497. $('li#'+li.attr('id')+' form.edit_comment input[type="submit"]').live('click', function(){
  1498. var li_current = $(this).parents('li.comment');
  1499. li_current.prepend(loader);
  1500. li_current.find('img.comment_loader').show();
  1501. });
  1502. li.find('form.edit_comment').ajaxForm(function(response){
  1503. li = $('li#'+response.dom_id);
  1504. li.find('img.comment_loader').hide();
  1505. if (response.status == 'mustbeconnected')
  1506. {
  1507. $(location).attr('href', url_index);
  1508. }
  1509. if (response.status == 'success')
  1510. {
  1511. li.html(response.html);
  1512. delete(comments_edited[li.attr('id')]);
  1513. }
  1514. else if (response.status == 'error')
  1515. {
  1516. li.find('ul.error_list').remove();
  1517. var ul_errors = $('<ul>').addClass('error_list');
  1518. for (i in response.errors)
  1519. {
  1520. ul_errors.append($('<li>').append(response.errors[i]));
  1521. }
  1522. li.prepend(ul_errors);
  1523. }
  1524. });
  1525. });
  1526. return false;
  1527. });
  1528. // Annulation d'un formulaire de modification d'un comment
  1529. $('form.edit_comment input.cancel').live('click', function(){
  1530. var li = $(this).parents('li.comment');
  1531. li.html(comments_edited[li.attr('id')]);
  1532. delete(comments_edited[li.attr('id')]);
  1533. });
  1534. /*
  1535. * Ajout d'un tag en favoris a partir d'un élément
  1536. */
  1537. $('li.element_tag').live({
  1538. mouseenter:
  1539. function()
  1540. {
  1541. $(this).find('a.tag_to_favorites').show();
  1542. $(this).find('a.element_tag').addClass('element_tag_large_for_fav');
  1543. },
  1544. mouseleave:
  1545. function()
  1546. {
  1547. if (!$(this).find('a.tag_to_favorites').hasClass('mustBeDisplayed'))
  1548. {
  1549. $(this).find('a.tag_to_favorites').hide();
  1550. $(this).find('a.element_tag').removeClass('element_tag_large_for_fav');
  1551. }
  1552. }
  1553. }
  1554. );
  1555. $('a.tag_to_favorites').jConfirmAction({
  1556. question : string_tag_addtofav_confirm_sentence,
  1557. yesAnswer : string_tag_addtofav_confirm_yes,
  1558. cancelAnswer : string_tag_addtofav_confirm_no,
  1559. onYes: function(link){
  1560. $.getJSON(link.attr('href'), function(response){
  1561. if (response.status == 'mustbeconnected')
  1562. {
  1563. $(location).attr('href', url_index);
  1564. }
  1565. });
  1566. $('div.question').fadeOut();
  1567. return false;
  1568. },
  1569. onOpen: function(link){
  1570. var li = link.parents('li.element_tag');
  1571. li.find('a.tag_to_favorites').addClass('mustBeDisplayed');
  1572. },
  1573. onClose: function(link){
  1574. var li = link.parents('li.element_tag');
  1575. li.find('a.tag_to_favorites').removeClass('mustBeDisplayed');
  1576. li.find('a.element_tag').removeClass('element_tag_large_for_fav');
  1577. li.find('a.tag_to_favorites').hide();
  1578. }
  1579. });
  1580. /*
  1581. * Ajout dans un groupe de l'élément envoyé
  1582. */
  1583. $('a.added_element_add_to_group').live('click', function(){
  1584. var loader = $('div#added_element_to_group').find('img.loader');
  1585. loader.show();
  1586. $.getJSON($(this).attr('href'), function(response) {
  1587. loader.hide();
  1588. if (response.status == 'mustbeconnected')
  1589. {
  1590. $(location).attr('href', url_index);
  1591. }
  1592. if (response.status == 'success')
  1593. {
  1594. $('li#'+response.dom_id).html(response.html);
  1595. }
  1596. $('div#added_element_to_group').slideUp();
  1597. $('a#element_add_link').show();
  1598. });
  1599. return false;
  1600. });
  1601. $('div#added_element_to_group a.cancel').live('click', function(){
  1602. $('div#added_element_to_group').slideUp();
  1603. $('a#element_add_link').show();
  1604. return false;
  1605. });
  1606. /*
  1607. * Report / signalement d'un élément
  1608. */
  1609. $('a.element_report').jConfirmAction({
  1610. question : string_elementreport_confirm_sentence,
  1611. yesAnswer : string_elementreport_confirm_yes,
  1612. cancelAnswer : string_elementreport_confirm_no,
  1613. onYes: function(link){
  1614. $.getJSON(link.attr('href'), function(response){
  1615. if (response.status == 'mustbeconnected')
  1616. {
  1617. $(location).attr('href', url_index);
  1618. }
  1619. });
  1620. $('div.question').fadeOut();
  1621. return false;
  1622. },
  1623. onOpen: function(link){
  1624. },
  1625. onClose: function(link){
  1626. }
  1627. });
  1628. /*
  1629. * Vote sur element
  1630. */
  1631. $('li.element a.vote').live('click', function(){
  1632. var img = $(this).find('img');
  1633. var link = $(this);
  1634. img.attr('src', url_img_ajax_loader);
  1635. $.getJSON(link.attr('href'), function(response){
  1636. if (response.status == 'mustbeconnected')
  1637. {
  1638. $(location).attr('href', url_index);
  1639. }
  1640. if (response.status == 'success')
  1641. {
  1642. link.attr('href', response.data.a.href);
  1643. img.attr('src', response.data.img.src);
  1644. link.parents('td.right').find('li.score span.score').html(response.data.element.points);
  1645. }
  1646. });
  1647. return false;
  1648. });
  1649. // Enlever les ids du ElementSearch
  1650. $('div.more_filters a.new_comments, div.more_filters a.new_favorites, div.more_filters a.new_tags').live('click', function(){
  1651. $('img.elements_more_loader').show();
  1652. $('ul.elements').html('');
  1653. var link = $(this);
  1654. $.getJSON(link.attr('href'), function(response){
  1655. if (response.status == 'mustbeconnected')
  1656. {
  1657. $(location).attr('href', url_index);
  1658. }
  1659. if (response.status == 'success')
  1660. {
  1661. $('form[name="search"]').submit();
  1662. $('div.more_filters a.new_comments').hide();
  1663. $('div.more_filters a.new_favorites').hide();
  1664. $('div.more_filters a.new_tags').hide();
  1665. }
  1666. });
  1667. return false;
  1668. });
  1669. /*
  1670. *
  1671. * Proposition de tags sur un élément
  1672. *
  1673. */
  1674. // Ouverture du formulaire de modification
  1675. $('a.element_propose_tags').live('click', function(){
  1676. var link = $(this);
  1677. var li = link.parents('li.element');
  1678. li.find('img.element_loader').show();
  1679. $.getJSON($(this).attr('href'), function(response) {
  1680. if (response.status == 'mustbeconnected')
  1681. {
  1682. $(location).attr('href', url_index);
  1683. }
  1684. li.find('img.element_loader').hide();
  1685. if (response.status == 'success')
  1686. {
  1687. // On prépare le tagBox
  1688. var table = li.find('table:first');
  1689. li.find('div.tag_proposition').remove();
  1690. table.after(response.html);
  1691. // Pour le click sur l'input de saisie de tag
  1692. li.find('ul.tagbox li.input input[type="text"]').formDefaults();
  1693. var options = new Array();
  1694. options.form_name = response.form_name;
  1695. options.tag_init = response.tags;
  1696. ajax_query_timestamp = null;
  1697. $("#tags_prompt_list_"+response.form_name).tagBox(options);
  1698. // On rend ce formulaire ajaxFormable
  1699. $('form[name="'+response.form_name+'"] input[type="submit"]').live('click', function(){
  1700. li = $(this).parents('li.element');
  1701. li.find('img.element_loader').show();
  1702. });
  1703. $('form[name="'+response.form_name+'"]').ajaxForm(function(response){
  1704. if (response.status == 'mustbeconnected')
  1705. {
  1706. $(location).attr('href', url_index);
  1707. }
  1708. if (response.status == 'success')
  1709. {
  1710. li = $('li#'+response.dom_id);
  1711. li.find('img.element_loader').hide();
  1712. li.find('form')
  1713. li.find('div.tag_proposition').remove();
  1714. }
  1715. else if (response.status == 'error')
  1716. {
  1717. li.find('img.element_loader').hide();
  1718. li.find('ul.error_list').remove();
  1719. var ul_errors = $('<ul>').addClass('error_list');
  1720. for (i in response.errors)
  1721. {
  1722. ul_errors.append($('<li>').append(response.errors[i]));
  1723. }
  1724. li.find('div.tag_proposition div.tags_prompt').prepend(ul_errors);
  1725. }
  1726. });
  1727. }
  1728. });
  1729. return false;
  1730. });
  1731. // Annulation d'un formulaire de modification d'élément
  1732. $('div.tag_proposition input.cancel').live('click', function(){
  1733. $(this).parents('div.tag_proposition').slideUp();
  1734. });
  1735. // Ouvrir les propositions de tags de l'élément
  1736. $('a.element_view_propositions_link').live('click', function(){
  1737. var link = $(this);
  1738. li = link.parents('li.element');
  1739. li.find('img.element_loader').show();
  1740. $.getJSON($(this).attr('href'), function(response) {
  1741. if (response.status == 'mustbeconnected')
  1742. {
  1743. $(location).attr('href', url_index);
  1744. }
  1745. li.find('img.element_loader').hide();
  1746. if (response.status == 'success')
  1747. {
  1748. var table = li.find('table:first');
  1749. li.find('div.tags_proposition_view').remove();
  1750. table.after(response.html);
  1751. }
  1752. });
  1753. return false;
  1754. });
  1755. $('a.accept_tag_propotision').live('click', function(){
  1756. var link = $(this);
  1757. var li = link.parents('li.element');
  1758. li.find('img.element_loader').show();
  1759. $.getJSON($(this).attr('href'), function(response) {
  1760. if (response.status == 'mustbeconnected')
  1761. {
  1762. $(location).attr('href', url_index);
  1763. }
  1764. li.find('img.element_loader').hide();
  1765. if (response.status == 'success')
  1766. {
  1767. li.html(response.html);
  1768. }
  1769. });
  1770. return false;
  1771. });
  1772. //
  1773. $('a.refuse_tag_propositions').live('click', function(){
  1774. var link = $(this);
  1775. var li = link.parents('li.element');
  1776. li.find('img.element_loader').show();
  1777. $.getJSON($(this).attr('href'), function(response) {
  1778. if (response.status == 'mustbeconnected')
  1779. {
  1780. $(location).attr('href', url_index);
  1781. }
  1782. li.find('img.element_loader').hide();
  1783. if (response.status == 'success')
  1784. {
  1785. li.find('div.tags_proposition_view').remove();
  1786. }
  1787. });
  1788. return false;
  1789. });
  1790. /*
  1791. * Proposition de tag sur un élément FIN
  1792. */
  1793. /*
  1794. * Report / signalement d'un commentaire
  1795. */
  1796. $('a.comment_report').jConfirmAction({
  1797. question : string_commentreport_confirm_sentence,
  1798. yesAnswer : string_commentreport_confirm_yes,
  1799. cancelAnswer : string_commentreport_confirm_no,
  1800. onYes: function(link){
  1801. $.getJSON(link.attr('href'), function(response){
  1802. if (response.status == 'mustbeconnected')
  1803. {
  1804. $(location).attr('href', url_index);
  1805. }
  1806. });
  1807. $('div.question').fadeOut();
  1808. return false;
  1809. },
  1810. onOpen: function(link){
  1811. },
  1812. onClose: function(link){
  1813. }
  1814. });
  1815. /*
  1816. * reshare repartage
  1817. */
  1818. $('a.element_reshare').jConfirmAction({
  1819. question : string_elementreshare_confirm_sentence,
  1820. yesAnswer : string_elementreshare_confirm_yes,
  1821. cancelAnswer : string_elementreshare_confirm_no,
  1822. onYes: function(link){
  1823. $('div.question').fadeOut();
  1824. $.getJSON(link.attr('href'), function(response){
  1825. if (response.status == 'mustbeconnected')
  1826. {
  1827. $(location).attr('href', url_index);
  1828. }
  1829. // On affiche l'élément que si on voit que le formulaire est sur la page
  1830. // Sinon c'est qu'on est sur une page ou on a pas normalement la possibilité
  1831. // d'ajouetr un élément.
  1832. if ($('form[name="add"]').length)
  1833. {
  1834. element_add_proceed_json_response(response);
  1835. }
  1836. return false;
  1837. });
  1838. return false;
  1839. },
  1840. onOpen: function(link){
  1841. },
  1842. onClose: function(link){
  1843. }
  1844. });
  1845. /*
  1846. * Cloud tags
  1847. */
  1848. $('a#display_all_cloud_tag').click(function(){
  1849. $('ul#favorite_tags li').show();
  1850. $(this).hide();
  1851. });
  1852. $('input#cloud_tags_filter').keyup(function(){
  1853. var search_string = $(this).val();
  1854. $('ul#favorite_tags li a').removeClass('highlight');
  1855. if (search_string.length > 1)
  1856. {
  1857. $('ul#favorite_tags li a').each(function(){
  1858. if ($(this).text().toUpperCase().search(search_string.toUpperCase()) != -1)
  1859. {
  1860. $(this).addClass('highlight')
  1861. }
  1862. });
  1863. }
  1864. });
  1865. });