templates/helper/filters.html.twig line 1

  1. <script type="text/javascript">
  2.     const _Confirm_Swal = "{{'Oui'|trans}}",
  3.         _default_error_response = "{{'Une erreur inatendue est survenue!'|trans}}",
  4.         _msg_invalid        = '{{"Désolé, il semble que un ou plusieurs champs sont incorrects, veuillez bien renseigner."| trans}}',
  5.         _Cancel_Swal        = "{{'Non'|trans}}",
  6.         _Ok_Swal            = "{{'Ok, d\'accord'|trans}}";
  7.     
  8.     function select2languages(Element, stringQuery = {}, options = {}){
  9.         options.ajax = {
  10.             delay: 800,
  11.             cache: true,
  12.             url: "{{path('app_language_filter')}}",
  13.             type: "post",
  14.             data: function (params){
  15.                 stringQuery.search = params.term;
  16.                 return stringQuery;
  17.             },
  18.             processResults: function (data) {
  19.                 return {
  20.                     results: data.results
  21.                 };
  22.             }
  23.         };
  24.         
  25.         $(Element).select2(options);
  26.     }
  27.     function select2genres(Element, stringQuery = {}, options = {}){
  28.         options.ajax = {
  29.             delay: 800,
  30.             cache: true,
  31.             url: "{{path('app_genre_filter')}}",
  32.             type: "post",
  33.             data: function (params){
  34.                 stringQuery.search = params.term;
  35.                 return stringQuery;
  36.             },
  37.             processResults: function (data) {
  38.                 return {
  39.                     results: data.results
  40.                 };
  41.             }
  42.         };
  43.         
  44.         $(Element).select2(options);
  45.     }
  46.     function select2medias(Element, stringQuery = {}, options = {}){
  47.         options.ajax = {
  48.             delay: 800,
  49.             cache: true,
  50.             url: "{{path('app_media_filter')}}",
  51.             type: "post",
  52.             data: function (params){
  53.                 stringQuery.search = params.term;
  54.                 return stringQuery;
  55.             },
  56.             processResults: function (data) {
  57.                 return {
  58.                     results: data.results
  59.                 };
  60.             }
  61.         };
  62.         options.templateSelection = function (data, container) {
  63.             // Add custom attributes to the <option> tag for the selected option
  64.             $(data.element).attr('data-custom-type', data.type);
  65.             return data.text;
  66.         };
  67.         
  68.         $(Element).select2(options);
  69.     }
  70.     function select2seasons(Element, stringQuery = {}, options = {}){
  71.         options.ajax = {
  72.             delay: 800,
  73.             cache: true,
  74.             url: "{{path('app_season_filter')}}",
  75.             type: "post",
  76.             data: function (params){
  77.                 stringQuery.search = params.term;
  78.                 return stringQuery;
  79.             },
  80.             processResults: function (data) {
  81.                 return {
  82.                     results: data.results
  83.                 };
  84.             }
  85.         };
  86.         
  87.         $(Element).select2(options);
  88.     }
  89.     function select2episodes(Element, stringQuery = {}, options = {}){
  90.         options.ajax = {
  91.             delay: 800,
  92.             cache: true,
  93.             url: "{{path('app_episode_filter')}}",
  94.             type: "post",
  95.             data: function (params){
  96.                 stringQuery.search = params.term;
  97.                 return stringQuery;
  98.             },
  99.             processResults: function (data) {
  100.                 return {
  101.                     results: data.results
  102.                 };
  103.             }
  104.         };
  105.         
  106.         $(Element).select2(options);
  107.     }
  108.     function select2status(Element, url, stringQuery = {}, options = {}){
  109.         options.ajax = {
  110.             delay: 800,
  111.             cache: true,
  112.             url,
  113.             type: "get",
  114.             data: function (params){
  115.                 stringQuery.search = params.term;
  116.                 return stringQuery;
  117.             },
  118.             processResults: function (data) {
  119.                 return {
  120.                     results: data.results
  121.                 };
  122.             }
  123.         };
  124.         
  125.         $(Element).select2(options);
  126.     }
  127. </script>