{"version":3,"sources":["webpack://metronic/../demo1/src/js/pages/crud/forms/widgets/select2.js"],"names":[],"mappings":";;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;;AAET;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA,aAAa;AACb;AACA;AACA,aAAa;AACb;AACA;AACA;AACA,SAAS;;AAET;;AAEA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA;AACA,SAAS;;AAET;AACA;AACA;AACA,SAAS;AACT;;AAEA;AACA;AACA;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA,aAAa;;AAEb;AACA;AACA;AACA;AACA,aAAa;AACb,SAAS;AACT;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA,CAAC","file":"js/pages/crud/forms/widgets/select2.js","sourcesContent":["// Class definition\r\nvar KTSelect2 = function() {\r\n // Private functions\r\n var demos = function() {\r\n // basic\r\n $('#kt_select2_1, #kt_select2_1_validate').select2({\r\n placeholder: 'Select a state'\r\n });\r\n\r\n // nested\r\n $('#kt_select2_2, #kt_select2_2_validate').select2({\r\n placeholder: 'Select a state'\r\n });\r\n\r\n // multi select\r\n $('#kt_select2_3, #kt_select2_3_validate').select2({\r\n placeholder: 'Select a state',\r\n });\r\n\r\n // basic\r\n $('#kt_select2_4').select2({\r\n placeholder: \"Select a state\",\r\n allowClear: true\r\n });\r\n\r\n // loading data from array\r\n var data = [{\r\n id: 0,\r\n text: 'Enhancement'\r\n }, {\r\n id: 1,\r\n text: 'Bug'\r\n }, {\r\n id: 2,\r\n text: 'Duplicate'\r\n }, {\r\n id: 3,\r\n text: 'Invalid'\r\n }, {\r\n id: 4,\r\n text: 'Wontfix'\r\n }];\r\n\r\n $('#kt_select2_5').select2({\r\n placeholder: \"Select a value\",\r\n data: data\r\n });\r\n\r\n // loading remote data\r\n\r\n function formatRepo(repo) {\r\n if (repo.loading) return repo.text;\r\n var markup = \"
\" +\r\n \"
\" +\r\n \"
\" + repo.full_name + \"
\";\r\n if (repo.description) {\r\n markup += \"
\" + repo.description + \"
\";\r\n }\r\n markup += \"
\" +\r\n \"
\" + repo.forks_count + \" Forks
\" +\r\n \"
\" + repo.stargazers_count + \" Stars
\" +\r\n \"
\" + repo.watchers_count + \" Watchers
\" +\r\n \"
\" +\r\n \"
\";\r\n return markup;\r\n }\r\n\r\n function formatRepoSelection(repo) {\r\n return repo.full_name || repo.text;\r\n }\r\n\r\n $(\"#kt_select2_6\").select2({\r\n placeholder: \"Search for git repositories\",\r\n allowClear: true,\r\n ajax: {\r\n url: \"https://api.github.com/search/repositories\",\r\n dataType: 'json',\r\n delay: 250,\r\n data: function(params) {\r\n return {\r\n q: params.term, // search term\r\n page: params.page\r\n };\r\n },\r\n processResults: function(data, params) {\r\n // parse the results into the format expected by Select2\r\n // since we are using custom formatting functions we do not need to\r\n // alter the remote JSON data, except to indicate that infinite\r\n // scrolling can be used\r\n params.page = params.page || 1;\r\n\r\n return {\r\n results: data.items,\r\n pagination: {\r\n more: (params.page * 30) < data.total_count\r\n }\r\n };\r\n },\r\n cache: true\r\n },\r\n escapeMarkup: function(markup) {\r\n return markup;\r\n }, // let our custom formatter work\r\n minimumInputLength: 1,\r\n templateResult: formatRepo, // omitted for brevity, see the source of this page\r\n templateSelection: formatRepoSelection // omitted for brevity, see the source of this page\r\n });\r\n\r\n // custom styles\r\n\r\n // tagging support\r\n $('#kt_select2_12_1, #kt_select2_12_2, #kt_select2_12_3, #kt_select2_12_4').select2({\r\n placeholder: \"Select an option\",\r\n });\r\n\r\n // disabled mode\r\n $('#kt_select2_7').select2({\r\n placeholder: \"Select an option\"\r\n });\r\n\r\n // disabled results\r\n $('#kt_select2_8').select2({\r\n placeholder: \"Select an option\"\r\n });\r\n\r\n // limiting the number of selections\r\n $('#kt_select2_9').select2({\r\n placeholder: \"Select an option\",\r\n maximumSelectionLength: 2\r\n });\r\n\r\n // hiding the search box\r\n $('#kt_select2_10').select2({\r\n placeholder: \"Select an option\",\r\n minimumResultsForSearch: Infinity\r\n });\r\n\r\n // tagging support\r\n $('#kt_select2_11').select2({\r\n placeholder: \"Add a tag\",\r\n tags: true\r\n });\r\n\r\n // disabled results\r\n $('.kt-select2-general').select2({\r\n placeholder: \"Select an option\"\r\n });\r\n }\r\n\r\n var modalDemos = function() {\r\n $('#kt_select2_modal').on('shown.bs.modal', function () {\r\n // basic\r\n $('#kt_select2_1_modal').select2({\r\n placeholder: \"Select a state\"\r\n });\r\n\r\n // nested\r\n $('#kt_select2_2_modal').select2({\r\n placeholder: \"Select a state\"\r\n });\r\n\r\n // multi select\r\n $('#kt_select2_3_modal').select2({\r\n placeholder: \"Select a state\",\r\n });\r\n\r\n // basic\r\n $('#kt_select2_4_modal').select2({\r\n placeholder: \"Select a state\",\r\n allowClear: true\r\n });\r\n });\r\n }\r\n\r\n // Public functions\r\n return {\r\n init: function() {\r\n demos();\r\n modalDemos();\r\n }\r\n };\r\n}();\r\n\r\n// Initialization\r\njQuery(document).ready(function() {\r\n KTSelect2.init();\r\n});\r\n"],"sourceRoot":""}