@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.
Files changed (269) hide show
  1. package/dist/addMembersQuantity-3505b6f3.mjs +98 -0
  2. package/dist/addMembersQuantity-fb552ca0.js +97 -0
  3. package/dist/auth.server.js +6 -9
  4. package/dist/auth.server.mjs +6 -9
  5. package/dist/community.server.js +28 -21
  6. package/dist/community.server.mjs +28 -21
  7. package/dist/events.server.js +1 -1
  8. package/dist/events.server.mjs +1 -1
  9. package/dist/files.server.js +114 -111
  10. package/dist/files.server.mjs +114 -111
  11. package/dist/gallery.server.js +3 -3
  12. package/dist/gallery.server.mjs +3 -3
  13. package/dist/globals.server.js +1 -1
  14. package/dist/globals.server.mjs +1 -1
  15. package/dist/index-a8dffc0c.js +213 -0
  16. package/dist/index-d769324d.mjs +214 -0
  17. package/dist/mailing-37c2ba41.mjs +68 -0
  18. package/dist/mailing-fe16a26a.js +67 -0
  19. package/dist/main.css +1 -1
  20. package/dist/middlewares.server.js +1 -1
  21. package/dist/middlewares.server.mjs +1 -1
  22. package/dist/organizations.server.js +125 -25
  23. package/dist/organizations.server.mjs +125 -25
  24. package/dist/prometheus-framework.cjs.js +30 -29
  25. package/dist/prometheus-framework.es.js +2478 -2282
  26. package/dist/reports.server.js +1 -1
  27. package/dist/reports.server.mjs +1 -1
  28. package/dist/users.server.js +1 -1
  29. package/dist/users.server.mjs +1 -1
  30. package/package.json +4 -2
  31. package/src/assets/images/logo.svg +7 -7
  32. package/src/components/Block/Block.vue +77 -0
  33. package/src/components/Breadcrumbs/Breadcrumbs.vue +2 -2
  34. package/src/components/Button/Button.vue +32 -227
  35. package/src/components/Checkbox/Checkbox.vue +1 -1
  36. package/src/components/Chips/Chips.vue +8 -8
  37. package/src/components/DatePicker/DatePicker.vue +3 -4
  38. package/src/components/EditImages/EditImages.vue +32 -14
  39. package/src/{modules/globals/components/sections → components/Feed}/Feed.vue +60 -45
  40. package/src/components/FieldBig/FieldBig.vue +16 -5
  41. package/src/components/FieldPhone/FieldPhone.vue +2 -1
  42. package/src/components/Footer/Footer.vue +36 -27
  43. package/src/components/Header/Header.vue +161 -166
  44. package/src/components/Loader/Loader.vue +9 -2
  45. package/src/components/LocationMarker/LocationMarker.vue +38 -12
  46. package/src/components/LocationSelection/LocationSelection.vue +67 -75
  47. package/src/components/Magnifier/Magnifier.vue +3 -3
  48. package/src/components/Navigation/Navigation.vue +16 -16
  49. package/src/components/Popup/Popup.vue +8 -6
  50. package/src/components/Select/Select.vue +35 -6
  51. package/src/components/SelectMulti/SelectMulti.vue +5 -13
  52. package/src/components/Shader/Shader.vue +128 -0
  53. package/src/components/Sidebar/Sidebar.vue +71 -35
  54. package/src/components/Spoiler/Spoiler.vue +1 -1
  55. package/src/components/Tab/Tab.vue +1 -1
  56. package/src/components/Tooltip/Tooltip.vue +1 -1
  57. package/src/components/UploadImage/UploadImage.vue +4 -4
  58. package/src/components/UploadImageMultiple/UploadImageMultiple.vue +54 -10
  59. package/src/modules/applications/controllers/applications.controller.js +0 -1
  60. package/src/modules/auth/components/pages/EnterCode.vue +1 -1
  61. package/src/modules/auth/components/pages/EnterPassword.vue +3 -3
  62. package/src/modules/auth/components/pages/ResetPassword.vue +1 -2
  63. package/src/modules/auth/components/pages/SignIn.vue +26 -10
  64. package/src/modules/auth/components/pages/SignUp.vue +1 -2
  65. package/src/modules/auth/controllers/twofa.controller.js +4 -4
  66. package/src/modules/auth/localization/EnterCode.json +2 -2
  67. package/src/modules/auth/localization/EnterPassword.json +2 -2
  68. package/src/modules/auth/localization/ResetPassword.json +2 -2
  69. package/src/modules/auth/localization/SignIn.json +3 -3
  70. package/src/modules/auth/localization/SignUp.json +3 -3
  71. package/src/modules/auth/utils/server/verifyAppleIdToken.js +0 -1
  72. package/src/modules/backoffice/components/layouts/Backoffice.vue +1 -1
  73. package/src/modules/backoffice/components/pages/Dashboard.vue +171 -120
  74. package/src/modules/backoffice/router/backoffice.js +119 -129
  75. package/src/modules/chats/components/blocks/ChatMessage.vue +25 -0
  76. package/src/modules/chats/components/pages/ChatPage.vue +50 -0
  77. package/src/modules/chats/components/sections/ChatWindow.vue +38 -0
  78. package/src/modules/chats/controllers/chats.controller.js +32 -0
  79. package/src/modules/chats/models/chat.model.js +26 -0
  80. package/src/modules/chats/routes/chats.routes.js +53 -0
  81. package/src/modules/chats/store/chat.store.js +61 -0
  82. package/src/modules/community/components/blocks/CardBlogpost.vue +19 -4
  83. package/src/modules/community/components/layouts/Community.vue +96 -39
  84. package/src/modules/community/components/pages/Blog.vue +4 -3
  85. package/src/modules/community/components/pages/BlogPost.vue +10 -1
  86. package/src/modules/community/components/pages/CreateBlogPost.vue +36 -17
  87. package/src/modules/community/components/sections/HotPosts.vue +3 -3
  88. package/src/modules/community/components/sections/JoinUs.vue +19 -13
  89. package/src/modules/community/controllers/blog.controller.js +3 -4
  90. package/src/modules/community/controllers/utils/queryProcessor.js +16 -17
  91. package/src/modules/community/models/blogpost.model.js +6 -3
  92. package/src/modules/community/store/blogposts.js +1 -0
  93. package/src/modules/constructor/components/elements/Embed.vue +12 -1
  94. package/src/modules/constructor/components/elements/ImageUpload.vue +2 -2
  95. package/src/modules/constructor/components/elements/Textarea.vue +6 -1
  96. package/src/modules/constructor/components/elements/Video.vue +79 -0
  97. package/src/modules/constructor/components/elements/VideoPlayer.vue +59 -0
  98. package/src/modules/constructor/components/elements/Youtube.vue +52 -0
  99. package/src/modules/constructor/components/sections/Constructor.vue +27 -3
  100. package/src/modules/events/components/layouts/layoutEvents.vue +7 -28
  101. package/src/modules/files/controllers/files.controller.js +9 -22
  102. package/src/modules/files/middlewares/server/index.js +2 -2
  103. package/src/modules/files/middlewares/server/middlewareBusboy.js +137 -0
  104. package/src/modules/files/routes/files.routes.js +9 -9
  105. package/src/modules/globals/localization/vue-i18n.js +8 -1
  106. package/src/modules/globals/mixins/mixins.js +23 -13
  107. package/src/modules/globals/router/routerGuards.js +2 -2
  108. package/src/modules/globals/store/globals.js +86 -9
  109. package/src/modules/globals/utils/mailing.js +24 -3
  110. package/src/modules/icons/entities/IconCommunity.vue +4 -4
  111. package/src/modules/icons/entities/IconEvents.vue +1 -1
  112. package/src/modules/icons/entities/IconGroups.vue +1 -1
  113. package/src/modules/icons/entities/IconPrice.vue +5 -0
  114. package/src/modules/icons/entities/IconProfile.vue +5 -0
  115. package/src/modules/icons/entities/IconShopcart.vue +5 -0
  116. package/src/modules/icons/entities/IconTime.vue +5 -0
  117. package/src/modules/icons/icons.client.js +4 -0
  118. package/src/modules/icons/labels/LabelAppStore.vue +24 -24
  119. package/src/modules/icons/labels/LabelGooglePlay.vue +9 -9
  120. package/src/modules/icons/logos/Logotype.vue +20 -0
  121. package/src/modules/icons/navigation/IconAdd.vue +17 -0
  122. package/src/modules/icons/navigation/IconChevronBottom.vue +18 -0
  123. package/src/modules/icons/navigation/IconChevronRight.vue +3 -3
  124. package/src/modules/icons/navigation/IconDelete.vue +19 -0
  125. package/src/modules/icons/navigation/IconMinus.vue +15 -0
  126. package/src/modules/icons/navigation/IconSearch.vue +17 -0
  127. package/src/modules/icons/navigation/IconUpload.vue +16 -0
  128. package/src/modules/icons/placeholders/PlaceholderImage.vue +5 -0
  129. package/src/modules/icons/placeholders/PlaceholderOrganizationPic.vue +20 -0
  130. package/src/modules/icons/placeholders/PlaceholderUserpic.vue +4 -18
  131. package/src/modules/icons/socials/instagram.vue +1 -1
  132. package/src/modules/icons/socials/line.vue +1 -1
  133. package/src/modules/icons/socials/reddit.vue +1 -1
  134. package/src/modules/icons/socials/telegram.vue +1 -1
  135. package/src/modules/icons/socials/twitter.vue +1 -1
  136. package/src/modules/icons/socials/youtube.vue +1 -1
  137. package/src/modules/landing/components/sections/Guide.vue +92 -0
  138. package/src/modules/landing/components/sections/MobileApp.vue +23 -12
  139. package/src/modules/marketplace/components/layouts/Marketplace.vue +76 -188
  140. package/src/modules/marketplace/components/pages/Catalog.vue +65 -119
  141. package/src/modules/marketplace/components/sections/Filters.vue +195 -0
  142. package/src/modules/marketplace/store/marketplace.js +2 -2
  143. package/src/modules/middlewares/client/auth.validation.js +0 -6
  144. package/src/modules/middlewares/client/states.validation.js +2 -8
  145. package/src/modules/middlewares/server/authJwt.js +1 -1
  146. package/src/modules/mobile/components/Menu/MenuItem.vue +3 -6
  147. package/src/modules/openai/controllers/openai.controller.js +0 -1
  148. package/src/modules/orders/components/blocks/CardOrder.vue +166 -0
  149. package/src/modules/orders/components/blocks/CardOrderItem.vue +59 -66
  150. package/src/modules/orders/components/blocks/Positions.vue +4 -4
  151. package/src/modules/orders/components/pages/EditOrder.vue +78 -142
  152. package/src/modules/orders/components/pages/FormOrder.vue +192 -0
  153. package/src/modules/orders/components/pages/Order.vue +326 -120
  154. package/src/modules/orders/components/pages/Orders.vue +13 -9
  155. package/src/modules/orders/components/pages/{ViewOrder.vue → Orders_refact.vue} +13 -10
  156. package/src/modules/orders/components/partials/ShopCart.vue +22 -13
  157. package/src/modules/orders/components/sections/EmptyState.vue +1 -1
  158. package/src/modules/orders/components/sections/{Form.vue → FormOrderDetails.vue} +38 -106
  159. package/src/modules/orders/controllers/orders.controller.js +37 -28
  160. package/src/modules/orders/models/order.model.js +39 -9
  161. package/src/modules/orders/router/orders.router.js +23 -2
  162. package/src/modules/orders/routes/orders.routes.js +14 -17
  163. package/src/modules/orders/store/orders.js +24 -9
  164. package/src/modules/orders/store/shopcart.js +20 -19
  165. package/src/modules/organizations/components/blocks/CardDepartment.vue +1 -1
  166. package/src/modules/organizations/components/blocks/CardOrganization.vue +98 -46
  167. package/src/modules/organizations/components/blocks/Rating.vue +1 -1
  168. package/src/modules/organizations/components/blocks/Socials.vue +11 -3
  169. package/src/modules/organizations/components/elements/ButtonToggleMembership.vue +1 -1
  170. package/src/modules/organizations/components/pages/Department.vue +1 -1
  171. package/src/modules/organizations/components/pages/DepartmentEdit.vue +4 -4
  172. package/src/modules/organizations/components/pages/Members.vue +6 -4
  173. package/src/modules/organizations/components/pages/Organization.vue +120 -49
  174. package/src/modules/organizations/components/pages/OrganizationEdit.vue +8 -1
  175. package/src/modules/organizations/components/pages/Organizations.vue +27 -6
  176. package/src/modules/organizations/components/sections/DetailsTab.vue +11 -9
  177. package/src/modules/organizations/components/sections/Feed.vue +0 -3
  178. package/src/modules/organizations/components/sections/FeedDepartments.vue +2 -2
  179. package/src/modules/organizations/controllers/organizations.controller.js +126 -15
  180. package/src/modules/organizations/controllers/utils/addMembersQuantity.js +19 -9
  181. package/src/modules/organizations/models/organization.model.js +5 -2
  182. package/src/modules/organizations/router/members.router.js +1 -3
  183. package/src/modules/organizations/router/organizations.js +8 -6
  184. package/src/modules/organizations/router/products.router.js +36 -2
  185. package/src/modules/organizations/store/organizations.js +38 -84
  186. package/src/modules/pages/controllers/pages.controller.js +0 -4
  187. package/src/modules/payments/controller/payments.controller.js +1 -1
  188. package/src/modules/products/components/blocks/CardLeftover.vue +17 -22
  189. package/src/modules/products/components/blocks/CardPosition.vue +96 -49
  190. package/src/modules/products/components/blocks/CardProduct.vue +24 -53
  191. package/src/modules/products/components/blocks/Images360.vue +4 -4
  192. package/src/modules/products/components/blocks/ImagesThumbnails.vue +2 -7
  193. package/src/modules/products/components/blocks/ListPositions.vue +74 -0
  194. package/src/modules/products/components/elements/Price.vue +11 -5
  195. package/src/modules/products/components/elements/THC.vue +6 -6
  196. package/src/modules/products/components/pages/{LeftoverAdd.vue → EditLeftover.vue} +93 -79
  197. package/src/modules/products/components/pages/Leftovers.vue +74 -70
  198. package/src/modules/products/components/pages/Product.vue +4 -7
  199. package/src/modules/products/components/pages/ProductEdit.vue +230 -88
  200. package/src/modules/products/components/pages/ProductRecommmendation.vue +1 -1
  201. package/src/modules/products/components/pages/Products.vue +6 -3
  202. package/src/modules/products/components/pages/ProductsBackoffice.vue +3 -5
  203. package/src/modules/products/components/sections/EditModifications.vue +3 -3
  204. package/src/modules/products/components/sections/EditProductInfo.vue +40 -50
  205. package/src/modules/products/components/sections/FilterProducts.vue +57 -18
  206. package/src/modules/products/components/sections/HeroRecommendation.vue +233 -99
  207. package/src/modules/products/components/sections/MenuSection.vue +127 -0
  208. package/src/modules/products/components/sections/PopularProducts.vue +81 -37
  209. package/src/modules/products/components/sections/SectionProduct.vue +21 -23
  210. package/src/modules/products/controllers/leftovers.controller.js +11 -1
  211. package/src/modules/products/controllers/products.controller.js +100 -97
  212. package/src/modules/products/models/leftover.model.js +6 -4
  213. package/src/modules/products/models/product.model.js +13 -1
  214. package/src/modules/products/routes/products.routes.js +4 -4
  215. package/src/modules/products/store/leftovers.js +4 -24
  216. package/src/modules/products/store/products.js +44 -30
  217. package/src/modules/spots/components/blocks/CardSpot.vue +43 -72
  218. package/src/modules/spots/components/layouts/Spots.vue +9 -91
  219. package/src/modules/spots/components/pages/Map.vue +171 -62
  220. package/src/modules/spots/components/pages/Spot.vue +1 -1
  221. package/src/modules/spots/components/pages/SpotEdit.vue +131 -174
  222. package/src/modules/spots/controllers/spots.controller.js +1 -0
  223. package/src/modules/spots/models/spot.model.js +6 -3
  224. package/src/modules/spots/store/spots.js +42 -48
  225. package/src/modules/users/components/pages/Profile.vue +6 -28
  226. package/src/modules/users/components/pages/ProfileBlogposts.vue +1 -1
  227. package/src/modules/users/components/pages/ProfileEdit.vue +1 -1
  228. package/src/modules/users/components/pages/ProfileEvents.vue +1 -1
  229. package/src/modules/users/components/pages/ProfileOrganizations.vue +1 -1
  230. package/src/modules/users/router/users.js +1 -1
  231. package/src/modules/wallet/components/pages/Wallet.vue +105 -109
  232. package/src/modules/wallet/controllers/crypto.controller.js +129 -0
  233. package/src/modules/wallet/models/reward.model.js +53 -0
  234. package/src/modules/wallet/routes/crypto.routes.js +36 -0
  235. package/src/modules/wallet/store/wallet.js +52 -49
  236. package/src/styles/base/all.scss +143 -11
  237. package/src/styles/base/backgrounds.scss +2 -34
  238. package/src/styles/base/borders.scss +18 -23
  239. package/src/styles/base/scrolling.scss +97 -29
  240. package/src/styles/base/{shadows.scss → shadow_transitions_hover_refactor.scss} +55 -2
  241. package/src/styles/config.scss +69 -17
  242. package/src/styles/layout.scss +12 -182
  243. package/src/styles/reset.scss +20 -21
  244. package/src/styles/responsive.scss +4 -67
  245. package/src/styles/theme.scss +3 -4
  246. package/src/styles/typography.scss +15 -17
  247. package/src/assets/fonts/AvenirNext-Bold.woff2 +0 -0
  248. package/src/assets/fonts/AvenirNext-DemiBold.woff2 +0 -0
  249. package/src/assets/fonts/AvenirNext-Heavy.woff2 +0 -0
  250. package/src/assets/fonts/AvenirNext-Medium.woff2 +0 -0
  251. package/src/assets/fonts/AvenirNext-Regular.woff2 +0 -0
  252. package/src/assets/fonts/AvenirNext-UltraLight.woff2 +0 -0
  253. package/src/modules/files/middlewares/server/md.js +0 -152
  254. package/src/modules/files/middlewares/server/middlewareMulter.js +0 -121
  255. package/src/modules/organizations/controllers/organizations.new.controller.js +0 -372
  256. package/src/modules/products/components/blocks/EditCategories.vue +0 -68
  257. package/src/modules/products/components/sections/EditParameters.vue +0 -58
  258. package/src/modules/products/components/sections/EditProductImages.vue +0 -67
  259. package/src/modules/spots/components/sections/Feed.vue +0 -64
  260. package/src/styles/base/border-radius.scss +0 -47
  261. package/src/styles/base/cursors.scss +0 -23
  262. package/src/styles/base/height.scss +0 -60
  263. package/src/styles/base/hovers.scss +0 -110
  264. package/src/styles/base/positions.scss +0 -192
  265. package/src/styles/base/transitions.scss +0 -137
  266. package/src/styles/base/width.scss +0 -2
  267. package/src/styles/components/block.scss +0 -18
  268. package/src/styles/components/breadcrumbs.scss +0 -0
  269. package/src/styles/components/input.scss +0 -319
@@ -17,7 +17,6 @@ const state = reactive({
17
17
  category: [],
18
18
  status: 'unpublished',
19
19
  information: [],
20
- coverImage: '',
21
20
  images: [],
22
21
  files: [],
23
22
  image3d: false,
@@ -26,6 +25,8 @@ const state = reactive({
26
25
  price: 0,
27
26
  localization: [],
28
27
  modifications: [],
28
+ quantityDiscount: [],
29
+ ingridients: [],
29
30
  description: ''
30
31
  }
31
32
  });
@@ -55,40 +56,56 @@ const actions = {
55
56
  async read(options = {}) {
56
57
  // query.params = options.params || {};
57
58
 
58
- let query = { params: {}}
59
+ let query = {}
59
60
 
60
61
  // Handle fetching a specific post by _id
61
62
  if (options._id) {
62
- query.params._id = options._id ;
63
+ query._id = options._id ;
63
64
  }
64
65
 
65
66
  // Handle fetching posts by category
66
67
  if (options.category) {
67
- query.params.category = options.category;
68
+ query.category = options.category;
68
69
  }
69
-
70
- query.params.skip = options.skip || 0;
71
- query.params.limit = options.limit || 10;
72
70
 
73
71
  if (options.organization) {
74
- query.params.organization = options.organization;
72
+ query.organization = options.organization;
73
+ }
74
+
75
+ if (options.count) {
76
+ query.count = options.count
75
77
  }
76
78
 
77
- console.log(options)
78
- if (options.status) {
79
- query.params.status = options.status;
79
+ if (options.categories) {
80
+ query.categories = options.categories;
80
81
  }
81
82
 
82
- query.params.sort = 'createdAt';
83
+ if (options.prices) {
84
+ query.prices = options.prices;
85
+ }
86
+
87
+ if (options.delivery) {
88
+ query.delivery = options.delivery;
89
+ }
90
+
91
+ if (options.status) {
92
+ query.status = options.status;
93
+ }
94
+
95
+ query.sort = 'createdAt';
83
96
 
84
- console.log(query)
97
+ query.skip = options.skip || 0;
98
+ query.limit = options.limit || 10;
99
+
100
+ console.log(query)
85
101
  try {
86
- const response = await $axios.get('/products/read', { params: query.params });
102
+ const response = await $axios.get('/products/read', { params: query });
87
103
 
88
- if (options._id) {
89
- state.current = response.data[0];
104
+ if (options._id) {
105
+ state.current = {...response.data[0]};
106
+ return Promise.resolve(response.data[0]);
90
107
  } else {
91
- state.all = response.data;
108
+ return Promise.resolve(response.data);
92
109
  }
93
110
  return Promise.resolve(response.data);
94
111
  } catch (error) {
@@ -187,19 +204,16 @@ const actions = {
187
204
  },
188
205
 
189
206
  async fetchProduct(_id) {
190
- return await $axios.get("/products/" + _id).then(
191
- (product) => {
192
- if (!product.localization) {
193
- product.localization = [];
194
- }
195
- state.current = product.data;
196
- return Promise.resolve(product.data);
197
- },
198
- (error) => {
199
- setError(error);
200
- return Promise.reject(error);
201
- }
202
- );
207
+ try {
208
+ const response = await $axios.get("/products/" + _id);
209
+
210
+ console.log(response)
211
+ state.current = response.data[0];
212
+ return Promise.resolve(response.data[0]);
213
+ } catch (error) {
214
+ setError(error)
215
+ return Promise.reject(error);
216
+ }
203
217
  },
204
218
 
205
219
  async fetchProductPopular() {
@@ -3,93 +3,64 @@
3
3
  <Map :location="{lat: spot.location.coordinates[1] ,lng: spot.location.coordinates[0]}" class=""/>
4
4
 
5
5
  <div class="pd-medium w-100">
6
- <svg @click="$router.push(`/organizations/${props.organization._id}/spots/${spot._id}/edit`)" class="i-regular pos-absolute pos-r-0 pos-t-0 t-transp" width="652" height="652" viewBox="0 0 652 652" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path d="M515.693 9.52082C510.095 3.91669 502.49 0.765625 494.563 0.765625C486.635 0.765625 479.036 3.91669 473.432 9.52082L48.7255 434.307C44.8244 438.214 42.0848 443.125 40.8088 448.496L0.939444 615.069C-1.47202 625.168 1.528 635.788 8.86652 643.132C16.2103 650.47 26.8305 653.47 36.9292 651.059L203.516 611.261H203.511C208.88 609.985 213.792 607.246 217.699 603.35L642.485 178.496C648.089 172.892 651.241 165.293 651.241 157.366C651.241 149.439 648.089 141.835 642.485 136.235L515.693 9.52082ZM113.76 453.708L388.307 179.161L472.828 263.682L198.281 538.229L113.76 453.708ZM87.1041 511.5L140.416 564.812L70.3014 581.614L87.1041 511.5ZM515.091 221.793L430.195 136.897L494.184 72.9075L579.08 157.429L515.091 221.793Z" fill="black"/>
8
- </svg>
9
-
6
+
7
+ <!-- v-if="user === event.creator.target._id" -->
8
+ <IconEdit
9
+ @click="$router.push({
10
+ name: 'Spot Edit',
11
+ params: {
12
+ _id: props.organization._id,
13
+ spot: spot._id
14
+ }
15
+ })"
16
+ class="z-index-2 pos-absolute pos-t-regular pos-r-regular i-regular t-transp"
17
+ />
18
+
19
+
20
+
21
+ <p
22
+ @click="$router.push(`/app/organization/${props.organization._id}/spots/${spot._id}`)"
23
+ class="pd-thin bg-white radius-small mn-b-thin p-small w-max"
24
+ >
25
+ {{spot.address}}
26
+ </p>
27
+
10
28
  <h3
11
29
  @click="$router.push(`/app/organization/${props.organization._id}/spots/${spot._id}`)"
12
- class="mn-b-small w-100"
30
+ class="mn-b-thin w-100"
13
31
  v-html="spot.profile.name"
14
32
  />
15
33
 
16
- <p
17
- @click="$router.push(`/app/organization/${props.organization._id}/spots/${spot._id}`)"
18
- class="mn-b-small p-big w-100"
19
- v-html="spot.address"
20
- />
21
34
 
22
- <Spoiler
23
- class="
24
- radius-small
25
- o-hidden
26
- br-1px br-solid br-grey
27
- mn-b-thin
28
- "
29
- >
30
- <template #header>
31
- <div class="pd-small flex-v-center flex-nowrap flex">
32
- <h5 class="w-100" >Contacts </h5>
33
- <p class="mn-r-small">{{spot.members.length}}&nbsp;человек</p>
34
- <svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
35
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4697 0.469727L13.5304 1.53039L7.00006 8.06072L0.469727 1.53039L1.53039 0.469727L7.00006 5.9394L12.4697 0.469727Z" fill="#8A8A8A"/>
36
- </svg>
37
-
38
- </div>
39
- </template>
40
- <template #content>
41
- <ul>
42
- <li v-if="spot.members.length < 1">В отделе еще нет участников</li>
43
- <User
44
- class="br-b br-solid br-grey"
45
- v-for="(member, index) in spot.members"
46
- :key="index"
47
- :user="member.user"
48
- :position="member.position"
49
- @click="$router.push(`/app/profile/${member.user._id}`)"
50
- />
51
- </ul>
52
- </template>
53
- </Spoiler>
54
-
55
- <Spoiler
56
- class="
57
- radius-small
58
- o-hidden
59
- br-1px br-solid br-grey
60
- mn-b-thin
61
- "
62
- >
63
- <template #header>
64
- <div class="pd-small flex-v-center flex-nowrap flex">
65
- <h5 class="w-100" >Working Hours </h5>
66
- <p class="mn-r-small">{{spot.subspots ? spot.subspots.length : 0}}&nbsp;отделов</p>
67
- <svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
68
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4697 0.469727L13.5304 1.53039L7.00006 8.06072L0.469727 1.53039L1.53039 0.469727L7.00006 5.9394L12.4697 0.469727Z" fill="#8A8A8A"/>
69
- </svg>
70
-
71
- </div>
72
- </template>
73
- <template #content>
74
- <ul>
75
- <li v-if="spot.subspots.length < 1">В отделе еще нет подотделов</li>
76
- <SpotSub v-for="(subspotsartment, index) in spot.subspots" @click="$router.push(`/app/organization/spots/${subspotsartment._id}`)" :key="index" class="br-b br-solid br-grey" :spot="subspotsartment" />
77
- </ul>
78
- </template>
79
- </Spoiler>
35
+
36
+ <p class="d-block p-big mn-b-semi">{{spot.profile.description}}</p>
37
+
38
+ <h4>Delivery:</h4>
39
+ <Chips
40
+ v-if="type !== 'short' && spot.delivery.length > 0"
41
+ :chips="spot.delivery"
42
+ />
43
+
44
+ <h4>Accepted Payment:</h4>
45
+ <Chips
46
+ v-if="type !== 'short' && spot.payment.length > 0"
47
+ :chips="spot.payment"
48
+ />
49
+
50
+
80
51
 
81
52
  </div>
82
53
  </div>
54
+
83
55
  </template>
84
56
 
85
57
  <script setup>
86
58
  import { ref } from 'vue';
87
59
 
88
- import Spoiler from '@pf/src/components/Spoiler/Spoiler.vue';
89
- import Map from '@pf/src/components/Map/Map.vue';
60
+ import IconEdit from '@pf/src/modules/icons/navigation/IconEdit.vue'
90
61
 
91
- import SpotSub from '@pf/src/modules/spots/components/blocks/SpotSub.vue';
92
- import User from '@pf/src/modules/organizations/components/blocks/User.vue';
62
+ import Chips from '@pf/src/components/Chips/Chips.vue'
63
+ import Map from '@pf/src/components/Map/Map.vue';
93
64
 
94
65
  const props = defineProps({
95
66
  spot: Object,
@@ -1,13 +1,7 @@
1
1
  <template>
2
- <div class="">
3
- <div class="pd-b-zero pd-thin">
4
- <Breadcrumbs class="pd-medium bg-grey radius-big"/>
5
- </div>
6
-
2
+ <div class="w-100 h-100">
7
3
  <!-- Catalog wrapper -->
8
- <div class="cols-1 gap-thin pd-thin">
9
-
10
- <!-- Products wrapper -->
4
+ <div class="h-100 w-100 flex-nowrap flex-column flex gap-thin pd-thin">
11
5
 
12
6
  <!-- Sorting section -->
13
7
  <div class="pd-medium bg-grey radius-big">
@@ -16,85 +10,24 @@
16
10
  <h2 class="t-left">
17
11
  <span class="">Weed in </span>
18
12
 
19
- <span @click="a => { globals.state.isLocationPopupOpen = true }" v-if="localPosition.city || localPosition.state || localPosition.country" class="t-semi t-main">
13
+ <span @click="a => { globals.state.isOpenLocationPopup = true }" v-if="localPosition.city || localPosition.state || localPosition.country" class="t-semi t-main">
20
14
  <span v-if="localPosition.city">{{localPosition.city}}, </span>
21
15
  <span v-if="localPosition.state">{{localPosition.state}}, </span>
22
16
  <span v-if="localPosition.country">{{localPosition.country}}</span>
23
17
  </span>
24
18
 
25
- <span v-else @click="a => { globals.state.isLocationPopupOpen = true }" class="t-semi t-main">
19
+ <span v-else @click="a => { globals.state.isOpenLocationPopup = true }" class="t-semi t-main">
26
20
  The World
27
21
  </span>
28
22
  </h2>
29
23
  </header>
30
24
 
31
- <button class="bg-main button">See on map</button>
25
+ <!-- <button class="bg-main button">See on map</button> -->
32
26
  </div>
33
27
  </div>
34
28
 
35
- <!-- Filters wrapper -->
36
- <div class="pd-medium bg-grey radius-big flex-nowrap flex">
37
- <h3 class="mn-b-small">Filters</h3>
38
-
39
- <Dropdown :label="t('categoriesTitle')">
40
- <Checkbox
41
- v-for="(category, index) in categories"
42
- :label="category.name"
43
- name="categories"
44
- :value="category.url"
45
- class="w-100 mn-t-small mn-b-small bg-white radius-small pd-small"
46
- :radio="marketplace.state.filter.categories"
47
- />
48
- </Dropdown>
49
-
50
- <Dropdown :label="t('filters.price.title')">
51
- <Checkbox
52
- v-for="(price, index) in prices"
53
- :label="price.label"
54
- name="prices"
55
- :value="price.value"
56
- class="w-100 mn-t-small bg-white radius-small pd-small"
57
- :radio="marketplace.state.filter.prices"
58
- />
59
- </Dropdown>
60
-
61
- <Dropdown label="Delivery">
62
- <Checkbox
63
- v-for="(delivery, index) in delivery"
64
- :label="delivery.label"
65
- name="prices"
66
- :value="delivery.value"
67
- class="w-100 mn-t-small bg-white radius-small pd-small"
68
- :radio="marketplace.state.filter.delivery"
69
- />
70
- </Dropdown>
71
- <!-- Reset filter -->
72
- <button @click="resetFilterButton()" class="bg-main button">{{t('filters.reset')}}</button>
73
-
74
- </div>
75
-
76
- <!-- <div class="pd-medium mn-b-thin bg-grey radius-big">
77
- <div class="flex-nowrap flex flex-v-center">
78
- <p class="mn-r-auto p-big t-semi t-transp">2,982 results</p>
79
-
80
- <button
81
- @click="setSort('price')"
82
- class="button-active button-sort button">
83
- {{t('sort.price')}}
84
- </button>
85
- <button
86
- @click="setSort('createdAt')"
87
- class="button-sort button">
88
- {{t('sort.newest')}}
89
- </button>
90
- <button
91
- @click="setSort('popularity')"
92
- class="button-sort button">
93
- {{t('sort.popularity')}}
94
- </button>
95
- </div>
96
-
97
- </div> -->
29
+
30
+ <!-- <Filters/> -->
98
31
 
99
32
  <!-- Products section -->
100
33
  <router-view v-slot="{ Component, route }">
@@ -124,6 +57,8 @@
124
57
  import Footer from '@pf/src/components/Footer/Footer.vue'
125
58
  import Dropdown from "@pf/src/components/Dropdown/Dropdown.vue";
126
59
 
60
+ import Filters from '@pf/src/modules/marketplace/components/sections/Filters.vue'
61
+
127
62
 
128
63
  import * as globals from '@pf/src/modules/globals/store/globals';
129
64
  import * as categories from '@pf/src/modules/products/store/categories';
@@ -133,23 +68,6 @@
133
68
  const route = useRoute()
134
69
  const router = useRouter()
135
70
 
136
-
137
- // Accessing state
138
- const categories2 = computed(() => categories.state.all)
139
-
140
- const delivery = [
141
- { label: 'Pickup', value: 'pickup' },
142
- { label: 'Courier', value: 'courier' },
143
- { label: 'Post', value: 'post' }
144
- ]
145
-
146
- const prices = [
147
- { label: 'Under $5', value: '<5' },
148
- { label: '$5 to $10', value: '5-10' },
149
- { label: '$10 to $20', value: '10-20' },
150
- { label: '$20 and above', value: '>20' }
151
- ]
152
-
153
71
  const localPosition = ref({
154
72
  city: null,
155
73
  state: null,