{"version":3,"sources":["webpack:///resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue","webpack:///./resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue?d0fb","webpack:///./resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue","webpack:///./resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue?0b46","webpack:///./resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue?5359"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAaA;AAEA;AACA;AACA,eACA;AACA,iBADA;AAEA,aAFA,sBAGA;AACA;AACA;AALA,KAFA;AASA,mBACA;AACA,kBADA;AAEA;AAFA,KAVA;AAcA,wBACA;AACA,kBADA;AAEA;AAFA;AAfA,GADA;AAsBA;AACA;AAAA;AAAA;AADA,IAtBA;AA0BA,SA1BA,qBA2BA;AAAA;;AACA,qJACA;AACA;AACA;AACA,GAhCA;AAkCA;AAEA,aAFA,qBAEA,GAFA,EAGA;AACA;AAAA;AAAA;AACA;AACA,KANA;AAQA,gBARA,0BASA;AACA;AACA;AACA;AAZA,KAcA,2DACA,wBADA,EAdA,GAkBA,yDACA,aADA,EAEA,cAFA,EAlBA;AAlCA,G;;;;;;;;;;;;ACfA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,2CAA2C;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA,sBAAsB;AACtB,aAAa;AACb;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;AC/DA;AAAA;AAAA;AAAA;AAAgG;AAC3B;AACL;;;AAGhE;AACyG;AACzG,gBAAgB,2GAAU;AAC1B,EAAE,uFAAM;AACR,EAAE,4FAAM;AACR,EAAE,qGAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEA;AACA,IAAI,KAAU,EAAE,YAiBf;AACD;AACe,gF;;;;;;;;;;;;ACtCf;AAAA;AAAA,wCAA+M,CAAgB,qPAAG,EAAC,C;;;;;;;;;;;;ACAnO;AAAA;AAAA;AAAA;AAAA;AAAA","file":"chunks/ceres-43.js","sourcesContent":["<template>\n    <div class=\"selected-filters clearfix\">\n        <span :class=\"'text-appearance selected-filter filter-' + tag.id + ' ' + marginClasses\" :style=\"marginInlineStyles\" v-for=\"tag in tagList\" @click=\"removeTag(tag)\">\n            <i class=\"fa fa-times\" aria-hidden=\"true\"></i> {{ tag.name }}\n        </span>\n\n        <span :class=\"'bg-appearance selected-filter reset-all' + ' '+ marginClasses\" :style=\"marginInlineStyles\" v-if=\"tagList.length >= 2\" @click=\"resetAllTags()\">\n            {{ $translate(\"Ceres::Template.itemFilterReset\") }}\n        </span>\n    </div>\n</template>\n\n<script>\nimport { mapState, mapMutations, mapActions } from \"vuex\";\n\nexport default {\n    props: {\n        facetData:\n        {\n            type: Array,\n            default()\n            {\n                return [];\n            }\n        },\n        marginClasses:\n        {\n            type: String,\n            default: null\n        },\n        marginInlineStyles:\n        {\n            type: String,\n            default: null\n        }\n    },\n\n    computed: mapState({\n        tagList: state => state.itemList.selectedFacets\n    }),\n\n    created()\n    {\n        if (!this.$store.state.itemList.facets?.length)\n        {\n            this.$store.commit(\"addFacets\", this.facetData);\n        }\n    },\n\n    methods:\n    {\n        removeTag(tag)\n        {\n            this.selectFacet({ facetValue: tag });\n            this.loadItemList();\n        },\n\n        resetAllTags()\n        {\n            this.resetAllSelectedFacets();\n            this.loadItemList();\n        },\n\n        ...mapMutations([\n            \"resetAllSelectedFacets\"\n        ]),\n\n        ...mapActions([\n            \"selectFacet\",\n            \"loadItemList\"\n        ])\n    }\n}\n</script>\n","var render = function() {\n  var _vm = this\n  var _h = _vm.$createElement\n  var _c = _vm._self._c || _h\n  return _c(\n    \"div\",\n    { staticClass: \"selected-filters clearfix\" },\n    [\n      _vm._l(_vm.tagList, function(tag) {\n        return _c(\n          \"span\",\n          {\n            class:\n              \"text-appearance selected-filter filter-\" +\n              tag.id +\n              \" \" +\n              _vm.marginClasses,\n            style: _vm.marginInlineStyles,\n            on: {\n              click: function($event) {\n                return _vm.removeTag(tag)\n              }\n            }\n          },\n          [\n            _c(\"i\", {\n              staticClass: \"fa fa-times\",\n              attrs: { \"aria-hidden\": \"true\" }\n            }),\n            _vm._v(\" \" + _vm._s(tag.name) + \"\\n    \")\n          ]\n        )\n      }),\n      _vm._v(\" \"),\n      _vm.tagList.length >= 2\n        ? _c(\n            \"span\",\n            {\n              class:\n                \"bg-appearance selected-filter reset-all\" +\n                \" \" +\n                _vm.marginClasses,\n              style: _vm.marginInlineStyles,\n              on: {\n                click: function($event) {\n                  return _vm.resetAllTags()\n                }\n              }\n            },\n            [\n              _vm._v(\n                \"\\n        \" +\n                  _vm._s(_vm.$translate(\"Ceres::Template.itemFilterReset\")) +\n                  \"\\n    \"\n              )\n            ]\n          )\n        : _vm._e()\n    ],\n    2\n  )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./ItemFilterTagList.vue?vue&type=template&id=6da91432&\"\nimport script from \"./ItemFilterTagList.vue?vue&type=script&lang=js&\"\nexport * from \"./ItemFilterTagList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\n/* hot reload */\nif (module.hot) {\n  var api = require(\"/home/runner/work/plugin-ceres/plugin-ceres/node_modules/vue-hot-reload-api/dist/index.js\")\n  api.install(require('vue'))\n  if (api.compatible) {\n    module.hot.accept()\n    if (!api.isRecorded('6da91432')) {\n      api.createRecord('6da91432', component.options)\n    } else {\n      api.reload('6da91432', component.options)\n    }\n    module.hot.accept(\"./ItemFilterTagList.vue?vue&type=template&id=6da91432&\", function () {\n      api.rerender('6da91432', {\n        render: render,\n        staticRenderFns: staticRenderFns\n      })\n    })\n  }\n}\ncomponent.options.__file = \"resources/js/src/app/components/itemList/filter/ItemFilterTagList.vue\"\nexport default component.exports","import mod from \"-!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ItemFilterTagList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ItemFilterTagList.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ItemFilterTagList.vue?vue&type=template&id=6da91432&\""],"sourceRoot":""}