\n\n\n\n\n\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TeleconsultationList.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TeleconsultationList.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./TeleconsultationList.vue?vue&type=template&id=4eb32cdf&scoped=true\"\nimport script from \"./TeleconsultationList.vue?vue&type=script&lang=js\"\nexport * from \"./TeleconsultationList.vue?vue&type=script&lang=js\"\nimport style0 from \"./TeleconsultationList.vue?vue&type=style&index=0&id=4eb32cdf&prod&lang=scss&scoped=true\"\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 \"4eb32cdf\",\n null\n \n)\n\nexport default component.exports","// ================\n// CachedFilter\n// ================\n// Caches the most recently used filter for the component when its value\n// updates. Restores that filter in the created hook for the component.\n// A less generic version of: https://github.com/coffee-driven-dev/v-cache\n//\n// Requirements:\n// ----------------\n// - Global $route\n// - Component `filter` data\nexport default {\n\tcomputed: {\n\t\tcacheKey() {\n\t\t\treturn `temp:${this.$route.name}:filter`\n\t\t},\n\t},\n\twatch: {\n\t\tfilter: {\n\t\t\thandler(value) {\n\t\t\t\tconst nullOrEmpty = !value || value === {}\n\t\t\t\tif (!nullOrEmpty) {\n\t\t\t\t\tsessionStorage.setItem(this.cacheKey, JSON.stringify(value))\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeep: true,\n\t\t},\n\t},\n\tasync mounted() {\n\t\tconst missingFilter = this.filter === null || this.filter === undefined\n\t\tif (missingFilter) {\n\t\t\tconsole.warn('cachedFilter mixin used, but component has no `filter` property')\n\t\t\treturn\n\t\t}\n\n\t\tif (this.$route.query['filter-preset']) return\n\n\t\t// We check that properties match so we're not forcing an old/outdated\n\t\t// schema for visiting users between major versions\n\t\tconst cachedFilter = JSON.parse(sessionStorage.getItem(this.cacheKey))\n\t\tif (cachedFilter && hasSameProperties(this.filter, cachedFilter)) {\n\t\t\tthis.filter = Object.assign({}, this.filter, cachedFilter)\n\t\t}\n\t},\n}\n\n/**\n * Compares two object's top level properties. Returns true\n * if obj2 contains all of obj1's properties\n *\n * @param {*} obj1\n * @param {*} obj2\n * @returns\n */\nfunction hasSameProperties(obj1, obj2) {\n\treturn Object.keys(obj1).every(function(prop) {\n\t\treturn obj2.hasOwnProperty(prop)\n\t})\n}\n"],"sourceRoot":""}