@perevorot/shop 2.0.38 → 2.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/shop/cart/Cart.js +1 -1
- package/dist/components/shop/cart/Cart.js.map +1 -1
- package/dist/components/shop/cart/CartItem.js +1 -1
- package/dist/components/shop/cart/CartItem.js.map +1 -1
- package/dist/components/shop/order/Checkout.js +1 -1
- package/dist/components/shop/order/Checkout.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CartItem.js","sources":["../../../../src/components/shop/cart/CartItem.vue","../../../../src/components/shop/cart/CartItem.vue?vue&type=template&id=bf13fdde&lang.js"],"sourcesContent":["<template>\n <div class=\"columns is-multiline shop-cart-item\" v-if=\"!item.deleted\" v-bind:class=\"{ inactive: item.attributes.active === false, 'is-bundle': item.attributes.bundle }\">\n <div class=\"column is-12\" v-if=\"item.attributes.bundle\">\n <div class=\"bundle-title\">{{ __('shop.cart.bundle') }}</div>\n </div>\n <div class=\"column name\">\n <div class=\"columns\" v-bind:class=\"{ 'mb-0': item.attributes.bundle }\">\n <div class=\"column is-narrow\">\n <div class=\"cart-actions\">\n <button class=\"remove\" @click=\"remove\" :disabled=\"loading\">\n <svg class=\"icon\"><use xlink:href=\"#cart-remove\" /></svg>\n </button>\n <wishlist-add :id=\"item.id\" v-if=\"auth && !item.attributes.bundle\"></wishlist-add>\n </div>\n </div>\n <div class=\"column is-narrow\">\n <a @click=\"gotoProduct(item.attributes.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.image }\">\n <img :src=\"item.attributes.image\" v-if=\"item.attributes.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"columns is-gapless mb-0\">\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.code\">{{ __('shop.cart.code') }} {{ item.attributes.code }}</div>\n <div class=\"title\">\n <span v-if=\"item.attributes.active === false\">\n {{ item.name }}\n </span>\n <a @click=\"gotoProduct(item.attributes.href)\" v-else>{{ item.name }}</a>\n </div>\n </div>\n <div class=\"column is-narrow has-text-right is-relative\" v-if=\"true || $env.shop.isChangeQuantity\">\n <div class=\"quantity\">\n <button class=\"button decrease\" @click=\"decrease\" :disabled=\"loading || item.quantity == 1\">\n <svg><use xlink:href=\"#cart-minus\" /></svg>\n </button>\n <input class=\"input is-small\" type=\"number\" min=\"1\" v-model=\"item.quantity\" disabled />\n <button class=\"button increase\" @click=\"increase\" :disabled=\"loading\">\n <svg><use xlink:href=\"#cart-plus\" /></svg>\n </button>\n </div>\n <div class=\"quantity-price\" v-if=\"item.quantity > 1\"><span v-html=\"$filters.price(item.attributes.price)\"></span> / {{ __('shop.cart.q') }}</div>\n </div>\n <div class=\"column is-narrow has-text-right\" v-else>{{ item.quantity }}✕</div>\n <div class=\"column is-2 has-text-right\">\n <div class=\"price\" v-bind:class=\"{ 'bundle-price': item.attributes.bundle }\">\n <div v-if=\"item.attributes.priceOld\" class=\"price-old\" v-html=\"$filters.price(item.attributes.priceOld * item.quantity)\"></div>\n <div class=\"bundle-amount\" v-if=\"item.attributes.bundle && item.attributes.amount\" v-html=\"__('shop.cart.bundle_amount') + (item.attributes.amount.percent ? item.attributes.amount.percent + '%' : $filters.price(item.attributes.amount.sum * item.quantity))\"></div>\n <div v-html=\"$filters.price(item.attributes.price * item.quantity)\"></div>\n </div>\n </div>\n </div>\n <div class=\"options\" v-if=\"item.options && item.options.length\" v-bind:class=\"{ 'is-toggled': optionsToggled }\">\n <div class=\"toggler\" @click=\"optionsToggled = !optionsToggled\">\n <span>{{ __('shop.cart.additional') }} {{ item.options.length }}</span>\n <svg><use xlink:href=\"#arrow-down\" /></svg>\n </div>\n <div class=\"wrapper\" v-show=\"optionsToggled\">\n <div v-for=\"(option, index) in item.options\" v-bind:key=\"index\" class=\"columns\" v-bind:class=\"{ 'is-checked': options.indexOf(option.id) !== -1 }\">\n <div class=\"column is-narrow\">\n <input type=\"checkbox\" class=\"checkbox\" v-model=\"options\" :value=\"option.id\" :id=\"'option-' + item.id + '-' + option.id\" />\n </div>\n <div class=\"column\">\n <label class=\"option-title is-clickable\" :for=\"'option-' + item.id + '-' + option.id\">{{ option.name }}</label>\n <div class=\"option-description\" v-if=\"option.description\">{{ option.description }}</div>\n </div>\n <div class=\"column is-2 has-text-right\">+<span v-html=\"$filters.price(option.price)\"></span></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.second.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.second.image }\">\n <img :src=\"item.attributes.second.image\" v-if=\"item.attributes.second.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.second.code\">{{ __('shop.cart.code') }} {{ item.attributes.second.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.second.href)\">{{ item.attributes.second.name }}</a>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle && item.attributes.third\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.third.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.third.image }\">\n <img :src=\"item.attributes.third.image\" v-if=\"item.attributes.third.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.third.code\">{{ __('shop.cart.code') }} {{ item.attributes.third.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.third.href)\">{{ item.attributes.third.name }}</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nimport { ref, computed, watch } from 'vue';\nimport { useStore } from 'vuex';\n\nexport default {\n name: 'CartItem',\n props: {\n item: Object\n },\n setup(props) {\n const store = useStore();\n const loading = ref(false);\n const input = ref();\n const options = ref(props.item.attributes.options && props.item.attributes.options.length ? props.item.attributes.options : []);\n const optionsToggled = ref(false);\n const auth = computed(() => store.getters['auth/is']);\n\n if (props.item.attributes.options && props.item.attributes.options.length) {\n optionsToggled.value = true;\n }\n\n const remove = () => {\n loading.value = true;\n\n store.dispatch('cart/remove', {\n id: props.item.id,\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n const increase = () => {\n quantity(+1);\n };\n\n const decrease = () => {\n quantity(-1);\n };\n\n const quantity = (difference) => {\n loading.value = true;\n\n store.dispatch('cart/add', {\n product: {\n id: props.item.id,\n quantity: difference\n },\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n if (props.item.options && props.item.options.length) {\n watch(options, (options) => {\n loading.value = true;\n\n store.dispatch('cart/options', {\n product: {\n id: props.item.id,\n options: Object.values(options)\n },\n finally: () => {\n loading.value = false;\n }\n });\n });\n }\n\n const gotoProduct = (href) => {\n window.addEventListener('beforeunload', () => {\n store.commit('cart/modal', null);\n });\n\n window.location.href = href;\n };\n\n return {\n loading,\n increase,\n decrease,\n remove,\n options,\n optionsToggled,\n input,\n gotoProduct,\n auth\n };\n }\n};\n</script>","<template>\n <div class=\"columns is-multiline shop-cart-item\" v-if=\"!item.deleted\" v-bind:class=\"{ inactive: item.attributes.active === false, 'is-bundle': item.attributes.bundle }\">\n <div class=\"column is-12\" v-if=\"item.attributes.bundle\">\n <div class=\"bundle-title\">{{ __('shop.cart.bundle') }}</div>\n </div>\n <div class=\"column name\">\n <div class=\"columns\" v-bind:class=\"{ 'mb-0': item.attributes.bundle }\">\n <div class=\"column is-narrow\">\n <div class=\"cart-actions\">\n <button class=\"remove\" @click=\"remove\" :disabled=\"loading\">\n <svg class=\"icon\"><use xlink:href=\"#cart-remove\" /></svg>\n </button>\n <wishlist-add :id=\"item.id\" v-if=\"auth && !item.attributes.bundle\"></wishlist-add>\n </div>\n </div>\n <div class=\"column is-narrow\">\n <a @click=\"gotoProduct(item.attributes.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.image }\">\n <img :src=\"item.attributes.image\" v-if=\"item.attributes.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"columns is-gapless mb-0\">\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.code\">{{ __('shop.cart.code') }} {{ item.attributes.code }}</div>\n <div class=\"title\">\n <span v-if=\"item.attributes.active === false\">\n {{ item.name }}\n </span>\n <a @click=\"gotoProduct(item.attributes.href)\" v-else>{{ item.name }}</a>\n </div>\n </div>\n <div class=\"column is-narrow has-text-right is-relative\" v-if=\"true || $env.shop.isChangeQuantity\">\n <div class=\"quantity\">\n <button class=\"button decrease\" @click=\"decrease\" :disabled=\"loading || item.quantity == 1\">\n <svg><use xlink:href=\"#cart-minus\" /></svg>\n </button>\n <input class=\"input is-small\" type=\"number\" min=\"1\" v-model=\"item.quantity\" disabled />\n <button class=\"button increase\" @click=\"increase\" :disabled=\"loading\">\n <svg><use xlink:href=\"#cart-plus\" /></svg>\n </button>\n </div>\n <div class=\"quantity-price\" v-if=\"item.quantity > 1\"><span v-html=\"$filters.price(item.attributes.price)\"></span> / {{ __('shop.cart.q') }}</div>\n </div>\n <div class=\"column is-narrow has-text-right\" v-else>{{ item.quantity }}✕</div>\n <div class=\"column is-2 has-text-right\">\n <div class=\"price\" v-bind:class=\"{ 'bundle-price': item.attributes.bundle }\">\n <div v-if=\"item.attributes.priceOld\" class=\"price-old\" v-html=\"$filters.price(item.attributes.priceOld * item.quantity)\"></div>\n <div class=\"bundle-amount\" v-if=\"item.attributes.bundle && item.attributes.amount\" v-html=\"__('shop.cart.bundle_amount') + (item.attributes.amount.percent ? item.attributes.amount.percent + '%' : $filters.price(item.attributes.amount.sum * item.quantity))\"></div>\n <div v-html=\"$filters.price(item.attributes.price * item.quantity)\"></div>\n </div>\n </div>\n </div>\n <div class=\"options\" v-if=\"item.options && item.options.length\" v-bind:class=\"{ 'is-toggled': optionsToggled }\">\n <div class=\"toggler\" @click=\"optionsToggled = !optionsToggled\">\n <span>{{ __('shop.cart.additional') }} {{ item.options.length }}</span>\n <svg><use xlink:href=\"#arrow-down\" /></svg>\n </div>\n <div class=\"wrapper\" v-show=\"optionsToggled\">\n <div v-for=\"(option, index) in item.options\" v-bind:key=\"index\" class=\"columns\" v-bind:class=\"{ 'is-checked': options.indexOf(option.id) !== -1 }\">\n <div class=\"column is-narrow\">\n <input type=\"checkbox\" class=\"checkbox\" v-model=\"options\" :value=\"option.id\" :id=\"'option-' + item.id + '-' + option.id\" />\n </div>\n <div class=\"column\">\n <label class=\"option-title is-clickable\" :for=\"'option-' + item.id + '-' + option.id\">{{ option.name }}</label>\n <div class=\"option-description\" v-if=\"option.description\">{{ option.description }}</div>\n </div>\n <div class=\"column is-2 has-text-right\">+<span v-html=\"$filters.price(option.price)\"></span></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.second.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.second.image }\">\n <img :src=\"item.attributes.second.image\" v-if=\"item.attributes.second.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.second.code\">{{ __('shop.cart.code') }} {{ item.attributes.second.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.second.href)\">{{ item.attributes.second.name }}</a>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle && item.attributes.third\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.third.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.third.image }\">\n <img :src=\"item.attributes.third.image\" v-if=\"item.attributes.third.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.third.code\">{{ __('shop.cart.code') }} {{ item.attributes.third.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.third.href)\">{{ item.attributes.third.name }}</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nimport { ref, computed, watch } from 'vue';\nimport { useStore } from 'vuex';\n\nexport default {\n name: 'CartItem',\n props: {\n item: Object\n },\n setup(props) {\n const store = useStore();\n const loading = ref(false);\n const input = ref();\n const options = ref(props.item.attributes.options && props.item.attributes.options.length ? props.item.attributes.options : []);\n const optionsToggled = ref(false);\n const auth = computed(() => store.getters['auth/is']);\n\n if (props.item.attributes.options && props.item.attributes.options.length) {\n optionsToggled.value = true;\n }\n\n const remove = () => {\n loading.value = true;\n\n store.dispatch('cart/remove', {\n id: props.item.id,\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n const increase = () => {\n quantity(+1);\n };\n\n const decrease = () => {\n quantity(-1);\n };\n\n const quantity = (difference) => {\n loading.value = true;\n\n store.dispatch('cart/add', {\n product: {\n id: props.item.id,\n quantity: difference\n },\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n if (props.item.options && props.item.options.length) {\n watch(options, (options) => {\n loading.value = true;\n\n store.dispatch('cart/options', {\n product: {\n id: props.item.id,\n options: Object.values(options)\n },\n finally: () => {\n loading.value = false;\n }\n });\n });\n }\n\n const gotoProduct = (href) => {\n window.addEventListener('beforeunload', () => {\n store.commit('cart/modal', null);\n });\n\n window.location.href = href;\n };\n\n return {\n loading,\n increase,\n decrease,\n remove,\n options,\n optionsToggled,\n input,\n gotoProduct,\n auth\n };\n }\n};\n</script>"],"names":["name","props","item","Object","setup","store","useStore","loading","ref","input","options","attributes","length","optionsToggled","auth","computed","getters","value","quantity","difference","dispatch","product","id","watch","values","increase","decrease","remove","gotoProduct","href","window","addEventListener","commit","location","_createElementVNode","$props","deleted","_createElementBlock","active","bundle","_hoisted_1","_hoisted_2","_ctx","_hoisted_3","_hoisted_4","_hoisted_5","onClick","$setup","disabled","_createBlock","_hoisted_9","image","src","_hoisted_14","_hoisted_15","_hoisted_16","code","_hoisted_17","_hoisted_18","_hoisted_20","_hoisted_21","type","min","_hoisted_28","innerHTML","price","_hoisted_31","priceOld","amount","percent","sum","_hoisted_35","_hoisted_36","option","index","key","indexOf","_hoisted_37","_hoisted_39","description","_hoisted_41","_hoisted_42","_hoisted_45","_hoisted_46","_hoisted_47","_hoisted_48","second","_hoisted_53","_hoisted_54","_hoisted_55","third","_hoisted_56","_hoisted_57","_hoisted_58","_hoisted_59","_hoisted_64","_hoisted_65","_hoisted_66"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"CartItem.js","sources":["../../../../src/components/shop/cart/CartItem.vue","../../../../src/components/shop/cart/CartItem.vue?vue&type=template&id=6a4eff4e&lang.js"],"sourcesContent":["<template>\n <div class=\"columns is-multiline shop-cart-item\" v-if=\"!item.deleted\" v-bind:class=\"{ inactive: item.attributes.active === false, 'is-bundle': item.attributes.bundle }\">\n <div class=\"column is-12\" v-if=\"item.attributes.bundle\">\n <div class=\"bundle-title\">{{ __('shop.cart.bundle') }}</div>\n </div>\n <div class=\"column name\">\n <div class=\"columns\" v-bind:class=\"{ 'mb-0': item.attributes.bundle }\">\n <div class=\"column is-narrow\">\n <div class=\"cart-actions\">\n <button class=\"remove\" @click=\"remove\" :disabled=\"loading\">\n <svg class=\"icon\"><use xlink:href=\"#cart-remove\" /></svg>\n </button>\n <wishlist-add :id=\"item.id\" v-if=\"auth && !item.attributes.bundle\"></wishlist-add>\n </div>\n </div>\n <div class=\"column is-narrow\">\n <a @click=\"gotoProduct(item.attributes.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.image }\">\n <img :src=\"item.attributes.image\" v-if=\"item.attributes.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"columns is-gapless mb-0\">\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.code\">{{ __('shop.cart.code') }} {{ item.attributes.code }}</div>\n <div class=\"title\">\n <span v-if=\"item.attributes.active === false\">\n {{ item.name }}\n </span>\n <a @click=\"gotoProduct(item.attributes.href)\" v-else>{{ item.name }}</a>\n </div>\n </div>\n <div class=\"column is-narrow has-text-right is-relative\" v-if=\"true || $env.shop.isChangeQuantity\">\n <div class=\"quantity\">\n <button class=\"button decrease\" @click=\"decrease\" :disabled=\"loading || item.quantity == 1\">\n <svg><use xlink:href=\"#cart-minus\" /></svg>\n </button>\n <input class=\"input is-small\" type=\"number\" min=\"1\" v-model=\"item.quantity\" disabled />\n <button class=\"button increase\" @click=\"increase\" :disabled=\"loading\">\n <svg><use xlink:href=\"#cart-plus\" /></svg>\n </button>\n </div>\n <div class=\"quantity-price\" v-if=\"item.quantity > 1\"><span v-html=\"$filters.price(item.attributes.price)\"></span> / {{ __('shop.cart.q') }}</div>\n </div>\n <div class=\"column is-narrow has-text-right\" v-else>{{ item.quantity }}✕</div>\n <div class=\"column is-2 has-text-right\">\n <div class=\"price\" v-bind:class=\"{ 'bundle-price': item.attributes.bundle }\">\n <div v-if=\"item.attributes.priceOld\" class=\"price-old\" v-html=\"$filters.price(item.attributes.priceOld * item.quantity)\"></div>\n <div class=\"bundle-amount\" v-if=\"item.attributes.bundle && item.attributes.amount\" v-html=\"__('shop.cart.bundle_amount') + (item.attributes.amount.percent ? item.attributes.amount.percent + '%' : $filters.price(item.attributes.amount.sum * item.quantity))\"></div>\n <div v-html=\"$filters.price(item.attributes.price * item.quantity)\"></div>\n </div>\n </div>\n </div>\n <div class=\"options\" v-if=\"item.options && item.options.length\" v-bind:class=\"{ 'is-toggled': optionsToggled }\">\n <div class=\"toggler\" @click=\"optionsToggled = !optionsToggled\">\n <span>{{ __('shop.cart.additional') }} {{ item.options.length }}</span>\n <svg><use xlink:href=\"#arrow-down\" /></svg>\n </div>\n <div class=\"wrapper\" v-show=\"optionsToggled\">\n <div v-for=\"(option, index) in item.options\" v-bind:key=\"index\" class=\"columns\" v-bind:class=\"{ 'is-checked': options.indexOf(option.id) !== -1 }\">\n <div class=\"column is-narrow\">\n <input type=\"checkbox\" class=\"checkbox\" v-model=\"options\" :value=\"option.id\" :id=\"'option-' + item.id + '-' + option.id\" />\n </div>\n <div class=\"column\">\n <label class=\"option-title is-clickable\" :for=\"'option-' + item.id + '-' + option.id\">{{ option.name }}</label>\n <div class=\"option-description\" v-if=\"option.description\">{{ option.description }}</div>\n </div>\n <div class=\"column is-2 has-text-right\">+<span v-html=\"$filters.price(option.price)\"></span></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.second.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.second.image }\">\n <img :src=\"item.attributes.second.image\" v-if=\"item.attributes.second.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.second.code\">{{ __('shop.cart.code') }} {{ item.attributes.second.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.second.href)\">{{ item.attributes.second.name }}</a>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle && item.attributes.third\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.third.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.third.image }\">\n <img :src=\"item.attributes.third.image\" v-if=\"item.attributes.third.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.third.code\">{{ __('shop.cart.code') }} {{ item.attributes.third.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.third.href)\">{{ item.attributes.third.name }}</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nimport { ref, computed, watch } from 'vue';\nimport { useStore } from 'vuex';\n\nexport default {\n name: 'CartItem',\n props: {\n item: Object\n },\n setup(props) {\n const store = useStore();\n const loading = ref(false);\n const input = ref();\n const options = ref(props.item.attributes.options && props.item.attributes.options.length ? props.item.attributes.options : []);\n const optionsToggled = ref(false);\n const auth = computed(() => store.getters['auth/is']);\n\n if (props.item.attributes.options && props.item.attributes.options.length) {\n optionsToggled.value = true;\n }\n\n const remove = () => {\n loading.value = true;\n\n store.dispatch('cart/remove', {\n id: props.item.id,\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n const increase = () => {\n quantity(+1);\n };\n\n const decrease = () => {\n quantity(-1);\n };\n\n const quantity = (difference) => {\n loading.value = true;\n\n store.dispatch('cart/add', {\n product: {\n id: props.item.id,\n quantity: difference\n },\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n if (props.item.options && props.item.options.length) {\n watch(options, (options) => {\n loading.value = true;\n\n store.dispatch('cart/options', {\n product: {\n id: props.item.id,\n options: Object.values(options)\n },\n finally: () => {\n loading.value = false;\n }\n });\n });\n }\n\n const gotoProduct = (href) => {\n window.addEventListener('beforeunload', () => {\n store.commit('cart/modal', null);\n });\n\n window.addEventListener('pagehide', () => {\n store.commit('cart/modal', null);\n });\n\n window.location.href = href;\n };\n\n return {\n loading,\n increase,\n decrease,\n remove,\n options,\n optionsToggled,\n input,\n gotoProduct,\n auth\n };\n }\n};\n</script>","<template>\n <div class=\"columns is-multiline shop-cart-item\" v-if=\"!item.deleted\" v-bind:class=\"{ inactive: item.attributes.active === false, 'is-bundle': item.attributes.bundle }\">\n <div class=\"column is-12\" v-if=\"item.attributes.bundle\">\n <div class=\"bundle-title\">{{ __('shop.cart.bundle') }}</div>\n </div>\n <div class=\"column name\">\n <div class=\"columns\" v-bind:class=\"{ 'mb-0': item.attributes.bundle }\">\n <div class=\"column is-narrow\">\n <div class=\"cart-actions\">\n <button class=\"remove\" @click=\"remove\" :disabled=\"loading\">\n <svg class=\"icon\"><use xlink:href=\"#cart-remove\" /></svg>\n </button>\n <wishlist-add :id=\"item.id\" v-if=\"auth && !item.attributes.bundle\"></wishlist-add>\n </div>\n </div>\n <div class=\"column is-narrow\">\n <a @click=\"gotoProduct(item.attributes.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.image }\">\n <img :src=\"item.attributes.image\" v-if=\"item.attributes.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"columns is-gapless mb-0\">\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.code\">{{ __('shop.cart.code') }} {{ item.attributes.code }}</div>\n <div class=\"title\">\n <span v-if=\"item.attributes.active === false\">\n {{ item.name }}\n </span>\n <a @click=\"gotoProduct(item.attributes.href)\" v-else>{{ item.name }}</a>\n </div>\n </div>\n <div class=\"column is-narrow has-text-right is-relative\" v-if=\"true || $env.shop.isChangeQuantity\">\n <div class=\"quantity\">\n <button class=\"button decrease\" @click=\"decrease\" :disabled=\"loading || item.quantity == 1\">\n <svg><use xlink:href=\"#cart-minus\" /></svg>\n </button>\n <input class=\"input is-small\" type=\"number\" min=\"1\" v-model=\"item.quantity\" disabled />\n <button class=\"button increase\" @click=\"increase\" :disabled=\"loading\">\n <svg><use xlink:href=\"#cart-plus\" /></svg>\n </button>\n </div>\n <div class=\"quantity-price\" v-if=\"item.quantity > 1\"><span v-html=\"$filters.price(item.attributes.price)\"></span> / {{ __('shop.cart.q') }}</div>\n </div>\n <div class=\"column is-narrow has-text-right\" v-else>{{ item.quantity }}✕</div>\n <div class=\"column is-2 has-text-right\">\n <div class=\"price\" v-bind:class=\"{ 'bundle-price': item.attributes.bundle }\">\n <div v-if=\"item.attributes.priceOld\" class=\"price-old\" v-html=\"$filters.price(item.attributes.priceOld * item.quantity)\"></div>\n <div class=\"bundle-amount\" v-if=\"item.attributes.bundle && item.attributes.amount\" v-html=\"__('shop.cart.bundle_amount') + (item.attributes.amount.percent ? item.attributes.amount.percent + '%' : $filters.price(item.attributes.amount.sum * item.quantity))\"></div>\n <div v-html=\"$filters.price(item.attributes.price * item.quantity)\"></div>\n </div>\n </div>\n </div>\n <div class=\"options\" v-if=\"item.options && item.options.length\" v-bind:class=\"{ 'is-toggled': optionsToggled }\">\n <div class=\"toggler\" @click=\"optionsToggled = !optionsToggled\">\n <span>{{ __('shop.cart.additional') }} {{ item.options.length }}</span>\n <svg><use xlink:href=\"#arrow-down\" /></svg>\n </div>\n <div class=\"wrapper\" v-show=\"optionsToggled\">\n <div v-for=\"(option, index) in item.options\" v-bind:key=\"index\" class=\"columns\" v-bind:class=\"{ 'is-checked': options.indexOf(option.id) !== -1 }\">\n <div class=\"column is-narrow\">\n <input type=\"checkbox\" class=\"checkbox\" v-model=\"options\" :value=\"option.id\" :id=\"'option-' + item.id + '-' + option.id\" />\n </div>\n <div class=\"column\">\n <label class=\"option-title is-clickable\" :for=\"'option-' + item.id + '-' + option.id\">{{ option.name }}</label>\n <div class=\"option-description\" v-if=\"option.description\">{{ option.description }}</div>\n </div>\n <div class=\"column is-2 has-text-right\">+<span v-html=\"$filters.price(option.price)\"></span></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.second.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.second.image }\">\n <img :src=\"item.attributes.second.image\" v-if=\"item.attributes.second.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.second.code\">{{ __('shop.cart.code') }} {{ item.attributes.second.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.second.href)\">{{ item.attributes.second.name }}</a>\n </div>\n </div>\n </div>\n <div class=\"bundle columns\" v-if=\"item.attributes.bundle && item.attributes.third\">\n <div class=\"column is-narrow\">\n <div class=\"cart-bundle-spacer\"></div>\n </div>\n <div class=\"column is-narrow\">\n <svg class=\"bundle-icon\"><use xlink:href=\"#bundle-plus\" /></svg>\n <a @click=\"gotoProduct(item.attributes.third.href)\">\n <figure class=\"image is-square\" v-bind:class=\"{ 'no-thumb': !item.attributes.third.image }\">\n <img :src=\"item.attributes.third.image\" v-if=\"item.attributes.third.image\" />\n <svg v-else><use xlink:href=\"#logo\" /></svg>\n </figure>\n </a>\n </div>\n <div class=\"column\">\n <div class=\"code\" v-if=\"item.attributes.third.code\">{{ __('shop.cart.code') }} {{ item.attributes.third.code }}</div>\n <div class=\"title\">\n <a @click=\"gotoProduct(item.attributes.third.href)\">{{ item.attributes.third.name }}</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nimport { ref, computed, watch } from 'vue';\nimport { useStore } from 'vuex';\n\nexport default {\n name: 'CartItem',\n props: {\n item: Object\n },\n setup(props) {\n const store = useStore();\n const loading = ref(false);\n const input = ref();\n const options = ref(props.item.attributes.options && props.item.attributes.options.length ? props.item.attributes.options : []);\n const optionsToggled = ref(false);\n const auth = computed(() => store.getters['auth/is']);\n\n if (props.item.attributes.options && props.item.attributes.options.length) {\n optionsToggled.value = true;\n }\n\n const remove = () => {\n loading.value = true;\n\n store.dispatch('cart/remove', {\n id: props.item.id,\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n const increase = () => {\n quantity(+1);\n };\n\n const decrease = () => {\n quantity(-1);\n };\n\n const quantity = (difference) => {\n loading.value = true;\n\n store.dispatch('cart/add', {\n product: {\n id: props.item.id,\n quantity: difference\n },\n finally: () => {\n loading.value = false;\n }\n });\n };\n\n if (props.item.options && props.item.options.length) {\n watch(options, (options) => {\n loading.value = true;\n\n store.dispatch('cart/options', {\n product: {\n id: props.item.id,\n options: Object.values(options)\n },\n finally: () => {\n loading.value = false;\n }\n });\n });\n }\n\n const gotoProduct = (href) => {\n window.addEventListener('beforeunload', () => {\n store.commit('cart/modal', null);\n });\n\n window.addEventListener('pagehide', () => {\n store.commit('cart/modal', null);\n });\n\n window.location.href = href;\n };\n\n return {\n loading,\n increase,\n decrease,\n remove,\n options,\n optionsToggled,\n input,\n gotoProduct,\n auth\n };\n }\n};\n</script>"],"names":["name","props","item","Object","setup","store","useStore","loading","ref","input","options","attributes","length","optionsToggled","auth","computed","getters","value","quantity","difference","dispatch","product","id","watch","values","increase","decrease","remove","gotoProduct","href","window","addEventListener","commit","location","_createElementVNode","$props","deleted","_createElementBlock","active","bundle","_hoisted_1","_hoisted_2","_ctx","_hoisted_3","_hoisted_4","_hoisted_5","onClick","$setup","disabled","_createBlock","_hoisted_9","image","src","_hoisted_14","_hoisted_15","_hoisted_16","code","_hoisted_17","_hoisted_18","_hoisted_20","_hoisted_21","type","min","_hoisted_28","innerHTML","price","_hoisted_31","priceOld","amount","percent","sum","_hoisted_35","_hoisted_36","option","index","key","indexOf","_hoisted_37","_hoisted_39","description","_hoisted_41","_hoisted_42","_hoisted_45","_hoisted_46","_hoisted_47","_hoisted_48","second","_hoisted_53","_hoisted_54","_hoisted_55","third","_hoisted_56","_hoisted_57","_hoisted_58","_hoisted_59","_hoisted_64","_hoisted_65","_hoisted_66"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("vue"),t=require("@perevorot/shop/dist/helpers"),n=require("vuex"),o=require("formvuelate"),r=require("@formvuelate/plugin-vee-validate"),i=require("@perevorot/shop/dist/forms/FormText"),l=require("yup"),a=require("vue-toastification");function c(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function s(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var d=c(r),u=c(i),m=s(l),p=e.defineComponent({name:"CheckoutItem",props:{item:Object},setup:function(t){var n=e.computed((function(){return t.item.attributes.options&&t.item.attributes.options.length?t.item.attributes.options:[]}));return{itemOptions:e.computed((function(){return t.item.options&&t.item.options.length?t.item.options.filter((function(e){return-1!==n.value.indexOf(e.id)})):[]}))}}}),v={key:0,class:"column is-12"},h={class:"bundle-title"},f={class:"column name"},g={class:"column is-narrow"},k=["href"],E=["src"],V={key:1},y=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],N={class:"column"},_={class:"columns is-gapless mb-0"},b={class:"column"},B={key:0,class:"code"},S={class:"title"},C=["href"],w={class:"column is-2 has-text-centered is-relative"},D={class:"quantity"},T={key:0,class:"quantity-price"},x=["innerHTML"],M={class:"column is-2 has-text-right"},L=["innerHTML"],H=["innerHTML"],q=["innerHTML"],O={key:0,class:"options is-toggled"},$={class:"toggler"},F={class:"wrapper"},z={class:"column"},R={class:"option-title"},P={class:"column is-2 has-text-right"},j=e.createTextVNode("+"),J=["innerHTML"],U={key:0,class:"bundle columns"},I={class:"column is-narrow"},A=e.createElementVNode("svg",{class:"bundle-icon"},[e.createElementVNode("use",{"xlink:href":"#bundle-plus"})],-1),G=["href"],K=["src"],Q={key:1},W=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],X={class:"column"},Y={key:0,class:"code"},Z={class:"title"},ee=["href"],te={key:1,class:"bundle columns"},ne={class:"column is-narrow"},oe=e.createElementVNode("svg",{class:"bundle-icon"},[e.createElementVNode("use",{"xlink:href":"#bundle-plus"})],-1),re=["href"],ie=["src"],le={key:1},ae=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],ce={class:"column"},se={key:0,class:"code"},de={class:"title"},ue=["href"];p.render=function(t,n,o,r,i,l){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["columns is-multiline shop-cart-item",{"is-bundle":t.item.attributes.bundle}])},[t.item.attributes.bundle?(e.openBlock(),e.createElementBlock("div",v,[e.createElementVNode("div",h,e.toDisplayString(t.__("shop.cart.bundle")),1)])):e.createCommentVNode("v-if",!0),e.createElementVNode("div",f,[e.createElementVNode("div",{class:e.normalizeClass(["columns",{"mb-0":t.item.attributes.bundle}])},[e.createElementVNode("div",g,[e.createElementVNode("a",{href:t.item.attributes.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.image}])},[t.item.attributes.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.image},null,8,E)):(e.openBlock(),e.createElementBlock("svg",V,y))],2)],8,k)]),e.createElementVNode("div",N,[e.createElementVNode("div",_,[e.createElementVNode("div",b,[t.item.attributes.code?(e.openBlock(),e.createElementBlock("div",B,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",S,[e.createElementVNode("a",{href:t.item.attributes.href},e.toDisplayString(t.item.name),9,C)])]),e.createElementVNode("div",w,[e.createElementVNode("div",D,"⨉ "+e.toDisplayString(t.item.quantity),1),parseInt(t.item.quantity)>1?(e.openBlock(),e.createElementBlock("div",T,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.item.attributes.price)},null,8,x),e.createTextVNode(" / "+e.toDisplayString(t.__("shop.cart.q")),1)])):e.createCommentVNode("v-if",!0)]),e.createElementVNode("div",M,[e.createElementVNode("div",{class:e.normalizeClass(["price",{"bundle-price":t.item.attributes.bundle}])},[t.item.attributes.priceOld?(e.openBlock(),e.createElementBlock("div",{key:0,class:"price-old",innerHTML:t.$filters.price(t.item.attributes.priceOld*t.item.quantity)},null,8,L)):e.createCommentVNode("v-if",!0),t.item.attributes.bundle&&t.item.attributes.amount?(e.openBlock(),e.createElementBlock("div",{key:1,class:"bundle-amount",innerHTML:t.__("shop.cart.bundle_amount")+(t.item.attributes.amount.percent?t.item.attributes.amount.percent+"%":t.$filters.price(t.item.attributes.amount.sum*t.item.quantity))},null,8,H)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",{innerHTML:t.$filters.price(t.item.attributes.price*t.item.quantity)},null,8,q)],2)])]),t.itemOptions&&t.itemOptions.length?(e.openBlock(),e.createElementBlock("div",O,[e.createElementVNode("div",$,[e.createElementVNode("span",null,e.toDisplayString(t.__("shop.cart.additional"))+" "+e.toDisplayString(t.itemOptions.length),1)]),e.createElementVNode("div",F,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.itemOptions,(function(n,o){return e.openBlock(),e.createElementBlock("div",{key:o,class:"columns is-checked"},[e.createElementVNode("div",z,[e.createElementVNode("div",R,e.toDisplayString(n.name),1)]),e.createElementVNode("div",P,[j,e.createElementVNode("span",{innerHTML:t.$filters.price(n.price)},null,8,J)])])})),128))])])):e.createCommentVNode("v-if",!0)])],2),t.item.attributes.bundle?(e.openBlock(),e.createElementBlock("div",U,[e.createElementVNode("div",I,[A,e.createElementVNode("a",{href:t.item.attributes.second.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.second.image}])},[t.item.attributes.second.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.second.image},null,8,K)):(e.openBlock(),e.createElementBlock("svg",Q,W))],2)],8,G)]),e.createElementVNode("div",X,[t.item.attributes.second.code?(e.openBlock(),e.createElementBlock("div",Y,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.second.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",Z,[e.createElementVNode("a",{href:t.item.attributes.second.href},e.toDisplayString(t.item.attributes.second.name),9,ee)])])])):e.createCommentVNode("v-if",!0),t.item.attributes.bundle&&t.item.attributes.third?(e.openBlock(),e.createElementBlock("div",te,[e.createElementVNode("div",ne,[oe,e.createElementVNode("a",{href:t.item.attributes.third.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.third.image}])},[t.item.attributes.third.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.third.image},null,8,ie)):(e.openBlock(),e.createElementBlock("svg",le,ae))],2)],8,re)]),e.createElementVNode("div",ce,[t.item.attributes.third.code?(e.openBlock(),e.createElementBlock("div",se,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.third.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",de,[e.createElementVNode("a",{href:t.item.attributes.third.href},e.toDisplayString(t.item.attributes.third.name),9,ue)])])])):e.createCommentVNode("v-if",!0)])],2)},e.markRaw(u.default);var me=o.SchemaFormFactory([d.default({})]);window.viewedSwiperOptions={slidesPerView:"auto",freeMode:!0,slideClass:"product",mousewheel:{forceToAxis:!0},navigation:{nextEl:".next",prevEl:".prev"},observer:!0,observeParents:!0};var pe=e.defineComponent({components:{CheckoutItem:p,SchemaForm:me},name:"order-checkout",setup:function(){var r=a.useToast(),i=n.useStore(),l=e.ref(!1),c=e.computed((function(){return i.getters["cart/quantity"]})),s=e.computed((function(){return i.getters["cart/items"]})),d=e.computed((function(){return i.getters["cart/total"]})),p=e.computed((function(){return i.getters["auth/is"]})),v=e.computed((function(){return i.getters["checkout/user"]})),h=e.ref(!0),f=e.ref(null),g=e.ref(!1),k=e.ref(null),E=e.ref({}),V=e.ref([]),y=e.ref([]),N=e.ref("new"),_=e.ref(null),b=e.computed((function(){return i.getters["checkout/shippingData"]})),B=e.ref(!1),S=e.computed({get:function(){return i.getters["checkout/dontcall"]},set:function(e){i.commit("checkout/dontcall",e)}}),C=e.computed({get:function(){var e=i.getters["checkout/comment"];return e&&(B.value=!0),e},set:function(e){i.commit("checkout/comment",e)}});e.watch(C,(function(e){e.length>1e3&&(C.value=C.value.substring(0,1e3))}));var w=function(t){return e.computed({get:function(){return v.value[t]},set:function(e){var n=JSON.parse(JSON.stringify(v.value));n[t]=e,i.commit("checkout/user",n)}})},D=e.ref({last_name:w("last_name"),name:w("name"),email:w("email"),phone:w("phone")});i.dispatch("auth/me",{finally:function(){}});var T=e.computed({get:function(){return i.getters["checkout/shipping"]},set:function(e){i.commit("checkout/shipping",e)}}),x=e.computed({get:function(){return i.getters["checkout/payment"]},set:function(e){i.commit("checkout/payment",e)}}),M=e.computed((function(){return T.value?V.value.find((function(e){return e.id==T.value})):{}})),L=e.computed((function(){return x.value?y.value.find((function(e){return e.id==x.value})):{}})),H=e.computed((function(){return z(V.value,T.value)})),q=e.computed((function(){return z(y.value,x.value)})),O=e.computed((function(){return R(V.value)})),$=e.computed((function(){return R(y.value)})),F=e.computed((function(){var e=[];return s.value.forEach((function(t){-1===e.indexOf(t.category_id)&&e.push(t.category_id)})),e})),z=function(e,t){var n=0;if(t){var o=e.find((function(e){return e.id==t}));o&&(n="sum"==o.type?o.amount:Math.round(d.value*o.amount/100))}return n},R=function(e){var t=[];return e.forEach((function(e){if(e.restrictions&&Object.keys(e.restrictions).length){var n=!0,o=e.restrictions;o.price_min&&o.price_max?(n=d.value>=o.price_min&&d.value<=o.price_max,e.restrictedForce=!n):o.price_min?(n=d.value>=o.price_min,e.restrictedForce=!n):o.price_max&&(n=d.value<=o.price_max,e.restrictedForce=!n),n&&T.value&&o.shipping_type&&o.shipping_type.length&&(n=-1!==o.shipping_type.indexOf(T.value)),n&&x.value&&o.payment_method&&o.payment_method.length&&(n=-1!==o.payment_method.indexOf(x.value)),n&&o.categories&&o.categories.length&&(n=!F.value.filter((function(e){return!o.categories.includes(e)})).length,e.restrictedForce=!n),e.restricted=!n}else e.restricted=!1;e.restrictedForce||t.push(e)})),t},P=e.computed((function(){var e=0;return s.value.forEach((function(t){var n=0;t.attributes.priceOld&&(n=t.attributes.priceOld-t.attributes.price),e+=n*t.quantity})),e}));$http.post(window.location.href).then((function(e){V.value=e.data.shipping,y.value=e.data.payment})),e.watch(N,(function(e){"login"==e&&i.commit("auth/modal","login")}));var j=e.ref({last_name:{component:u.default,label:__("auth.registration.form.last_name"),model:"last_name"},name:{component:u.default,label:__("auth.registration.form.name"),model:"first_name"},phone:{component:u.default,label:__("auth.registration.form.phone"),model:"phone",mask:"(###) ###-##-##",type:"phone"},email:{component:u.default,label:__("auth.login.form.email"),model:"email"}});o.useSchemaForm(D);var J=m.object().shape({last_name:m.string().trim().required(__("auth.validation.required")),name:m.string().trim().required(__("auth.validation.required")),phone:m.string().required(__("auth.validation.phone")).matches(/^\(\d{3}\) \d{3}\-\d{2}\-\d{2}$/,__("auth.validation.phone")),email:m.string().trim().email(__("auth.validation.email")).required(__("auth.validation.required"))});window.addEventListener("beforeunload",(function(){i.commit("auth/modal",null)}));var U=function(){i.commit("checkout/reset")};return{auth:p,userType:N,facebook:function(){window.location.href=$ziggy("auth.login.social",{provider:"facebook"})},google:function(){window.location.href=$ziggy("auth.login.social",{provider:"google"})},loginCallback:function(){N.value="new"},quantity:c,items:s,loading:l,pluralize:t.pluralize,discount:P,total:d,shipping:T,shippingPrice:H,payment:x,fee:q,userValidation:J,userSchema:j,userSubmitButton:_,checkout:function(){J.isValid(D.value).then((function(e){if(e)if(T.value)if(b.value[M.value.code]&&b.value[M.value.code].isValid)if(x.value){var t=JSON.parse(JSON.stringify(b.value[M.value.code]));delete t.isValid;var n={checkout:!0,user:{last_name:D.value.last_name,name:D.value.name,phone:D.value.phone,email:D.value.email},shipping:{id:T.value,data:t},payment:{id:x.value},comment:C.value,dontcall:S.value};l.value=!0,$http.post(window.location.href,n).then((function(e){if(e.data.redirect)E.value={url:e.data.redirect.url,data:e.data.redirect.data};else{var t=[];s.value.forEach((function(e){t.push({name:e.name,id:e.attributes.code,price:e.attributes.price,brand:e.attributes.brand,category:e.attributes.category,quantity:e.quantity})}));var n={ecommerce:{purchase:{actionField:{id:e.data.order.id,affiliation:"mrfix.ua",revenue:d.value+q.value+H.value,tax:"0",shipping:H.value},products:[t]}},event:"gtm-ee-event","gtm-ee-event-category":"Ecommerce","gtm-ee-event-action":"Purchase","gtm-ee-event-non-interaction":"False"};window.dataLayer&&(window.dataLayer.push({ecommerce:null}),window.dataLayer.push(n))}g.value=!0,k.value=e.data.order,U()})).catch((function(e){r(__("shop.order.error"),{type:"error"}),console.error(e)})).finally((function(){l.value=!1}))}else r(__("shop.order.validate_payment"),{type:"error"});else r(__("shop.order.validate_shipping1")+": «"+M.value.name+"»",{type:"error"});else r(__("shop.order.validate_shipping"),{type:"error"});else N.value="new",_.value.click(),r(__("shop.order.validate_user"),{type:"error"})}))},ifCheckoutReady:h,validate:function(){J.isValid(D.value).then((function(e){h.value=e&&x.value&&T.value&&(!M.value.component||M.value.component&&b.value[M.value.code]&&b.value[M.value.code].isValid)}))},shippingTypesRestricted:O,paymentMethodsRestricted:$,toggleShippingRadio:function(e){T.value===e&&(T.value=null)},togglePaymentRadio:function(e){x.value===e&&(x.value=null)},shippingSelected:M,paymentSelected:L,shippingComponentData:b,shippingStoreData:function(e,t,n){var o=JSON.parse(JSON.stringify(b.value));t.isValid=n,o[e]=t,i.commit("checkout/shippingData",o)},resertStore:U,user:D,dontcall:S,comment:C,isCommentToggled:B,commentMaxLength:1e3,userCheckout:v,thanks:g,order:k,redirect:E,redirectForm:f,home:function(){window.location.href=$env.locale.url?$env.locale.url:"/"}}}}),ve={class:"cart checkout"},he=["action"],fe=["name","value"],ge={key:1,class:"items-wrapper"},ke={class:"checkout-title"},Ee={class:"columns"},Ve={class:"column"},ye={class:"checkout-block items"},Ne={class:"title-row"},_e={class:"items-title"},be=["textContent"],Be=["innerHTML"],Se=["onClick"],Ce=e.createElementVNode("svg",null,[e.createElementVNode("use",{"xlink:href":"#cart-edit"})],-1),we={class:"checkout-block"},De={class:"wrapper"},Te={class:"items-title"},xe={key:0,class:"user-tabs"},Me={class:"columns"},Le={class:"column user-form"},He={type:"submit",ref:"userSubmitButton",class:"is-hidden"},qe={class:"column user-login user-form"},Oe={class:"column"},$e={key:0,class:"social-auth"},Fe={class:"socials"},ze={class:"description"},Re={class:"buttons"},Pe=[e.createElementVNode("svg",{class:"icon fb-btn"},[e.createElementVNode("use",{"xlink:href":"#logo-facebook-icon"})],-1),e.createElementVNode("span",null,"Facebook",-1)],je=[e.createElementVNode("svg",{class:"icon google-btn"},[e.createElementVNode("use",{"xlink:href":"#logo-google-icon"})],-1),e.createElementVNode("span",null,"Google",-1)],Je={class:"wrapper"},Ue={class:"rows"},Ie={class:"item"},Ae={class:"row"},Ge={class:"info"},Ke={class:"items-title mb-1"},Qe={class:"row"},We={class:"info"},Xe=["value","onClick"],Ye=["src"],Ze={key:1,class:"icon"},et=[e.createElementVNode("use",{"xlink:href":"#shipping"},null,-1)],tt={key:0,class:"description"},nt={class:"value"},ot={key:0,class:"green"},rt=["innerHTML"],it={class:"wrapper"},lt={class:"rows"},at={class:"item"},ct={class:"row"},st={class:"info"},dt={class:"items-title mb-1"},ut={class:"row no-icon"},mt={class:"info"},pt=["value","onClick"],vt={key:0,class:"description"},ht={key:0,class:"value"},ft=["innerHTML"],gt={class:"column is-4"},kt={class:"checkout-block summary"},Et={class:"items-title"},Vt={class:"rows"},yt={class:"row"},Nt={class:"info"},_t=["textContent"],bt={class:"value"},Bt=["innerHTML"],St={key:0,class:"row"},Ct={class:"info"},wt={class:"value"},Dt=["innerHTML"],Tt={key:1,class:"row"},xt={class:"info"},Mt={class:"value"},Lt=["innerHTML"],Ht={key:2,class:"row"},qt={class:"info"},Ot={class:"value"},$t=["innerHTML"],Ft={key:1,class:"green"},zt={class:"row"},Rt={class:"info"},Pt={class:"value orange"},jt=["innerHTML"],Jt={class:"checkbox-wrapper"},Ut=e.createElementVNode("svg",null,[e.createElementVNode("use",{"xlink:href":"#arrow-down"})],-1),It={class:"user-form"},At={key:0,class:"chars-count"},Gt={key:2,class:"checkout-block thanks"},Kt={class:"title"},Qt={class:"columns"},Wt={key:0,class:"column is-6"},Xt={class:"subtitle"},Yt={key:1,class:"column is-6"},Zt={class:"column is-6"},en={key:0,class:"info-wrapper"},tn={class:"title"},nn={class:"columns"},on=["innerHTML"],rn=["innerHTML"],ln={key:1,class:"info-wrapper"},an={class:"title"},cn={class:"columns"},sn=["innerHTML"],dn=["innerHTML"],un={key:3,class:"checkout-block empty"},mn={class:"title"},pn={class:"message"},vn=["href"],hn=e.createTextVNode(", "),fn=e.createElementVNode("br",null,null,-1),gn=["href"];pe.render=function(t,n,o,r,i,l){var a=e.resolveComponent("checkout-item"),c=e.resolveComponent("cart-trigger"),s=e.resolveComponent("SchemaForm"),d=e.resolveComponent("login");return e.openBlock(),e.createElementBlock("div",ve,[t.redirect.url?(e.openBlock(),e.createElementBlock("form",{key:0,ref:"redirectForm",action:t.redirect.url,class:"is-hidden",method:"post"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.redirect.data,(function(t,n,o){return e.openBlock(),e.createElementBlock("input",{type:"hidden",name:n,value:t,key:o},null,8,fe)})),128))],8,he)):e.createCommentVNode("v-if",!0),t.items.length&&!t.thanks?(e.openBlock(),e.createElementBlock("div",ge,[e.createElementVNode("div",ke,e.toDisplayString(t.__("shop.order.checkout_title")),1),e.createElementVNode("div",Ee,[e.createElementVNode("div",Ve,[e.createElementVNode("div",ye,[e.createElementVNode("div",Ne,[e.createElementVNode("div",_e,[e.createTextVNode(e.toDisplayString(t.__("shop.order.your_order"))+" ",1),e.createElementVNode("span",{class:"ml-3",textContent:e.toDisplayString(t.pluralize(t.quantity,t.__("shop.pluralize.products")))},null,8,be),e.createElementVNode("span",{innerHTML:t.__("shop.cart.bysum")+" "+t.$filters.price(t.total)},null,8,Be)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(function(t){return e.openBlock(),e.createBlock(a,{key:t.id,item:t},null,8,["item"])})),128)),e.createVNode(c,{class:"trigger"},{default:e.withCtx((function(n){return[e.createElementVNode("button",{class:"button",onClick:n.open},[Ce,e.createElementVNode("span",null,e.toDisplayString(t.__("shop.order.edit")),1)],8,Se)]})),_:1})]),e.createCommentVNode(' <button @click="resertStore" style="position: fixed; bottom: 1px; right: 1px; z-index: 1000">reset</button> '),e.createElementVNode("div",we,[e.createElementVNode("div",De,[e.createElementVNode("div",Te,e.toDisplayString(t.__("shop.order.contact_title")),1),t.auth?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createElementBlock("div",xe,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[0]||(n[0]=function(e){return t.userType=e}),value:"new"},null,512),[[e.vModelRadio,t.userType]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.auth_new")),1)]),e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[1]||(n[1]=function(e){return t.userType=e}),value:"login"},null,512),[[e.vModelRadio,t.userType]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.auth_old")),1)])])),e.createElementVNode("div",Me,[e.withDirectives(e.createElementVNode("div",Le,[e.createVNode(s,{schemaRowClasses:"field",schema:t.userSchema,"validation-schema":t.userValidation},{afterForm:e.withCtx((function(){return[e.createElementVNode("button",He,null,512)]})),_:1},8,["schema","validation-schema"])],512),[[e.vShow,"new"==t.userType]]),e.withDirectives(e.createElementVNode("div",qe,[e.createVNode(d,{"login-callback":t.loginCallback},null,8,["login-callback"])],512),[[e.vShow,"login"==t.userType]]),e.createElementVNode("div",Oe,[t.auth?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createElementBlock("div",$e,[e.createElementVNode("div",Fe,[e.createElementVNode("div",ze,e.toDisplayString(t.__("shop.order.auth_social")),1),e.createElementVNode("div",Re,[e.createElementVNode("a",{class:"button",onClick:n[2]||(n[2]=function(){return t.facebook&&t.facebook.apply(t,arguments)})},Pe),e.createElementVNode("a",{class:"button",onClick:n[3]||(n[3]=function(){return t.google&&t.google.apply(t,arguments)})},je)])])]))])])]),e.createElementVNode("div",Je,[e.createElementVNode("div",Ue,[e.createElementVNode("div",Ie,[e.createElementVNode("div",Ae,[e.createElementVNode("div",Ge,[e.createElementVNode("div",Ke,e.toDisplayString(t.__("shop.order.shipping")),1)]),e.createCommentVNode("v-if",!0)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.shippingTypesRestricted,(function(o){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["item",{"is-disabled":o.restricted}]),key:o.id},[e.createElementVNode("div",Qe,[e.createElementVNode("div",We,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[5]||(n[5]=function(e){return t.shipping=e}),value:o.id,onClick:function(e){return t.toggleShippingRadio(o.id)}},null,8,Xe),[[e.vModelRadio,t.shipping]]),o.icon?(e.openBlock(),e.createElementBlock("img",{key:0,class:"icon",src:o.icon},null,8,Ye)):(e.openBlock(),e.createElementBlock("svg",Ze,et)),e.createElementVNode("span",null,e.toDisplayString(o.name),1)]),o.description?(e.openBlock(),e.createElementBlock("div",tt,e.toDisplayString(o.description),1)):e.createCommentVNode("v-if",!0)]),e.createElementVNode("div",nt,[!o.amount&&o.price_label?(e.openBlock(),e.createElementBlock("span",ot,e.toDisplayString(o.price_label),1)):(e.openBlock(),e.createElementBlock("span",{key:1,innerHTML:"percent"==o.type?o.amount+"%":t.$filters.price(o.amount)},null,8,rt))])]),e.withDirectives((e.openBlock(),e.createBlock(e.resolveDynamicComponent(o.component),{commit:t.shippingStoreData,data:t.shippingComponentData,item:o},null,8,["commit","data","item"])),[[e.vShow,o.component&&o.id==t.shipping]])],2)})),128))])]),e.createElementVNode("div",it,[e.createElementVNode("div",lt,[e.createElementVNode("div",at,[e.createElementVNode("div",ct,[e.createElementVNode("div",st,[e.createElementVNode("div",dt,e.toDisplayString(t.__("shop.order.payment")),1)]),e.createCommentVNode("v-if",!0)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.paymentMethodsRestricted,(function(o){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["item",{"is-disabled":o.restricted}]),key:o.id},[e.createElementVNode("div",ut,[e.createElementVNode("div",mt,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[7]||(n[7]=function(e){return t.payment=e}),value:o.id,onClick:function(e){return t.togglePaymentRadio(o.id)}},null,8,pt),[[e.vModelRadio,t.payment]]),e.createElementVNode("span",null,e.toDisplayString(o.name),1)]),o.description?(e.openBlock(),e.createElementBlock("div",vt,e.toDisplayString(o.description),1)):e.createCommentVNode("v-if",!0)]),o.amount?(e.openBlock(),e.createElementBlock("div",ht,[e.createElementVNode("span",{innerHTML:"percent"==o.type?o.amount+"%":t.$filters.price(o.amount)},null,8,ft)])):e.createCommentVNode("v-if",!0)])],2)})),128))])])])]),e.createElementVNode("div",gt,[e.createElementVNode("div",kt,[e.createElementVNode("div",Et,e.toDisplayString(t.__("shop.order.total")),1),e.createElementVNode("div",Vt,[e.createElementVNode("div",yt,[e.createElementVNode("div",Nt,[e.createElementVNode("span",{textContent:e.toDisplayString(t.pluralize(t.quantity,t.__("shop.pluralize.products")))},null,8,_t),e.createTextVNode(" "+e.toDisplayString(t.__("shop.cart.bysum")),1)]),e.createElementVNode("div",bt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.total)},null,8,Bt)])]),t.discount?(e.openBlock(),e.createElementBlock("div",St,[e.createElementVNode("div",Ct,e.toDisplayString(t.__("shop.order.discount")),1),e.createElementVNode("div",wt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.discount)},null,8,Dt)])])):e.createCommentVNode("v-if",!0),t.fee>0?(e.openBlock(),e.createElementBlock("div",Tt,[e.createElementVNode("div",xt,e.toDisplayString(t.__("shop.order.fee")),1),e.createElementVNode("div",Mt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.fee)},null,8,Lt)])])):e.createCommentVNode("v-if",!0),t.shipping?(e.openBlock(),e.createElementBlock("div",Ht,[e.createElementVNode("div",qt,e.toDisplayString(t.__("shop.order.shipping_price")),1),e.createElementVNode("div",Ot,[t.shippingPrice>0?(e.openBlock(),e.createElementBlock("span",{key:0,innerHTML:t.$filters.price(t.shippingPrice)},null,8,$t)):t.shippingSelected&&t.shippingSelected.price_label?(e.openBlock(),e.createElementBlock("span",Ft,e.toDisplayString(t.shippingSelected.price_label),1)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0),e.createElementVNode("div",zt,[e.createElementVNode("div",Rt,e.toDisplayString(t.__("shop.order.price")),1),e.createElementVNode("div",Pt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.total+t.fee+t.shippingPrice)},null,8,jt)])])]),e.createElementVNode("div",Jt,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"checkbox",class:"checkbox","onUpdate:modelValue":n[8]||(n[8]=function(e){return t.dontcall=e})},null,512),[[e.vModelCheckbox,t.dontcall]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.nocall")),1)])]),e.createElementVNode("button",{class:e.normalizeClass(["button submit",{red:!t.ifCheckoutReady,"is-loading":t.loading}]),onClick:n[9]||(n[9]=function(){return t.checkout&&t.checkout.apply(t,arguments)}),onMouseenter:n[10]||(n[10]=function(){return t.validate&&t.validate.apply(t,arguments)})},e.toDisplayString(t.__("shop.order.action")),35),e.createElementVNode("div",{class:e.normalizeClass(["comment-wrapper",{"is-open":t.isCommentToggled}])},[e.createElementVNode("div",{class:"toggler",onClick:n[11]||(n[11]=function(e){return t.isCommentToggled=!t.isCommentToggled})},[e.createElementVNode("span",null,e.toDisplayString(t.__("shop.order.comment")),1),Ut]),e.createElementVNode("div",It,[e.withDirectives(e.createElementVNode("textarea",{class:"textarea","onUpdate:modelValue":n[12]||(n[12]=function(e){return t.comment=e})},null,512),[[e.vModelText,t.comment]]),t.comment.length?(e.openBlock(),e.createElementBlock("div",At,e.toDisplayString(t.commentMaxLength-t.comment.length),1)):e.createCommentVNode("v-if",!0)])],2)])])])])):t.thanks&&t.order?(e.openBlock(),e.createElementBlock("div",Gt,[e.createElementVNode("div",Kt,[e.createTextVNode(e.toDisplayString(t.__("shop.order.order"))+" ",1),e.createElementVNode("span",null,"№"+e.toDisplayString(t.order.id),1),e.createTextVNode(" "+e.toDisplayString(t.__("shop.order.success")),1)]),e.createElementVNode("div",Qt,[t.redirect.url?(e.openBlock(),e.createElementBlock("div",Wt,[e.createElementVNode("div",Xt,e.toDisplayString(t.__("shop.order.pay_online")),1),e.createElementVNode("button",{class:"button is-payment",onClick:n[13]||(n[13]=function(e){return t.redirectForm.submit()})},e.toDisplayString(t.__("shop.order.pay_online_go")),1)])):(e.openBlock(),e.createElementBlock("div",Yt,[e.createElementVNode("button",{class:"button is-orange",onClick:n[14]||(n[14]=function(){return t.home&&t.home.apply(t,arguments)})},e.toDisplayString(t.__("shop.cart.continue")),1)])),e.createElementVNode("div",Zt,[t.order.shipping[0]?(e.openBlock(),e.createElementBlock("div",en,[e.createElementVNode("div",tn,e.toDisplayString(t.__("shop.order.shipping")),1),e.createElementVNode("div",nn,[t.order.shipping[0]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"column is-6",innerHTML:t.order.shipping[0]},null,8,on)):e.createCommentVNode("v-if",!0),t.order.shipping[1]?(e.openBlock(),e.createElementBlock("div",{key:1,class:"column is-6",innerHTML:t.order.shipping[1]},null,8,rn)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0),t.order.payment[0]?(e.openBlock(),e.createElementBlock("div",ln,[e.createElementVNode("div",an,e.toDisplayString(t.__("shop.order.payment")),1),e.createElementVNode("div",cn,[t.order.payment[0]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"column is-6",innerHTML:t.order.payment[0]},null,8,sn)):e.createCommentVNode("v-if",!0),t.order.payment[1]?(e.openBlock(),e.createElementBlock("div",{key:1,class:"column is-6",innerHTML:t.order.payment[1]},null,8,dn)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0)])])])):(e.openBlock(),e.createElementBlock("div",un,[e.createElementVNode("div",mn,e.toDisplayString(t.__("shop.cart.no_no")),1),e.createElementVNode("div",pn,[e.createTextVNode(e.toDisplayString(t.__("shop.cart.no_prop"))+" ",1),e.createElementVNode("a",{href:t.$env.locale.url?t.$env.locale.url:"/"},e.toDisplayString(t.__("shop.cart.no_home")),9,vn),hn,fn,e.createTextVNode(e.toDisplayString(t.__("shop.cart.no_search")),1)]),e.createElementVNode("a",{class:"button continue",href:t.$env.locale.url?t.$env.locale.url:"/"},e.toDisplayString(t.__("shop.cart.continue")),9,gn)]))])},module.exports=pe;
|
|
1
|
+
"use strict";var e=require("vue"),t=require("@perevorot/shop/dist/helpers"),n=require("vuex"),o=require("formvuelate"),i=require("@formvuelate/plugin-vee-validate"),r=require("@perevorot/shop/dist/forms/FormText"),l=require("yup"),a=require("vue-toastification");function c(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function s(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var d=c(i),u=c(r),m=s(l),p=e.defineComponent({name:"CheckoutItem",props:{item:Object},setup:function(t){var n=e.computed((function(){return t.item.attributes.options&&t.item.attributes.options.length?t.item.attributes.options:[]}));return{itemOptions:e.computed((function(){return t.item.options&&t.item.options.length?t.item.options.filter((function(e){return-1!==n.value.indexOf(e.id)})):[]}))}}}),v={key:0,class:"column is-12"},h={class:"bundle-title"},f={class:"column name"},g={class:"column is-narrow"},k=["href"],E=["src"],V={key:1},y=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],N={class:"column"},_={class:"columns is-gapless mb-0"},b={class:"column"},B={key:0,class:"code"},S={class:"title"},C=["href"],w={class:"column is-2 has-text-centered is-relative"},D={class:"quantity"},T={key:0,class:"quantity-price"},x=["innerHTML"],M={class:"column is-2 has-text-right"},L=["innerHTML"],H=["innerHTML"],q=["innerHTML"],O={key:0,class:"options is-toggled"},$={class:"toggler"},F={class:"wrapper"},z={class:"column"},R={class:"option-title"},P={class:"column is-2 has-text-right"},j=e.createTextVNode("+"),J=["innerHTML"],U={key:0,class:"bundle columns"},I={class:"column is-narrow"},A=e.createElementVNode("svg",{class:"bundle-icon"},[e.createElementVNode("use",{"xlink:href":"#bundle-plus"})],-1),G=["href"],K=["src"],Q={key:1},W=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],X={class:"column"},Y={key:0,class:"code"},Z={class:"title"},ee=["href"],te={key:1,class:"bundle columns"},ne={class:"column is-narrow"},oe=e.createElementVNode("svg",{class:"bundle-icon"},[e.createElementVNode("use",{"xlink:href":"#bundle-plus"})],-1),ie=["href"],re=["src"],le={key:1},ae=[e.createElementVNode("use",{"xlink:href":"#logo"},null,-1)],ce={class:"column"},se={key:0,class:"code"},de={class:"title"},ue=["href"];p.render=function(t,n,o,i,r,l){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["columns is-multiline shop-cart-item",{"is-bundle":t.item.attributes.bundle}])},[t.item.attributes.bundle?(e.openBlock(),e.createElementBlock("div",v,[e.createElementVNode("div",h,e.toDisplayString(t.__("shop.cart.bundle")),1)])):e.createCommentVNode("v-if",!0),e.createElementVNode("div",f,[e.createElementVNode("div",{class:e.normalizeClass(["columns",{"mb-0":t.item.attributes.bundle}])},[e.createElementVNode("div",g,[e.createElementVNode("a",{href:t.item.attributes.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.image}])},[t.item.attributes.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.image},null,8,E)):(e.openBlock(),e.createElementBlock("svg",V,y))],2)],8,k)]),e.createElementVNode("div",N,[e.createElementVNode("div",_,[e.createElementVNode("div",b,[t.item.attributes.code?(e.openBlock(),e.createElementBlock("div",B,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",S,[e.createElementVNode("a",{href:t.item.attributes.href},e.toDisplayString(t.item.name),9,C)])]),e.createElementVNode("div",w,[e.createElementVNode("div",D,"⨉ "+e.toDisplayString(t.item.quantity),1),parseInt(t.item.quantity)>1?(e.openBlock(),e.createElementBlock("div",T,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.item.attributes.price)},null,8,x),e.createTextVNode(" / "+e.toDisplayString(t.__("shop.cart.q")),1)])):e.createCommentVNode("v-if",!0)]),e.createElementVNode("div",M,[e.createElementVNode("div",{class:e.normalizeClass(["price",{"bundle-price":t.item.attributes.bundle}])},[t.item.attributes.priceOld?(e.openBlock(),e.createElementBlock("div",{key:0,class:"price-old",innerHTML:t.$filters.price(t.item.attributes.priceOld*t.item.quantity)},null,8,L)):e.createCommentVNode("v-if",!0),t.item.attributes.bundle&&t.item.attributes.amount?(e.openBlock(),e.createElementBlock("div",{key:1,class:"bundle-amount",innerHTML:t.__("shop.cart.bundle_amount")+(t.item.attributes.amount.percent?t.item.attributes.amount.percent+"%":t.$filters.price(t.item.attributes.amount.sum*t.item.quantity))},null,8,H)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",{innerHTML:t.$filters.price(t.item.attributes.price*t.item.quantity)},null,8,q)],2)])]),t.itemOptions&&t.itemOptions.length?(e.openBlock(),e.createElementBlock("div",O,[e.createElementVNode("div",$,[e.createElementVNode("span",null,e.toDisplayString(t.__("shop.cart.additional"))+" "+e.toDisplayString(t.itemOptions.length),1)]),e.createElementVNode("div",F,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.itemOptions,(function(n,o){return e.openBlock(),e.createElementBlock("div",{key:o,class:"columns is-checked"},[e.createElementVNode("div",z,[e.createElementVNode("div",R,e.toDisplayString(n.name),1)]),e.createElementVNode("div",P,[j,e.createElementVNode("span",{innerHTML:t.$filters.price(n.price)},null,8,J)])])})),128))])])):e.createCommentVNode("v-if",!0)])],2),t.item.attributes.bundle?(e.openBlock(),e.createElementBlock("div",U,[e.createElementVNode("div",I,[A,e.createElementVNode("a",{href:t.item.attributes.second.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.second.image}])},[t.item.attributes.second.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.second.image},null,8,K)):(e.openBlock(),e.createElementBlock("svg",Q,W))],2)],8,G)]),e.createElementVNode("div",X,[t.item.attributes.second.code?(e.openBlock(),e.createElementBlock("div",Y,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.second.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",Z,[e.createElementVNode("a",{href:t.item.attributes.second.href},e.toDisplayString(t.item.attributes.second.name),9,ee)])])])):e.createCommentVNode("v-if",!0),t.item.attributes.bundle&&t.item.attributes.third?(e.openBlock(),e.createElementBlock("div",te,[e.createElementVNode("div",ne,[oe,e.createElementVNode("a",{href:t.item.attributes.third.href},[e.createElementVNode("figure",{class:e.normalizeClass(["image is-square",{"no-thumb":!t.item.attributes.third.image}])},[t.item.attributes.third.image?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.item.attributes.third.image},null,8,re)):(e.openBlock(),e.createElementBlock("svg",le,ae))],2)],8,ie)]),e.createElementVNode("div",ce,[t.item.attributes.third.code?(e.openBlock(),e.createElementBlock("div",se,e.toDisplayString(t.__("shop.cart.code"))+" "+e.toDisplayString(t.item.attributes.third.code),1)):e.createCommentVNode("v-if",!0),e.createElementVNode("div",de,[e.createElementVNode("a",{href:t.item.attributes.third.href},e.toDisplayString(t.item.attributes.third.name),9,ue)])])])):e.createCommentVNode("v-if",!0)])],2)},e.markRaw(u.default);var me=o.SchemaFormFactory([d.default({})]);window.viewedSwiperOptions={slidesPerView:"auto",freeMode:!0,slideClass:"product",mousewheel:{forceToAxis:!0},navigation:{nextEl:".next",prevEl:".prev"},observer:!0,observeParents:!0};var pe=e.defineComponent({components:{CheckoutItem:p,SchemaForm:me},name:"order-checkout",setup:function(){var i=a.useToast(),r=n.useStore(),l=e.ref(!1),c=e.computed((function(){return r.getters["cart/quantity"]})),s=e.computed((function(){return r.getters["cart/items"]})),d=e.computed((function(){return r.getters["cart/total"]})),p=e.computed((function(){return r.getters["auth/is"]})),v=e.computed((function(){return r.getters["checkout/user"]})),h=e.ref(!0),f=e.ref(null),g=e.ref(!1),k=e.ref(null),E=e.ref({}),V=e.ref([]),y=e.ref([]),N=e.ref("new"),_=e.ref(null),b=e.computed((function(){return r.getters["checkout/shippingData"]})),B=e.ref(!1),S=e.computed({get:function(){return r.getters["checkout/dontcall"]},set:function(e){r.commit("checkout/dontcall",e)}}),C=e.computed({get:function(){var e=r.getters["checkout/comment"];return e&&(B.value=!0),e},set:function(e){r.commit("checkout/comment",e)}});e.watch(C,(function(e){e.length>1e3&&(C.value=C.value.substring(0,1e3))}));var w=function(t){return e.computed({get:function(){return v.value[t]},set:function(e){var n=JSON.parse(JSON.stringify(v.value));n[t]=e,r.commit("checkout/user",n)}})},D=e.ref({last_name:w("last_name"),name:w("name"),email:w("email"),phone:w("phone")});r.dispatch("auth/me",{finally:function(){}});var T=e.computed({get:function(){return r.getters["checkout/shipping"]},set:function(e){r.commit("checkout/shipping",e)}}),x=e.computed({get:function(){return r.getters["checkout/payment"]},set:function(e){r.commit("checkout/payment",e)}}),M=e.computed((function(){return T.value?V.value.find((function(e){return e.id==T.value})):{}})),L=e.computed((function(){return x.value?y.value.find((function(e){return e.id==x.value})):{}})),H=e.computed((function(){return z(V.value,T.value)})),q=e.computed((function(){return z(y.value,x.value)})),O=e.computed((function(){return R(V.value)})),$=e.computed((function(){return R(y.value)})),F=e.computed((function(){var e=[];return s.value.forEach((function(t){-1===e.indexOf(t.category_id)&&e.push(t.category_id)})),e})),z=function(e,t){var n=0;if(t){var o=e.find((function(e){return e.id==t}));o&&(n="sum"==o.type?o.amount:Math.round(d.value*o.amount/100))}return n},R=function(e){var t=[];return e.forEach((function(e){if(e.restrictions&&Object.keys(e.restrictions).length){var n=!0,o=e.restrictions;o.price_min&&o.price_max?(n=d.value>=o.price_min&&d.value<=o.price_max,e.restrictedForce=!n):o.price_min?(n=d.value>=o.price_min,e.restrictedForce=!n):o.price_max&&(n=d.value<=o.price_max,e.restrictedForce=!n),n&&T.value&&o.shipping_type&&o.shipping_type.length&&(n=-1!==o.shipping_type.indexOf(T.value)),n&&x.value&&o.payment_method&&o.payment_method.length&&(n=-1!==o.payment_method.indexOf(x.value)),n&&o.categories&&o.categories.length&&(n=!F.value.filter((function(e){return!o.categories.includes(e)})).length,e.restrictedForce=!n),e.restricted=!n}else e.restricted=!1;e.restrictedForce||t.push(e)})),t},P=e.computed((function(){var e=0;return s.value.forEach((function(t){var n=0;t.attributes.priceOld&&(n=t.attributes.priceOld-t.attributes.price),e+=n*t.quantity})),e}));$http.post(window.location.href).then((function(e){V.value=e.data.shipping,y.value=e.data.payment})),e.watch(N,(function(e){"login"==e&&r.commit("auth/modal","login")}));var j=e.ref({last_name:{component:u.default,label:__("auth.registration.form.last_name"),model:"last_name"},name:{component:u.default,label:__("auth.registration.form.name"),model:"first_name"},phone:{component:u.default,label:__("auth.registration.form.phone"),model:"phone",mask:"(###) ###-##-##",type:"phone"},email:{component:u.default,label:__("auth.login.form.email"),model:"email"}});o.useSchemaForm(D);var J=m.object().shape({last_name:m.string().trim().required(__("auth.validation.required")),name:m.string().trim().required(__("auth.validation.required")),phone:m.string().required(__("auth.validation.phone")).matches(/^\(\d{3}\) \d{3}\-\d{2}\-\d{2}$/,__("auth.validation.phone")),email:m.string().trim().email(__("auth.validation.email")).required(__("auth.validation.required"))});window.addEventListener("beforeunload",(function(){r.commit("auth/modal",null)})),window.addEventListener("pagehide",(function(){r.commit("auth/modal",null)}));var U=function(){r.commit("checkout/reset")};return{auth:p,userType:N,facebook:function(){window.location.href=$ziggy("auth.login.social",{provider:"facebook"})},google:function(){window.location.href=$ziggy("auth.login.social",{provider:"google"})},loginCallback:function(){N.value="new"},quantity:c,items:s,loading:l,pluralize:t.pluralize,discount:P,total:d,shipping:T,shippingPrice:H,payment:x,fee:q,userValidation:J,userSchema:j,userSubmitButton:_,checkout:function(){J.isValid(D.value).then((function(e){if(e)if(T.value)if(b.value[M.value.code]&&b.value[M.value.code].isValid)if(x.value){var t=JSON.parse(JSON.stringify(b.value[M.value.code]));delete t.isValid;var n={checkout:!0,user:{last_name:D.value.last_name,name:D.value.name,phone:D.value.phone,email:D.value.email},shipping:{id:T.value,data:t},payment:{id:x.value},comment:C.value,dontcall:S.value};l.value=!0,$http.post(window.location.href,n).then((function(e){if(e.data.redirect)E.value={url:e.data.redirect.url,data:e.data.redirect.data};else{var t=[];s.value.forEach((function(e){t.push({name:e.name,id:e.attributes.code,price:e.attributes.price,brand:e.attributes.brand,category:e.attributes.category,quantity:e.quantity})}));var n={ecommerce:{purchase:{actionField:{id:e.data.order.id,affiliation:"mrfix.ua",revenue:d.value+q.value+H.value,tax:"0",shipping:H.value},products:[t]}},event:"gtm-ee-event","gtm-ee-event-category":"Ecommerce","gtm-ee-event-action":"Purchase","gtm-ee-event-non-interaction":"False"};window.dataLayer&&(window.dataLayer.push({ecommerce:null}),window.dataLayer.push(n))}g.value=!0,k.value=e.data.order,U()})).catch((function(e){i(__("shop.order.error"),{type:"error"}),console.error(e)})).finally((function(){l.value=!1}))}else i(__("shop.order.validate_payment"),{type:"error"});else i(__("shop.order.validate_shipping1")+": «"+M.value.name+"»",{type:"error"});else i(__("shop.order.validate_shipping"),{type:"error"});else N.value="new",_.value.click(),i(__("shop.order.validate_user"),{type:"error"})}))},ifCheckoutReady:h,validate:function(){J.isValid(D.value).then((function(e){h.value=e&&x.value&&T.value&&(!M.value.component||M.value.component&&b.value[M.value.code]&&b.value[M.value.code].isValid)}))},shippingTypesRestricted:O,paymentMethodsRestricted:$,toggleShippingRadio:function(e){T.value===e&&(T.value=null)},togglePaymentRadio:function(e){x.value===e&&(x.value=null)},shippingSelected:M,paymentSelected:L,shippingComponentData:b,shippingStoreData:function(e,t,n){var o=JSON.parse(JSON.stringify(b.value));t.isValid=n,o[e]=t,r.commit("checkout/shippingData",o)},resertStore:U,user:D,dontcall:S,comment:C,isCommentToggled:B,commentMaxLength:1e3,userCheckout:v,thanks:g,order:k,redirect:E,redirectForm:f,home:function(){window.location.href=$env.locale.url?$env.locale.url:"/"}}}}),ve={class:"cart checkout"},he=["action"],fe=["name","value"],ge={key:1,class:"items-wrapper"},ke={class:"checkout-title"},Ee={class:"columns"},Ve={class:"column"},ye={class:"checkout-block items"},Ne={class:"title-row"},_e={class:"items-title"},be=["textContent"],Be=["innerHTML"],Se=["onClick"],Ce=e.createElementVNode("svg",null,[e.createElementVNode("use",{"xlink:href":"#cart-edit"})],-1),we={class:"checkout-block"},De={class:"wrapper"},Te={class:"items-title"},xe={key:0,class:"user-tabs"},Me={class:"columns"},Le={class:"column user-form"},He={type:"submit",ref:"userSubmitButton",class:"is-hidden"},qe={class:"column user-login user-form"},Oe={class:"column"},$e={key:0,class:"social-auth"},Fe={class:"socials"},ze={class:"description"},Re={class:"buttons"},Pe=[e.createElementVNode("svg",{class:"icon fb-btn"},[e.createElementVNode("use",{"xlink:href":"#logo-facebook-icon"})],-1),e.createElementVNode("span",null,"Facebook",-1)],je=[e.createElementVNode("svg",{class:"icon google-btn"},[e.createElementVNode("use",{"xlink:href":"#logo-google-icon"})],-1),e.createElementVNode("span",null,"Google",-1)],Je={class:"wrapper"},Ue={class:"rows"},Ie={class:"item"},Ae={class:"row"},Ge={class:"info"},Ke={class:"items-title mb-1"},Qe={class:"row"},We={class:"info"},Xe=["value","onClick"],Ye=["src"],Ze={key:1,class:"icon"},et=[e.createElementVNode("use",{"xlink:href":"#shipping"},null,-1)],tt={key:0,class:"description"},nt={class:"value"},ot={key:0,class:"green"},it=["innerHTML"],rt={class:"wrapper"},lt={class:"rows"},at={class:"item"},ct={class:"row"},st={class:"info"},dt={class:"items-title mb-1"},ut={class:"row no-icon"},mt={class:"info"},pt=["value","onClick"],vt={key:0,class:"description"},ht={key:0,class:"value"},ft=["innerHTML"],gt={class:"column is-4"},kt={class:"checkout-block summary"},Et={class:"items-title"},Vt={class:"rows"},yt={class:"row"},Nt={class:"info"},_t=["textContent"],bt={class:"value"},Bt=["innerHTML"],St={key:0,class:"row"},Ct={class:"info"},wt={class:"value"},Dt=["innerHTML"],Tt={key:1,class:"row"},xt={class:"info"},Mt={class:"value"},Lt=["innerHTML"],Ht={key:2,class:"row"},qt={class:"info"},Ot={class:"value"},$t=["innerHTML"],Ft={key:1,class:"green"},zt={class:"row"},Rt={class:"info"},Pt={class:"value orange"},jt=["innerHTML"],Jt={class:"checkbox-wrapper"},Ut=e.createElementVNode("svg",null,[e.createElementVNode("use",{"xlink:href":"#arrow-down"})],-1),It={class:"user-form"},At={key:0,class:"chars-count"},Gt={key:2,class:"checkout-block thanks"},Kt={class:"title"},Qt={class:"columns"},Wt={key:0,class:"column is-6"},Xt={class:"subtitle"},Yt={key:1,class:"column is-6"},Zt={class:"column is-6"},en={key:0,class:"info-wrapper"},tn={class:"title"},nn={class:"columns"},on=["innerHTML"],rn=["innerHTML"],ln={key:1,class:"info-wrapper"},an={class:"title"},cn={class:"columns"},sn=["innerHTML"],dn=["innerHTML"],un={key:3,class:"checkout-block empty"},mn={class:"title"},pn={class:"message"},vn=["href"],hn=e.createTextVNode(", "),fn=e.createElementVNode("br",null,null,-1),gn=["href"];pe.render=function(t,n,o,i,r,l){var a=e.resolveComponent("checkout-item"),c=e.resolveComponent("cart-trigger"),s=e.resolveComponent("SchemaForm"),d=e.resolveComponent("login");return e.openBlock(),e.createElementBlock("div",ve,[t.redirect.url?(e.openBlock(),e.createElementBlock("form",{key:0,ref:"redirectForm",action:t.redirect.url,class:"is-hidden",method:"post"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.redirect.data,(function(t,n,o){return e.openBlock(),e.createElementBlock("input",{type:"hidden",name:n,value:t,key:o},null,8,fe)})),128))],8,he)):e.createCommentVNode("v-if",!0),t.items.length&&!t.thanks?(e.openBlock(),e.createElementBlock("div",ge,[e.createElementVNode("div",ke,e.toDisplayString(t.__("shop.order.checkout_title")),1),e.createElementVNode("div",Ee,[e.createElementVNode("div",Ve,[e.createElementVNode("div",ye,[e.createElementVNode("div",Ne,[e.createElementVNode("div",_e,[e.createTextVNode(e.toDisplayString(t.__("shop.order.your_order"))+" ",1),e.createElementVNode("span",{class:"ml-3",textContent:e.toDisplayString(t.pluralize(t.quantity,t.__("shop.pluralize.products")))},null,8,be),e.createElementVNode("span",{innerHTML:t.__("shop.cart.bysum")+" "+t.$filters.price(t.total)},null,8,Be)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(function(t){return e.openBlock(),e.createBlock(a,{key:t.id,item:t},null,8,["item"])})),128)),e.createVNode(c,{class:"trigger"},{default:e.withCtx((function(n){return[e.createElementVNode("button",{class:"button",onClick:n.open},[Ce,e.createElementVNode("span",null,e.toDisplayString(t.__("shop.order.edit")),1)],8,Se)]})),_:1})]),e.createCommentVNode(' <button @click="resertStore" style="position: fixed; bottom: 1px; right: 1px; z-index: 1000">reset</button> '),e.createElementVNode("div",we,[e.createElementVNode("div",De,[e.createElementVNode("div",Te,e.toDisplayString(t.__("shop.order.contact_title")),1),t.auth?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createElementBlock("div",xe,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[0]||(n[0]=function(e){return t.userType=e}),value:"new"},null,512),[[e.vModelRadio,t.userType]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.auth_new")),1)]),e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[1]||(n[1]=function(e){return t.userType=e}),value:"login"},null,512),[[e.vModelRadio,t.userType]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.auth_old")),1)])])),e.createElementVNode("div",Me,[e.withDirectives(e.createElementVNode("div",Le,[e.createVNode(s,{schemaRowClasses:"field",schema:t.userSchema,"validation-schema":t.userValidation},{afterForm:e.withCtx((function(){return[e.createElementVNode("button",He,null,512)]})),_:1},8,["schema","validation-schema"])],512),[[e.vShow,"new"==t.userType]]),e.withDirectives(e.createElementVNode("div",qe,[e.createVNode(d,{"login-callback":t.loginCallback},null,8,["login-callback"])],512),[[e.vShow,"login"==t.userType]]),e.createElementVNode("div",Oe,[t.auth?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createElementBlock("div",$e,[e.createElementVNode("div",Fe,[e.createElementVNode("div",ze,e.toDisplayString(t.__("shop.order.auth_social")),1),e.createElementVNode("div",Re,[e.createElementVNode("a",{class:"button",onClick:n[2]||(n[2]=function(){return t.facebook&&t.facebook.apply(t,arguments)})},Pe),e.createElementVNode("a",{class:"button",onClick:n[3]||(n[3]=function(){return t.google&&t.google.apply(t,arguments)})},je)])])]))])])]),e.createElementVNode("div",Je,[e.createElementVNode("div",Ue,[e.createElementVNode("div",Ie,[e.createElementVNode("div",Ae,[e.createElementVNode("div",Ge,[e.createElementVNode("div",Ke,e.toDisplayString(t.__("shop.order.shipping")),1)]),e.createCommentVNode("v-if",!0)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.shippingTypesRestricted,(function(o){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["item",{"is-disabled":o.restricted}]),key:o.id},[e.createElementVNode("div",Qe,[e.createElementVNode("div",We,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[5]||(n[5]=function(e){return t.shipping=e}),value:o.id,onClick:function(e){return t.toggleShippingRadio(o.id)}},null,8,Xe),[[e.vModelRadio,t.shipping]]),o.icon?(e.openBlock(),e.createElementBlock("img",{key:0,class:"icon",src:o.icon},null,8,Ye)):(e.openBlock(),e.createElementBlock("svg",Ze,et)),e.createElementVNode("span",null,e.toDisplayString(o.name),1)]),o.description?(e.openBlock(),e.createElementBlock("div",tt,e.toDisplayString(o.description),1)):e.createCommentVNode("v-if",!0)]),e.createElementVNode("div",nt,[!o.amount&&o.price_label?(e.openBlock(),e.createElementBlock("span",ot,e.toDisplayString(o.price_label),1)):(e.openBlock(),e.createElementBlock("span",{key:1,innerHTML:"percent"==o.type?o.amount+"%":t.$filters.price(o.amount)},null,8,it))])]),e.withDirectives((e.openBlock(),e.createBlock(e.resolveDynamicComponent(o.component),{commit:t.shippingStoreData,data:t.shippingComponentData,item:o},null,8,["commit","data","item"])),[[e.vShow,o.component&&o.id==t.shipping]])],2)})),128))])]),e.createElementVNode("div",rt,[e.createElementVNode("div",lt,[e.createElementVNode("div",at,[e.createElementVNode("div",ct,[e.createElementVNode("div",st,[e.createElementVNode("div",dt,e.toDisplayString(t.__("shop.order.payment")),1)]),e.createCommentVNode("v-if",!0)])]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.paymentMethodsRestricted,(function(o){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["item",{"is-disabled":o.restricted}]),key:o.id},[e.createElementVNode("div",ut,[e.createElementVNode("div",mt,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"radio",class:"radio","onUpdate:modelValue":n[7]||(n[7]=function(e){return t.payment=e}),value:o.id,onClick:function(e){return t.togglePaymentRadio(o.id)}},null,8,pt),[[e.vModelRadio,t.payment]]),e.createElementVNode("span",null,e.toDisplayString(o.name),1)]),o.description?(e.openBlock(),e.createElementBlock("div",vt,e.toDisplayString(o.description),1)):e.createCommentVNode("v-if",!0)]),o.amount?(e.openBlock(),e.createElementBlock("div",ht,[e.createElementVNode("span",{innerHTML:"percent"==o.type?o.amount+"%":t.$filters.price(o.amount)},null,8,ft)])):e.createCommentVNode("v-if",!0)])],2)})),128))])])])]),e.createElementVNode("div",gt,[e.createElementVNode("div",kt,[e.createElementVNode("div",Et,e.toDisplayString(t.__("shop.order.total")),1),e.createElementVNode("div",Vt,[e.createElementVNode("div",yt,[e.createElementVNode("div",Nt,[e.createElementVNode("span",{textContent:e.toDisplayString(t.pluralize(t.quantity,t.__("shop.pluralize.products")))},null,8,_t),e.createTextVNode(" "+e.toDisplayString(t.__("shop.cart.bysum")),1)]),e.createElementVNode("div",bt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.total)},null,8,Bt)])]),t.discount?(e.openBlock(),e.createElementBlock("div",St,[e.createElementVNode("div",Ct,e.toDisplayString(t.__("shop.order.discount")),1),e.createElementVNode("div",wt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.discount)},null,8,Dt)])])):e.createCommentVNode("v-if",!0),t.fee>0?(e.openBlock(),e.createElementBlock("div",Tt,[e.createElementVNode("div",xt,e.toDisplayString(t.__("shop.order.fee")),1),e.createElementVNode("div",Mt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.fee)},null,8,Lt)])])):e.createCommentVNode("v-if",!0),t.shipping?(e.openBlock(),e.createElementBlock("div",Ht,[e.createElementVNode("div",qt,e.toDisplayString(t.__("shop.order.shipping_price")),1),e.createElementVNode("div",Ot,[t.shippingPrice>0?(e.openBlock(),e.createElementBlock("span",{key:0,innerHTML:t.$filters.price(t.shippingPrice)},null,8,$t)):t.shippingSelected&&t.shippingSelected.price_label?(e.openBlock(),e.createElementBlock("span",Ft,e.toDisplayString(t.shippingSelected.price_label),1)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0),e.createElementVNode("div",zt,[e.createElementVNode("div",Rt,e.toDisplayString(t.__("shop.order.price")),1),e.createElementVNode("div",Pt,[e.createElementVNode("span",{innerHTML:t.$filters.price(t.total+t.fee+t.shippingPrice)},null,8,jt)])])]),e.createElementVNode("div",Jt,[e.createElementVNode("label",null,[e.withDirectives(e.createElementVNode("input",{type:"checkbox",class:"checkbox","onUpdate:modelValue":n[8]||(n[8]=function(e){return t.dontcall=e})},null,512),[[e.vModelCheckbox,t.dontcall]]),e.createTextVNode(e.toDisplayString(t.__("shop.order.nocall")),1)])]),e.createElementVNode("button",{class:e.normalizeClass(["button submit",{red:!t.ifCheckoutReady,"is-loading":t.loading}]),onClick:n[9]||(n[9]=function(){return t.checkout&&t.checkout.apply(t,arguments)}),onMouseenter:n[10]||(n[10]=function(){return t.validate&&t.validate.apply(t,arguments)})},e.toDisplayString(t.__("shop.order.action")),35),e.createElementVNode("div",{class:e.normalizeClass(["comment-wrapper",{"is-open":t.isCommentToggled}])},[e.createElementVNode("div",{class:"toggler",onClick:n[11]||(n[11]=function(e){return t.isCommentToggled=!t.isCommentToggled})},[e.createElementVNode("span",null,e.toDisplayString(t.__("shop.order.comment")),1),Ut]),e.createElementVNode("div",It,[e.withDirectives(e.createElementVNode("textarea",{class:"textarea","onUpdate:modelValue":n[12]||(n[12]=function(e){return t.comment=e})},null,512),[[e.vModelText,t.comment]]),t.comment.length?(e.openBlock(),e.createElementBlock("div",At,e.toDisplayString(t.commentMaxLength-t.comment.length),1)):e.createCommentVNode("v-if",!0)])],2)])])])])):t.thanks&&t.order?(e.openBlock(),e.createElementBlock("div",Gt,[e.createElementVNode("div",Kt,[e.createTextVNode(e.toDisplayString(t.__("shop.order.order"))+" ",1),e.createElementVNode("span",null,"№"+e.toDisplayString(t.order.id),1),e.createTextVNode(" "+e.toDisplayString(t.__("shop.order.success")),1)]),e.createElementVNode("div",Qt,[t.redirect.url?(e.openBlock(),e.createElementBlock("div",Wt,[e.createElementVNode("div",Xt,e.toDisplayString(t.__("shop.order.pay_online")),1),e.createElementVNode("button",{class:"button is-payment",onClick:n[13]||(n[13]=function(e){return t.redirectForm.submit()})},e.toDisplayString(t.__("shop.order.pay_online_go")),1)])):(e.openBlock(),e.createElementBlock("div",Yt,[e.createElementVNode("button",{class:"button is-orange",onClick:n[14]||(n[14]=function(){return t.home&&t.home.apply(t,arguments)})},e.toDisplayString(t.__("shop.cart.continue")),1)])),e.createElementVNode("div",Zt,[t.order.shipping[0]?(e.openBlock(),e.createElementBlock("div",en,[e.createElementVNode("div",tn,e.toDisplayString(t.__("shop.order.shipping")),1),e.createElementVNode("div",nn,[t.order.shipping[0]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"column is-6",innerHTML:t.order.shipping[0]},null,8,on)):e.createCommentVNode("v-if",!0),t.order.shipping[1]?(e.openBlock(),e.createElementBlock("div",{key:1,class:"column is-6",innerHTML:t.order.shipping[1]},null,8,rn)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0),t.order.payment[0]?(e.openBlock(),e.createElementBlock("div",ln,[e.createElementVNode("div",an,e.toDisplayString(t.__("shop.order.payment")),1),e.createElementVNode("div",cn,[t.order.payment[0]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"column is-6",innerHTML:t.order.payment[0]},null,8,sn)):e.createCommentVNode("v-if",!0),t.order.payment[1]?(e.openBlock(),e.createElementBlock("div",{key:1,class:"column is-6",innerHTML:t.order.payment[1]},null,8,dn)):e.createCommentVNode("v-if",!0)])])):e.createCommentVNode("v-if",!0)])])])):(e.openBlock(),e.createElementBlock("div",un,[e.createElementVNode("div",mn,e.toDisplayString(t.__("shop.cart.no_no")),1),e.createElementVNode("div",pn,[e.createTextVNode(e.toDisplayString(t.__("shop.cart.no_prop"))+" ",1),e.createElementVNode("a",{href:t.$env.locale.url?t.$env.locale.url:"/"},e.toDisplayString(t.__("shop.cart.no_home")),9,vn),hn,fn,e.createTextVNode(e.toDisplayString(t.__("shop.cart.no_search")),1)]),e.createElementVNode("a",{class:"button continue",href:t.$env.locale.url?t.$env.locale.url:"/"},e.toDisplayString(t.__("shop.cart.continue")),9,gn)]))])},module.exports=pe;
|
|
2
2
|
//# sourceMappingURL=Checkout.js.map
|