@ozdao/prometheus-framework 0.2.30 → 0.2.31
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/addMembersQuantity-3505b6f3.mjs +98 -0
- package/dist/addMembersQuantity-fb552ca0.js +97 -0
- package/dist/auth.server.js +6 -9
- package/dist/auth.server.mjs +6 -9
- package/dist/community.server.js +28 -21
- package/dist/community.server.mjs +28 -21
- package/dist/events.server.js +1 -1
- package/dist/events.server.mjs +1 -1
- package/dist/files.server.js +114 -111
- package/dist/files.server.mjs +114 -111
- package/dist/gallery.server.js +3 -3
- package/dist/gallery.server.mjs +3 -3
- package/dist/globals.server.js +1 -1
- package/dist/globals.server.mjs +1 -1
- package/dist/index-a8dffc0c.js +213 -0
- package/dist/index-d769324d.mjs +214 -0
- package/dist/mailing-37c2ba41.mjs +68 -0
- package/dist/mailing-fe16a26a.js +67 -0
- package/dist/main.css +1 -1
- package/dist/middlewares.server.js +1 -1
- package/dist/middlewares.server.mjs +1 -1
- package/dist/organizations.server.js +125 -25
- package/dist/organizations.server.mjs +125 -25
- package/dist/prometheus-framework.cjs.js +30 -29
- package/dist/prometheus-framework.es.js +2478 -2282
- package/dist/reports.server.js +1 -1
- package/dist/reports.server.mjs +1 -1
- package/dist/users.server.js +1 -1
- package/dist/users.server.mjs +1 -1
- package/package.json +4 -2
- package/src/assets/images/logo.svg +7 -7
- package/src/components/Block/Block.vue +77 -0
- package/src/components/Breadcrumbs/Breadcrumbs.vue +2 -2
- package/src/components/Button/Button.vue +32 -227
- package/src/components/Checkbox/Checkbox.vue +1 -1
- package/src/components/Chips/Chips.vue +8 -8
- package/src/components/DatePicker/DatePicker.vue +3 -4
- package/src/components/EditImages/EditImages.vue +32 -14
- package/src/{modules/globals/components/sections → components/Feed}/Feed.vue +60 -45
- package/src/components/FieldBig/FieldBig.vue +16 -5
- package/src/components/FieldPhone/FieldPhone.vue +2 -1
- package/src/components/Footer/Footer.vue +36 -27
- package/src/components/Header/Header.vue +161 -166
- package/src/components/Loader/Loader.vue +9 -2
- package/src/components/LocationMarker/LocationMarker.vue +38 -12
- package/src/components/LocationSelection/LocationSelection.vue +67 -75
- package/src/components/Magnifier/Magnifier.vue +3 -3
- package/src/components/Navigation/Navigation.vue +16 -16
- package/src/components/Popup/Popup.vue +8 -6
- package/src/components/Select/Select.vue +35 -6
- package/src/components/SelectMulti/SelectMulti.vue +5 -13
- package/src/components/Shader/Shader.vue +128 -0
- package/src/components/Sidebar/Sidebar.vue +71 -35
- package/src/components/Spoiler/Spoiler.vue +1 -1
- package/src/components/Tab/Tab.vue +1 -1
- package/src/components/Tooltip/Tooltip.vue +1 -1
- package/src/components/UploadImage/UploadImage.vue +4 -4
- package/src/components/UploadImageMultiple/UploadImageMultiple.vue +54 -10
- package/src/modules/applications/controllers/applications.controller.js +0 -1
- package/src/modules/auth/components/pages/EnterCode.vue +1 -1
- package/src/modules/auth/components/pages/EnterPassword.vue +3 -3
- package/src/modules/auth/components/pages/ResetPassword.vue +1 -2
- package/src/modules/auth/components/pages/SignIn.vue +26 -10
- package/src/modules/auth/components/pages/SignUp.vue +1 -2
- package/src/modules/auth/controllers/twofa.controller.js +4 -4
- package/src/modules/auth/localization/EnterCode.json +2 -2
- package/src/modules/auth/localization/EnterPassword.json +2 -2
- package/src/modules/auth/localization/ResetPassword.json +2 -2
- package/src/modules/auth/localization/SignIn.json +3 -3
- package/src/modules/auth/localization/SignUp.json +3 -3
- package/src/modules/auth/utils/server/verifyAppleIdToken.js +0 -1
- package/src/modules/backoffice/components/layouts/Backoffice.vue +1 -1
- package/src/modules/backoffice/components/pages/Dashboard.vue +171 -120
- package/src/modules/backoffice/router/backoffice.js +119 -129
- package/src/modules/chats/components/blocks/ChatMessage.vue +25 -0
- package/src/modules/chats/components/pages/ChatPage.vue +50 -0
- package/src/modules/chats/components/sections/ChatWindow.vue +38 -0
- package/src/modules/chats/controllers/chats.controller.js +32 -0
- package/src/modules/chats/models/chat.model.js +26 -0
- package/src/modules/chats/routes/chats.routes.js +53 -0
- package/src/modules/chats/store/chat.store.js +61 -0
- package/src/modules/community/components/blocks/CardBlogpost.vue +19 -4
- package/src/modules/community/components/layouts/Community.vue +96 -39
- package/src/modules/community/components/pages/Blog.vue +4 -3
- package/src/modules/community/components/pages/BlogPost.vue +10 -1
- package/src/modules/community/components/pages/CreateBlogPost.vue +36 -17
- package/src/modules/community/components/sections/HotPosts.vue +3 -3
- package/src/modules/community/components/sections/JoinUs.vue +19 -13
- package/src/modules/community/controllers/blog.controller.js +3 -4
- package/src/modules/community/controllers/utils/queryProcessor.js +16 -17
- package/src/modules/community/models/blogpost.model.js +6 -3
- package/src/modules/community/store/blogposts.js +1 -0
- package/src/modules/constructor/components/elements/Embed.vue +12 -1
- package/src/modules/constructor/components/elements/ImageUpload.vue +2 -2
- package/src/modules/constructor/components/elements/Textarea.vue +6 -1
- package/src/modules/constructor/components/elements/Video.vue +79 -0
- package/src/modules/constructor/components/elements/VideoPlayer.vue +59 -0
- package/src/modules/constructor/components/elements/Youtube.vue +52 -0
- package/src/modules/constructor/components/sections/Constructor.vue +27 -3
- package/src/modules/events/components/layouts/layoutEvents.vue +7 -28
- package/src/modules/files/controllers/files.controller.js +9 -22
- package/src/modules/files/middlewares/server/index.js +2 -2
- package/src/modules/files/middlewares/server/middlewareBusboy.js +137 -0
- package/src/modules/files/routes/files.routes.js +9 -9
- package/src/modules/globals/localization/vue-i18n.js +8 -1
- package/src/modules/globals/mixins/mixins.js +23 -13
- package/src/modules/globals/router/routerGuards.js +2 -2
- package/src/modules/globals/store/globals.js +86 -9
- package/src/modules/globals/utils/mailing.js +24 -3
- package/src/modules/icons/entities/IconCommunity.vue +4 -4
- package/src/modules/icons/entities/IconEvents.vue +1 -1
- package/src/modules/icons/entities/IconGroups.vue +1 -1
- package/src/modules/icons/entities/IconPrice.vue +5 -0
- package/src/modules/icons/entities/IconProfile.vue +5 -0
- package/src/modules/icons/entities/IconShopcart.vue +5 -0
- package/src/modules/icons/entities/IconTime.vue +5 -0
- package/src/modules/icons/icons.client.js +4 -0
- package/src/modules/icons/labels/LabelAppStore.vue +24 -24
- package/src/modules/icons/labels/LabelGooglePlay.vue +9 -9
- package/src/modules/icons/logos/Logotype.vue +20 -0
- package/src/modules/icons/navigation/IconAdd.vue +17 -0
- package/src/modules/icons/navigation/IconChevronBottom.vue +18 -0
- package/src/modules/icons/navigation/IconChevronRight.vue +3 -3
- package/src/modules/icons/navigation/IconDelete.vue +19 -0
- package/src/modules/icons/navigation/IconMinus.vue +15 -0
- package/src/modules/icons/navigation/IconSearch.vue +17 -0
- package/src/modules/icons/navigation/IconUpload.vue +16 -0
- package/src/modules/icons/placeholders/PlaceholderImage.vue +5 -0
- package/src/modules/icons/placeholders/PlaceholderOrganizationPic.vue +20 -0
- package/src/modules/icons/placeholders/PlaceholderUserpic.vue +4 -18
- package/src/modules/icons/socials/instagram.vue +1 -1
- package/src/modules/icons/socials/line.vue +1 -1
- package/src/modules/icons/socials/reddit.vue +1 -1
- package/src/modules/icons/socials/telegram.vue +1 -1
- package/src/modules/icons/socials/twitter.vue +1 -1
- package/src/modules/icons/socials/youtube.vue +1 -1
- package/src/modules/landing/components/sections/Guide.vue +92 -0
- package/src/modules/landing/components/sections/MobileApp.vue +23 -12
- package/src/modules/marketplace/components/layouts/Marketplace.vue +76 -188
- package/src/modules/marketplace/components/pages/Catalog.vue +65 -119
- package/src/modules/marketplace/components/sections/Filters.vue +195 -0
- package/src/modules/marketplace/store/marketplace.js +2 -2
- package/src/modules/middlewares/client/auth.validation.js +0 -6
- package/src/modules/middlewares/client/states.validation.js +2 -8
- package/src/modules/middlewares/server/authJwt.js +1 -1
- package/src/modules/mobile/components/Menu/MenuItem.vue +3 -6
- package/src/modules/openai/controllers/openai.controller.js +0 -1
- package/src/modules/orders/components/blocks/CardOrder.vue +166 -0
- package/src/modules/orders/components/blocks/CardOrderItem.vue +59 -66
- package/src/modules/orders/components/blocks/Positions.vue +4 -4
- package/src/modules/orders/components/pages/EditOrder.vue +78 -142
- package/src/modules/orders/components/pages/FormOrder.vue +192 -0
- package/src/modules/orders/components/pages/Order.vue +326 -120
- package/src/modules/orders/components/pages/Orders.vue +13 -9
- package/src/modules/orders/components/pages/{ViewOrder.vue → Orders_refact.vue} +13 -10
- package/src/modules/orders/components/partials/ShopCart.vue +22 -13
- package/src/modules/orders/components/sections/EmptyState.vue +1 -1
- package/src/modules/orders/components/sections/{Form.vue → FormOrderDetails.vue} +38 -106
- package/src/modules/orders/controllers/orders.controller.js +37 -28
- package/src/modules/orders/models/order.model.js +39 -9
- package/src/modules/orders/router/orders.router.js +23 -2
- package/src/modules/orders/routes/orders.routes.js +14 -17
- package/src/modules/orders/store/orders.js +24 -9
- package/src/modules/orders/store/shopcart.js +20 -19
- package/src/modules/organizations/components/blocks/CardDepartment.vue +1 -1
- package/src/modules/organizations/components/blocks/CardOrganization.vue +98 -46
- package/src/modules/organizations/components/blocks/Rating.vue +1 -1
- package/src/modules/organizations/components/blocks/Socials.vue +11 -3
- package/src/modules/organizations/components/elements/ButtonToggleMembership.vue +1 -1
- package/src/modules/organizations/components/pages/Department.vue +1 -1
- package/src/modules/organizations/components/pages/DepartmentEdit.vue +4 -4
- package/src/modules/organizations/components/pages/Members.vue +6 -4
- package/src/modules/organizations/components/pages/Organization.vue +120 -49
- package/src/modules/organizations/components/pages/OrganizationEdit.vue +8 -1
- package/src/modules/organizations/components/pages/Organizations.vue +27 -6
- package/src/modules/organizations/components/sections/DetailsTab.vue +11 -9
- package/src/modules/organizations/components/sections/Feed.vue +0 -3
- package/src/modules/organizations/components/sections/FeedDepartments.vue +2 -2
- package/src/modules/organizations/controllers/organizations.controller.js +126 -15
- package/src/modules/organizations/controllers/utils/addMembersQuantity.js +19 -9
- package/src/modules/organizations/models/organization.model.js +5 -2
- package/src/modules/organizations/router/members.router.js +1 -3
- package/src/modules/organizations/router/organizations.js +8 -6
- package/src/modules/organizations/router/products.router.js +36 -2
- package/src/modules/organizations/store/organizations.js +38 -84
- package/src/modules/pages/controllers/pages.controller.js +0 -4
- package/src/modules/payments/controller/payments.controller.js +1 -1
- package/src/modules/products/components/blocks/CardLeftover.vue +17 -22
- package/src/modules/products/components/blocks/CardPosition.vue +96 -49
- package/src/modules/products/components/blocks/CardProduct.vue +24 -53
- package/src/modules/products/components/blocks/Images360.vue +4 -4
- package/src/modules/products/components/blocks/ImagesThumbnails.vue +2 -7
- package/src/modules/products/components/blocks/ListPositions.vue +74 -0
- package/src/modules/products/components/elements/Price.vue +11 -5
- package/src/modules/products/components/elements/THC.vue +6 -6
- package/src/modules/products/components/pages/{LeftoverAdd.vue → EditLeftover.vue} +93 -79
- package/src/modules/products/components/pages/Leftovers.vue +74 -70
- package/src/modules/products/components/pages/Product.vue +4 -7
- package/src/modules/products/components/pages/ProductEdit.vue +230 -88
- package/src/modules/products/components/pages/ProductRecommmendation.vue +1 -1
- package/src/modules/products/components/pages/Products.vue +6 -3
- package/src/modules/products/components/pages/ProductsBackoffice.vue +3 -5
- package/src/modules/products/components/sections/EditModifications.vue +3 -3
- package/src/modules/products/components/sections/EditProductInfo.vue +40 -50
- package/src/modules/products/components/sections/FilterProducts.vue +57 -18
- package/src/modules/products/components/sections/HeroRecommendation.vue +233 -99
- package/src/modules/products/components/sections/MenuSection.vue +127 -0
- package/src/modules/products/components/sections/PopularProducts.vue +81 -37
- package/src/modules/products/components/sections/SectionProduct.vue +21 -23
- package/src/modules/products/controllers/leftovers.controller.js +11 -1
- package/src/modules/products/controllers/products.controller.js +100 -97
- package/src/modules/products/models/leftover.model.js +6 -4
- package/src/modules/products/models/product.model.js +13 -1
- package/src/modules/products/routes/products.routes.js +4 -4
- package/src/modules/products/store/leftovers.js +4 -24
- package/src/modules/products/store/products.js +44 -30
- package/src/modules/spots/components/blocks/CardSpot.vue +43 -72
- package/src/modules/spots/components/layouts/Spots.vue +9 -91
- package/src/modules/spots/components/pages/Map.vue +171 -62
- package/src/modules/spots/components/pages/Spot.vue +1 -1
- package/src/modules/spots/components/pages/SpotEdit.vue +131 -174
- package/src/modules/spots/controllers/spots.controller.js +1 -0
- package/src/modules/spots/models/spot.model.js +6 -3
- package/src/modules/spots/store/spots.js +42 -48
- package/src/modules/users/components/pages/Profile.vue +6 -28
- package/src/modules/users/components/pages/ProfileBlogposts.vue +1 -1
- package/src/modules/users/components/pages/ProfileEdit.vue +1 -1
- package/src/modules/users/components/pages/ProfileEvents.vue +1 -1
- package/src/modules/users/components/pages/ProfileOrganizations.vue +1 -1
- package/src/modules/users/router/users.js +1 -1
- package/src/modules/wallet/components/pages/Wallet.vue +105 -109
- package/src/modules/wallet/controllers/crypto.controller.js +129 -0
- package/src/modules/wallet/models/reward.model.js +53 -0
- package/src/modules/wallet/routes/crypto.routes.js +36 -0
- package/src/modules/wallet/store/wallet.js +52 -49
- package/src/styles/base/all.scss +143 -11
- package/src/styles/base/backgrounds.scss +2 -34
- package/src/styles/base/borders.scss +18 -23
- package/src/styles/base/scrolling.scss +97 -29
- package/src/styles/base/{shadows.scss → shadow_transitions_hover_refactor.scss} +55 -2
- package/src/styles/config.scss +69 -17
- package/src/styles/layout.scss +12 -182
- package/src/styles/reset.scss +20 -21
- package/src/styles/responsive.scss +4 -67
- package/src/styles/theme.scss +3 -4
- package/src/styles/typography.scss +15 -17
- package/src/assets/fonts/AvenirNext-Bold.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-DemiBold.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Heavy.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Medium.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-Regular.woff2 +0 -0
- package/src/assets/fonts/AvenirNext-UltraLight.woff2 +0 -0
- package/src/modules/files/middlewares/server/md.js +0 -152
- package/src/modules/files/middlewares/server/middlewareMulter.js +0 -121
- package/src/modules/organizations/controllers/organizations.new.controller.js +0 -372
- package/src/modules/products/components/blocks/EditCategories.vue +0 -68
- package/src/modules/products/components/sections/EditParameters.vue +0 -58
- package/src/modules/products/components/sections/EditProductImages.vue +0 -67
- package/src/modules/spots/components/sections/Feed.vue +0 -64
- package/src/styles/base/border-radius.scss +0 -47
- package/src/styles/base/cursors.scss +0 -23
- package/src/styles/base/height.scss +0 -60
- package/src/styles/base/hovers.scss +0 -110
- package/src/styles/base/positions.scss +0 -192
- package/src/styles/base/transitions.scss +0 -137
- package/src/styles/base/width.scss +0 -2
- package/src/styles/components/block.scss +0 -18
- package/src/styles/components/breadcrumbs.scss +0 -0
- package/src/styles/components/input.scss +0 -319
@@ -1,48 +1,42 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
class="w-100 bg-main button"
|
37
|
-
>
|
38
|
-
Load more
|
39
|
-
</button>
|
40
|
-
</TransitionGroup>
|
41
|
-
</section>
|
2
|
+
<TransitionGroup v-if="isLoading" tag="ul" name="scaleTransition" class="o-hidden bg-grey radius-big">
|
3
|
+
<SkeletonEvent
|
4
|
+
v-if="isLoading"
|
5
|
+
v-for="i in currentLimit" :key="i"
|
6
|
+
/>
|
7
|
+
</TransitionGroup>
|
8
|
+
<transition name="scaleTransition">
|
9
|
+
<EmptyState
|
10
|
+
v-if="!isLoading && itemsList.length < 1"
|
11
|
+
:title="states.empty.title"
|
12
|
+
:description="states.empty.description"
|
13
|
+
class="pd-medium mn-b-thin bg-grey radius-big"
|
14
|
+
/>
|
15
|
+
</transition>
|
16
|
+
|
17
|
+
<!-- <SortProducts
|
18
|
+
|
19
|
+
/> -->
|
20
|
+
|
21
|
+
<TransitionGroup tag="ul" name="scaleTransition" :class="$attrs.class">
|
22
|
+
<slot
|
23
|
+
v-if="!isLoading && itemsList.length > 0"
|
24
|
+
:items="itemsList"
|
25
|
+
:user="user"
|
26
|
+
></slot>
|
27
|
+
</TransitionGroup>
|
28
|
+
|
29
|
+
<button
|
30
|
+
v-if="hasMoreItems && itemsList.length > 0"
|
31
|
+
@click="loadMoreItems"
|
32
|
+
class="w-100 bg-main button"
|
33
|
+
>
|
34
|
+
Load more
|
35
|
+
</button>
|
42
36
|
</template>
|
43
37
|
|
44
38
|
<script setup>
|
45
|
-
import { ref, computed, onMounted } from 'vue';
|
39
|
+
import { ref, computed, onMounted, watch } from 'vue';
|
46
40
|
|
47
41
|
import SkeletonEvent from '@pf/src/modules/icons/skeletons/SkeletonEvent.vue'
|
48
42
|
|
@@ -79,12 +73,13 @@ const props = defineProps({
|
|
79
73
|
user: null,
|
80
74
|
status: null,
|
81
75
|
period: null,
|
76
|
+
contain: null,
|
82
77
|
}),
|
83
78
|
},
|
84
79
|
});
|
85
80
|
|
86
81
|
const itemsList = ref([]);
|
87
|
-
const hasMoreItems = ref(
|
82
|
+
const hasMoreItems = ref(false);
|
88
83
|
|
89
84
|
let isLoading = ref(true);
|
90
85
|
|
@@ -109,14 +104,17 @@ const loadMoreItems = async () => {
|
|
109
104
|
|
110
105
|
if (data.length === 0) {
|
111
106
|
hasMoreItems.value = false;
|
107
|
+
} else if (data.length < currentLimit.value) {
|
108
|
+
hasMoreItems.value = false;
|
109
|
+
} else {
|
110
|
+
hasMoreItems.value = true;
|
112
111
|
}
|
113
112
|
|
114
113
|
itemsList.value = [...itemsList.value, ...data];
|
115
114
|
}
|
116
115
|
};
|
117
116
|
|
118
|
-
|
119
|
-
console.log(props.options)
|
117
|
+
const fetchItems = async () => {
|
120
118
|
const data = await props.store.read({
|
121
119
|
skip: currentSkip.value,
|
122
120
|
limit: currentLimit.value,
|
@@ -125,12 +123,29 @@ onMounted(async () => {
|
|
125
123
|
|
126
124
|
if (data.length === 0) {
|
127
125
|
hasMoreItems.value = false;
|
126
|
+
} else if (data.length < currentLimit.value) {
|
127
|
+
hasMoreItems.value = false;
|
128
128
|
} else {
|
129
129
|
hasMoreItems.value = true;
|
130
130
|
}
|
131
131
|
|
132
132
|
itemsList.value = data;
|
133
|
-
|
134
133
|
isLoading.value = false;
|
134
|
+
};
|
135
|
+
|
136
|
+
watch(() => props.options, (newVal, oldVal) => {
|
137
|
+
if (
|
138
|
+
newVal.organization !== oldVal.organization ||
|
139
|
+
newVal.categories !== oldVal.categories ||
|
140
|
+
newVal.prices !== oldVal.prices ||
|
141
|
+
newVal.delivery !== oldVal.delivery
|
142
|
+
) {
|
143
|
+
fetchItems();
|
144
|
+
}
|
145
|
+
}, { deep: true });
|
146
|
+
|
147
|
+
|
148
|
+
onMounted(async () => {
|
149
|
+
await fetchItems()
|
135
150
|
});
|
136
151
|
</script>
|
@@ -3,13 +3,13 @@
|
|
3
3
|
<Field
|
4
4
|
v-model:field="inputField"
|
5
5
|
@update:field="updateInput"
|
6
|
-
:placeholder="inputPlaceholder"
|
6
|
+
:placeholder="typing ? ' ' : inputPlaceholder"
|
7
7
|
@input="handleInput"
|
8
8
|
@focus="handleFocus"
|
9
9
|
@blur="checkInput"
|
10
|
-
class="w-100 pd-small p-big"
|
10
|
+
class="w-100 t-semi uppercase pd-small p-big"
|
11
11
|
/>
|
12
|
-
<button v-if="action" @click="emitAction" class="w-min
|
12
|
+
<button v-if="action" @click="emitAction" class="w-min hover-bg-black hover-t-white t-black bg-main button" v-html="action"/>
|
13
13
|
</div>
|
14
14
|
</template>
|
15
15
|
|
@@ -30,8 +30,16 @@
|
|
30
30
|
placeholderTexts: {
|
31
31
|
type: Object,
|
32
32
|
default: () => ({
|
33
|
-
en: [
|
34
|
-
|
33
|
+
en: [
|
34
|
+
'Lowest THC, please!',
|
35
|
+
'Something with banana flavors?',
|
36
|
+
"I'm in the mood for trippy vibes."
|
37
|
+
],
|
38
|
+
ru: [
|
39
|
+
'Я хочу самый низкий THC',
|
40
|
+
'Я хочу чего-нибудь бананового',
|
41
|
+
'Я хочу курнуть хейза'
|
42
|
+
],
|
35
43
|
})
|
36
44
|
},
|
37
45
|
typingSpeed: {
|
@@ -77,8 +85,11 @@
|
|
77
85
|
|
78
86
|
function handleFocus() {
|
79
87
|
typing.value = false
|
88
|
+
|
80
89
|
clearInterval(typeInterval.value)
|
90
|
+
|
81
91
|
inputPlaceholder.value = props.placeholder
|
92
|
+
|
82
93
|
if (!userText.value) {
|
83
94
|
inputField.value = ''
|
84
95
|
}
|
@@ -410,7 +410,7 @@
|
|
410
410
|
metadata,
|
411
411
|
...phoneObject
|
412
412
|
} = result;
|
413
|
-
|
413
|
+
|
414
414
|
// console.log(result.isValid?result.isValid():'loll')
|
415
415
|
let valid = result.isValid?.();
|
416
416
|
let formatted = this.phone;
|
@@ -876,6 +876,7 @@
|
|
876
876
|
margin-right:5px
|
877
877
|
}
|
878
878
|
.vti__input{
|
879
|
+
color: inherit;
|
879
880
|
border:none;
|
880
881
|
border-radius:0 2px 2px 0;
|
881
882
|
width:100%;
|
@@ -1,19 +1,19 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="pd-t-zero pd-thin">
|
3
|
-
<footer class="bg-black t-white radius-
|
4
|
-
|
3
|
+
<footer class="bg-black t-white radius-small pd-thin">
|
4
|
+
<!--
|
5
5
|
<div id="top-footer" class="cols-3 section">
|
6
6
|
|
7
7
|
<a href="mailto:hello@weeder.delivery" class="w-100 radius-small contact col">
|
8
|
-
|
8
|
+
<img class="mn-b-small h-3r" src="/logo/logotype.svg">
|
9
9
|
<p class="t-transp ">{{t('description')}}</p>
|
10
10
|
</a>
|
11
11
|
|
12
12
|
<div @click="this.$router.push({ name: 'Home' } )" class="flex-v-center flex logo-link col">
|
13
13
|
<p class="h4 mn-b-small">{{t('app')}}</p>
|
14
14
|
<div class="store-buttons">
|
15
|
-
|
16
|
-
|
15
|
+
<img class="h-3r" src="/assets/images/landing/appsvg" alt="Download on App Store">
|
16
|
+
<img class="h-3r" src="/assets/images/landing/googleplay.svg" alt="Download on Google Play">
|
17
17
|
</div>
|
18
18
|
</div>
|
19
19
|
|
@@ -22,13 +22,13 @@
|
|
22
22
|
|
23
23
|
<div class="socials flex-nojustify flex">
|
24
24
|
<a class="mn-r-small" href="https://t.me/weederdelivery" target="_blank">
|
25
|
-
|
25
|
+
<img src="@/assets/icons/Telegram_blue.svg">
|
26
26
|
</a>
|
27
27
|
<a class="mn-r-small" href="https://t.me/weederdelivery" target="_blank">
|
28
|
-
|
28
|
+
<img src="@/assets/icons/Telegram_blue.svg">
|
29
29
|
</a>
|
30
30
|
<a class="mn-r-small" href="https://t.me/weederdelivery" target="_blank">
|
31
|
-
|
31
|
+
<img src="@/assets/icons/Telegram_blue.svg">
|
32
32
|
</a>
|
33
33
|
</div>
|
34
34
|
</a>
|
@@ -44,14 +44,14 @@
|
|
44
44
|
|
45
45
|
<div class="mn-b-medium ol">
|
46
46
|
<li v-for="(category,index) in categories.state.all">
|
47
|
-
|
47
|
+
<router-link :to="getMarketplaceLink([category.url])">
|
48
48
|
<span v-html="t('categories[' + index + ']')"></span>
|
49
|
-
|
49
|
+
</router-link>
|
50
50
|
</li>
|
51
51
|
</div>
|
52
52
|
|
53
53
|
<a href="https://ozdao.dev" target="_blank">
|
54
|
-
|
54
|
+
<img src="/icons/ozdao.svg">
|
55
55
|
</a>
|
56
56
|
</ul>
|
57
57
|
|
@@ -60,12 +60,7 @@
|
|
60
60
|
<li class="mn-b-small t-semi h5">
|
61
61
|
{{t('information')}}
|
62
62
|
</li>
|
63
|
-
|
64
|
-
|
65
|
-
<!-- <router-link :to="{ name: 'Page', params: { url: page.url}}" class="col nav-link"> -->
|
66
|
-
<!-- <span v-html="t('pages[' + index + ']')"></span> -->
|
67
|
-
<!-- </router-link> -->
|
68
|
-
<!-- </li> -->
|
63
|
+
|
69
64
|
</ul>
|
70
65
|
|
71
66
|
<ul class="lh-semi col">
|
@@ -80,11 +75,19 @@
|
|
80
75
|
|
81
76
|
</ul>
|
82
77
|
|
83
|
-
</div>
|
78
|
+
</div> -->
|
79
|
+
<!-- <li v-for="(page,index) in pages"> -->
|
84
80
|
|
81
|
+
<!-- <router-link :to="{ name: 'Page', params: { url: page.url}}" class="col nav-link"> -->
|
82
|
+
<!-- <span v-html="t('pages[' + index + ']')"></span> -->
|
83
|
+
<!-- </router-link> -->
|
84
|
+
<!-- </li> -->
|
85
85
|
|
86
|
-
<p class="
|
87
|
-
{{t('
|
86
|
+
<p class="t-semi uppercase t-center">
|
87
|
+
{{ t('year') }}
|
88
|
+
<span class="t-main copyleft">{{ t('heart') }}</span>
|
89
|
+
{{ t('name') }}, {{ t('tagline') }}
|
90
|
+
<a href="https://ozdao.dev" class="t-main" target="_blank" rel="noopener" >OZ DAO.</a>
|
88
91
|
</p>
|
89
92
|
</footer>
|
90
93
|
</div>
|
@@ -95,11 +98,9 @@
|
|
95
98
|
import { useRouter } from 'vue-router'
|
96
99
|
import { useI18n } from 'vue-i18n'
|
97
100
|
|
98
|
-
import * as categories from '@pf/src/modules/products/store/
|
101
|
+
import * as categories from '@pf/src/modules/products/store/categories';
|
99
102
|
|
100
103
|
const router = useRouter()
|
101
|
-
|
102
|
-
await categories.actions.fetchCategories()
|
103
104
|
// await dispatch('pages/fetchAll')
|
104
105
|
|
105
106
|
const text = {
|
@@ -118,7 +119,11 @@
|
|
118
119
|
time: "24 / 7 Seven days a week",
|
119
120
|
copyright: "2022 © Weeder Delivery. Proudly created with OZ DAO.",
|
120
121
|
pages: [],
|
121
|
-
categories: []
|
122
|
+
categories: [],
|
123
|
+
year: "2023",
|
124
|
+
heart: "❤",
|
125
|
+
name: "Weeder",
|
126
|
+
tagline: "Builded with love in"
|
122
127
|
},
|
123
128
|
ru: {
|
124
129
|
store: 'Онлайн Каталог',
|
@@ -144,6 +149,13 @@
|
|
144
149
|
})
|
145
150
|
})
|
146
151
|
|
152
|
+
onMounted(async() => {
|
153
|
+
|
154
|
+
await categories.actions.fetchCategories()
|
155
|
+
|
156
|
+
})
|
157
|
+
|
158
|
+
|
147
159
|
// state.pages.all.forEach( page => {
|
148
160
|
// page.localization.forEach( localization => {
|
149
161
|
// text.messages[localization.locale].pages.push(localization.text)
|
@@ -155,7 +167,4 @@
|
|
155
167
|
</script>
|
156
168
|
|
157
169
|
<style lang="scss">
|
158
|
-
#top-footer {
|
159
|
-
padding-bottom: 0;
|
160
|
-
}
|
161
170
|
</style>
|