@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
@@ -2,34 +2,23 @@
2
2
  box-sizing: border-box;
3
3
  }
4
4
 
5
- *[disabled] {
6
- opacity: 0.75;
7
- pointer-events: none;
8
- cursor: default;
9
- }
10
-
11
- .disabled {
12
- opacity: 0.75;
13
- pointer-events: none;
14
- cursor: default;
5
+ html, body {
6
+ position: relative;
7
+ width: 100vh;
8
+ height: 100vh;
15
9
  }
16
10
 
17
11
  html {
18
12
  backface-visibility: hidden;
13
+ text-rendering: geometricPrecision;
19
14
  -webkit-font-smoothing: subpixel-antialiased;
20
15
  -moz-osx-font-smoothing: grayscale;
21
- // text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
22
- text-rendering: geometricPrecision;
23
- // -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
24
16
  }
25
17
 
26
18
  body {
27
- position: relative;
28
- width: 100%;
29
-
30
- background-color: white;
31
- color: black;
32
- font-family: 'Avenir Next' !important;
19
+ background: rgb(var(--white));
20
+ color: rgb(var(--black));;
21
+ font-family: var(--font) !important;
33
22
 
34
23
  -ms-overflow-style: none;
35
24
  // overflow-y: hidden;
@@ -37,169 +26,10 @@ body {
37
26
  }
38
27
 
39
28
  #app {
29
+ display: grid;
40
30
  position: relative;
41
- z-index: 1;
42
- }
43
-
44
- #page-content {
45
- min-height: 100vh;
46
- scroll-margin-top: 4rem;
47
- z-index: 1;
48
-
49
- transform-style: preserve-3d;
50
- perspective: 750px;
51
- perspective-origin: top;
52
- }
53
-
54
-
55
-
56
- .scroll-content { backface-visibility: hidden; }
57
- .unactive { opacity: 0.0; }
58
- .hide { display: block; position: absolute; opacity: 0; pointer-events: none; }
59
-
60
- // ////////////////////////////////////////
61
- // TRANSITIONS
62
- // ////////////////////////////////////////
63
- .TransitionTranslateY-enter-active,
64
- .TransitionTranslateY-leave-active {
65
- transform: translateY(0px);
66
- opacity: 1;
67
- z-index: 1;
68
- transition: all 0.5s ease;
69
- }
70
- .TransitionTranslateY-enter-from,
71
- .TransitionTranslateY-leave-to {
72
- opacity: 0;
73
- z-index: 0;
74
- position: absolute;
75
- width: inherit;
76
- height: inherit;
77
- display: block;
78
- transform: translateY(-30px);
79
- transition: all 0.5s ease;
80
- }
81
-
82
- .TransitionTranslateY-small-enter-active,
83
- .TransitionTranslateY-small-leave-active {
84
- // transform: translateY(0px);
85
- opacity: 1;
86
- z-index: 1;
87
- transition: all 0.5s ease;
88
- }
89
- .TransitionTranslateY-small-enter-from,
90
- .TransitionTranslateY-small-leave-to {
91
- opacity: 0;
92
- z-index: 0;
93
- position: absolute;
94
- width: inherit;
95
- height: inherit;
96
- display: block;
97
- transform: scale(0.5);
98
- transition: all 0.5s ease;
99
- }
100
-
101
- .fadeIn-enter-active,
102
- .fadeIn-leave-active {
103
- transition: all 0.5s 'ease-in-out';
104
- }
105
-
106
- .fadeIn-enter-from,
107
- .fadeIn-leave-to {
108
- opacity: 0;
109
-
110
- position: absolute;
111
- }
112
-
113
- .fade-enter-active, .fade-leave-active {
114
- transition: all 0.5s;
115
- max-height: 500px;
116
- }
117
- .fade-enter-from, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
118
- opacity: 0;
119
- max-height: 0;
120
- }
121
-
122
- .scale-enter-active,
123
- .scale-leave-active {
124
- opacity: 1;
125
- transform: translateZ(0);
126
- transition: all 0.5s ease;
127
- }
128
- .scale-enter-from,
129
- .scale-leave-to {
130
- position: absolute;
131
- opacity: 0;
132
- // transform: scale(1.1);
133
- transform: translateZ(40px);
134
- transition: all 0.5s ease;
135
-
136
- > * { position: absolute;}
137
- }
138
-
139
-
140
- .moveFromTop-enter-active,
141
- .moveFromTop-leave-active {
142
- transform: translateY(-12rem);
143
- transition: all 0.5s ease;
144
- }
145
- .moveFromTop-enter-from,
146
- .moveFromTop-leave-to {
147
- transform: translateY(0);
148
- transition: all 0.5s ease;
149
- }
150
-
151
-
152
- // ////////////////////////////////////////
153
- // COMPONENTS
154
- // ////////////////////////////////////////
155
- .spoiler-active {
156
- transform: rotate(180deg);
157
- }
158
-
159
-
160
- // ////////////////////////////////////////
161
- // SECTIONS
162
- // ////////////////////////////////////////
163
- .section {
164
- display: block;
165
- position: relative;
166
-
167
- width: 100%;
168
-
169
- padding: 4rem;
170
-
171
- box-sizing: border-box;
172
-
173
- &-subsection {
174
- padding: 3.125rem 6.25rem
175
- }
176
-
177
- &-panel {
178
- padding: 1.5rem 6.25rem
179
- }
31
+ height: 100vh;
32
+ overflow: hidden;
180
33
 
181
- &-header {
182
- padding: 40px 80px;
183
- background: white;
184
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
185
-
186
- .title {
187
- width: 100;
188
- h1 { margin-right: 1rem;}
189
- .round-stat {
190
- display: flex;
191
- justify-content: center;
192
- align-items: center;
193
- width: 2.5rem;
194
- height: 2.5rem;
195
- margin-top: 1rem;
196
- border-radius: 2rem;
197
- background: rgba(0,0,0,0.1);
198
- color: black;
199
- font-size: 1.5rem;
200
- line-height: 2rem;
201
- text-align: center;
202
- }
203
- }
204
- }
34
+ grid-template-rows: min-content;
205
35
  }
@@ -18,6 +18,9 @@ time, mark, audio, video, textarea, input {
18
18
  font-size: 100%;
19
19
  font: inherit;
20
20
  vertical-align: baseline;
21
+ color: inherit;
22
+ background: transparent;
23
+ text-decoration: none;
21
24
  }
22
25
 
23
26
  a:link, a:visited, a:hover {
@@ -25,38 +28,40 @@ a:link, a:visited, a:hover {
25
28
  text-decoration: none;
26
29
  }
27
30
 
28
- li {
29
- list-style: none;
30
- }
31
31
 
32
32
  article, aside, details, figcaption, figure,
33
33
  footer, header, hgroup, menu, nav, section {
34
- display: block; }
34
+ display: block;
35
+ }
36
+
37
+ header, select, input, span, label, textarea {
38
+ box-sizing: border-box;
39
+ font-family: inherit;
40
+ }
35
41
 
36
- body {
37
- line-height: 1; }
38
42
 
39
- ol, ul {
40
- list-style: none; }
43
+ ol, ul, li {
44
+ list-style: none;
45
+ }
41
46
 
42
47
  blockquote, q {
43
- quotes: none; }
48
+ quotes: none;
49
+ }
44
50
 
45
51
  blockquote:before, blockquote:after,
46
52
  q:before, q:after {
47
53
  content: '';
48
- content: none; }
54
+ content: none;
55
+ }
49
56
 
50
57
  table {
51
58
  border-collapse: collapse;
52
- border-spacing: 0; }
53
-
54
- header, select, input, span, label, textarea {
55
- box-sizing: border-box;
56
- font-family: inherit;
59
+ border-spacing: 0;
57
60
  }
58
61
 
59
62
  input, textarea {
63
+ background: transparent;
64
+ text-decoration: none;
60
65
  &, &:link, &:focus, &:visited, &:active {
61
66
  text-decoration: none;
62
67
  outline: none;
@@ -67,12 +72,6 @@ input, textarea {
67
72
  }
68
73
  }
69
74
 
70
- // Resets for inputs
71
- a, input, textarea {
72
- background: transparent;
73
- text-decoration: none;
74
- }
75
-
76
75
  /* Chrome, Safari, Edge, Opera */
77
76
  input::-webkit-outer-spin-button,
78
77
  input::-webkit-inner-spin-button {
@@ -34,13 +34,6 @@ $xxl-desktop-min: 1921px;
34
34
  html, body {
35
35
  font-size: 14px;
36
36
  }
37
-
38
- .section {
39
- padding: 3rem 2rem;
40
- }
41
- .input-text {
42
- width: 100%;
43
- }
44
37
  }
45
38
 
46
39
  @media screen and (min-width: $tablet-portrait-min) {
@@ -52,12 +45,6 @@ $xxl-desktop-min: 1921px;
52
45
  width: 100% !important;
53
46
  }
54
47
 
55
- .popup-wrapper {
56
- > section {
57
- bottom: 0;
58
- }
59
- }
60
-
61
48
  }
62
49
 
63
50
  @media screen and (max-width: 1025px) {
@@ -69,14 +56,10 @@ $xxl-desktop-min: 1921px;
69
56
  .mobile-only {
70
57
  display: inherit !important;
71
58
  }
72
-
73
- .mn-b-small { margin-bottom: 1.5rem !important;}
74
-
75
-
59
+
76
60
  // Cols
77
61
  .cols-1, .cols-2, .cols-3, .cols-4, .cols-2-2_1, .cols-2-1_2, .cols-2-1_3, .cols-2-golden-ration { display: grid !important; grid-template-columns: 1fr !important; }
78
62
  .cols-4.no-responsive { grid-template-columns: 1fr 1fr 1fr 1fr !important }
79
- .grid-container { grid-template-columns: 1fr !important; }
80
63
  .cols-2 { >.col { width: 100% !important; } }
81
64
 
82
65
  .pd-extra { padding: 3rem }
@@ -95,49 +78,6 @@ $xxl-desktop-min: 1921px;
95
78
  grid-template-columns: 1fr 1fr 1fr!important;
96
79
  }
97
80
 
98
-
99
-
100
- .btm-header .active {
101
- height: auto!important;
102
- padding: 2rem!important;
103
- }
104
-
105
- #hero {
106
- text-align: center;
107
-
108
- .col:last-of-type {
109
- order: 1
110
- }
111
-
112
- .col:first-of-type {
113
- order: 2
114
- }
115
-
116
- span {
117
- display: inline-block;;
118
- }
119
- }
120
-
121
- #main-menu {
122
- li {
123
- &:nth-child(1) {
124
- background-size: 66% !important;
125
- }
126
-
127
- &:nth-child(2) {
128
- background-size: 66% !important;
129
- }
130
-
131
- &:nth-child(3) {
132
- background-size: 66% !important;
133
- }
134
- }
135
- }
136
-
137
- #gmap_canvas {
138
- height: 24rem !important;
139
- }
140
-
141
81
  .footer {
142
82
  text-align: center;
143
83
 
@@ -185,9 +125,9 @@ $xxl-desktop-min: 1921px;
185
125
 
186
126
 
187
127
 
188
- h1, .h1 { font-size: 3rem }
189
- h2, .h2 { font-size: 2.5rem }
190
- h3, .h3 { font-size: 1.75rem }
128
+ h1, .h1 { font-size: 2.5rem }
129
+ h2, .h2 { font-size: 1.75rem }
130
+ h3, .h3 { font-size: 1.5rem }
191
131
 
192
132
 
193
133
 
@@ -225,9 +165,6 @@ $xxl-desktop-min: 1921px;
225
165
  html, body {
226
166
  font-size: 8px;
227
167
  }
228
- .pd-extra {
229
- // padding: $big) + 1;
230
- }
231
168
  }
232
169
 
233
170
  @media screen and (max-width: $super-ultra-tiny-flip-phone-max) {
@@ -1,11 +1,8 @@
1
- @import './components/block';
2
- @import './components/breadcrumbs';
3
1
  @import './components/card';
4
- // @import './components/input';
5
2
  @import './components/item';
6
3
  @import './components/line';
7
4
 
8
- @import './config';
5
+
9
6
  @import './reset';
10
7
 
11
8
  @import './base/all';
@@ -13,3 +10,5 @@
13
10
  @import './typography';
14
11
  @import './layout';
15
12
  @import './responsive';
13
+
14
+ @import './config';
@@ -1,9 +1,3 @@
1
- @font-face {font-family: 'Avenir Next'; src: url("@/assets/fonts/AvenirNext-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; }
2
- @font-face {font-family: 'Avenir Next'; src: url("@/assets/fonts/AvenirNext-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; }
3
- @font-face {font-family: 'Avenir Next'; src: url("@/assets/fonts/AvenirNext-DemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; }
4
- @font-face {font-family: 'Avenir Next'; src: url("@/assets/fonts/AvenirNext-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; }
5
- @font-face {font-family: 'Avenir Next'; src: url("@/assets/fonts/AvenirNext-Heavy.woff2") format("woff2"); font-weight: 800; font-style: normal; }
6
-
7
1
  // Headers
8
2
  .tx-extra { padding: var(--extra); }
9
3
  .tx-big { padding: var(--big); }
@@ -14,12 +8,12 @@
14
8
  .tx-thin { padding: var(--thin); }
15
9
  .tx-zero { padding: 0; }
16
10
  // Font Styles
17
- .h0 { font-weight: 600; font-size: 8.000rem; line-height: 1.000; letter-spacing: -0.1rem; text-transform: none; }
18
- h1,.h1 { font-weight: 600; font-size: 4.000rem; line-height: 1.000; letter-spacing: -0.1rem; text-transform: none; }
19
- h2,.h2 { font-weight: 600; font-size: 3.500rem; line-height: 1.000; letter-spacing: -0.0rem; text-transform: none; }
20
- h3,.h3 { font-weight: 500; font-size: 2.000rem; line-height: 1.125; letter-spacing: -0.0rem; text-transform: none; }
21
- h4,.h4 { font-weight: 700; font-size: 1.325rem; line-height: 1.125; letter-spacing: +0.0rem; text-transform: uppercase; }
22
- h5,.h5 { font-weight: 600; font-size: 1.000rem; line-height: 1.125; letter-spacing: -0.0rem; text-transform: none; }
11
+ .h0 { font-weight: 500; font-size: 8.000rem; line-height: 1.000; letter-spacing: -0.1rem; text-transform: none; }
12
+ h1,.h1 { font-weight: 500; font-size: 3.000rem; line-height: 1.000; letter-spacing: -0.1rem; text-transform: none; }
13
+ h2,.h2 { font-weight: 500; font-size: 2.500rem; line-height: 1.000; letter-spacing: -0.0rem; text-transform: none; }
14
+ h3,.h3 { font-weight: 500; font-size: 1.500rem; line-height: 1.125; letter-spacing: -0.0rem; text-transform: none; }
15
+ h4,.h4 { font-weight: 500; font-size: 1.250rem; line-height: 1.125; letter-spacing: +0.0rem; text-transform: none; }
16
+ h5,.h5 { font-weight: 500; font-size: 1.000rem; line-height: 1.125; letter-spacing: -0.0rem; text-transform: none; }
23
17
  // Typogragy Styles
24
18
  .p-small { font-weight: 400; font-size: 0.75rem; line-height: 1.500; }
25
19
  p, .p-medium { font-weight: 400; font-size: 1.00rem; line-height: 1.500 }
@@ -34,10 +28,6 @@ a:active { opacity: 0.75 }
34
28
  .t-left { text-align: left; }
35
29
  .t-center { text-align: center; }
36
30
  .t-right { text-align: right; }
37
- // Linehegiht
38
- .t-lh-1 { line-height: 1}
39
- .t-lh-15 { line-height: 1.5}
40
- .t-lh-2 { line-height: 2}
41
31
  // Font weights
42
32
  .t-bold { font-weight: 900;}
43
33
  .t-demi { font-weight: 700;}
@@ -45,13 +35,21 @@ a:active { opacity: 0.75 }
45
35
  .t-medium { font-weight: 500;}
46
36
  .t-regular { font-weight: 300;}
47
37
  .t-light { font-weight: 200;}
48
- // Line height
38
+ // Linehegiht
39
+ .t-lh-05 { line-height: 0.5 }
40
+ .t-lh-075 { line-height: 0.75 }
41
+ .t-lh-1 { line-height: 1}
42
+ .t-lh-15 { line-height: 1.5}
43
+ .t-lh-2 { line-height: 2}
44
+
49
45
  .lh-bold { line-height: 3.000; }
50
46
  .lh-demi { line-height: 2.000; }
51
47
  .lh-semi { line-height: 1.500; }
52
48
  .lh-medium { line-height: 1.250; }
53
49
  .lh-regular { line-height: 1.125; }
54
50
  .lh-light { line-height: 1.000; }
51
+
52
+
55
53
  // Text decoration
56
54
  .uppercase { text-transform: uppercase; }
57
55
  .capitalize { text-transform: capitalize; }
@@ -1,152 +0,0 @@
1
- const multer = require('multer');
2
- const path = require('path');
3
- const fs = require('fs');
4
-
5
- const createMulterStorage = (folderName, publicPath) => {
6
-
7
- return multer.diskStorage({
8
- destination: function (req, file, cb) {
9
- let user = {};
10
- try {
11
- user = JSON.parse(req.cookies.user);
12
- } catch (err) {
13
- return cb(new Error('Unable to parse user from cookies'));
14
- }
15
-
16
- if (!user._id) {
17
- return cb(new Error('No user _id found in cookies'));
18
- }
19
-
20
- const userUploadPath = path.join(publicPath, 'users', String(user._id), folderName);
21
-
22
- fs.mkdirSync(userUploadPath, { recursive: true });
23
-
24
- cb(null, userUploadPath);
25
- },
26
-
27
- filename: function (req, file, cb) {
28
- cb(null, Date.now() + path.extname(file.originalname));
29
- }
30
- });
31
- }
32
-
33
- const createStorage = (folderName, publicPath) => {
34
-
35
- return multer.diskStorage({
36
- destination: function (req, file, cb) {
37
- let user = {};
38
- try {
39
- user = JSON.parse(req.cookies.user);
40
- } catch (err) {
41
- return cb(new Error('Unable to parse user from cookies'));
42
- }
43
-
44
- if (!user._id) {
45
- return cb(new Error('No user _id found in cookies'));
46
- }
47
-
48
- const userUploadPath = path.join(publicPath, folderName);
49
-
50
- fs.mkdirSync(userUploadPath, { recursive: true });
51
-
52
- cb(null, userUploadPath);
53
- },
54
- filename: function (req, file, cb) {
55
- cb(null, Date.now() + path.extname(file.originalname));
56
- }
57
- });
58
- }
59
-
60
- const controllerFactory = (db, publicPath) => {
61
- const uploadImageController = async (req, res, next) => {
62
- const upload = multer({ storage: createMulterStorage('blog', publicPath) }).single('file');
63
-
64
- console.log(req.file)
65
-
66
- upload(req, res, function(err) {
67
- if (err instanceof multer.MulterError) {
68
- console.log(err)
69
- return res.status(500).json(err);
70
- } else if (err) {
71
- console.log(err)
72
- return res.status(500).json(err);
73
- }
74
- if (!req.file) {
75
- return res.status(400).send({ message: 'No file uploaded.' });
76
- }
77
-
78
- const user = JSON.parse(req.cookies.user);
79
-
80
- res.status(200).send({
81
- message: 'File uploaded successfully.',
82
- filename: req.file.filename,
83
- filepath: `/users/${user._id}/blog/${req.file.filename}`
84
- });
85
- });
86
- };
87
-
88
- const uploadFileController = async (req, res, next) => {
89
-
90
- const folderName = req.query.folderName ? req.query.folderName : 'unsorted'; // получаем folderName из параметров запроса
91
- const upload = multer({ storage: createStorage(folderName, publicPath) }).single('file');
92
-
93
- console.log(folderName)
94
- console.log(req.files)
95
-
96
- upload(req, res, function(err) {
97
- if (err instanceof multer.MulterError) {
98
- console.log(err)
99
- return res.status(500).json(err);
100
- } else if (err) {
101
- console.log(err)
102
- return res.status(500).json(err);
103
- }
104
- if (!req.file) {
105
- return res.status(400).send({ message: 'No file uploaded.' });
106
- }
107
-
108
- const user = JSON.parse(req.cookies.user);
109
-
110
- res.status(200).send({
111
- message: 'File uploaded successfully.',
112
- filename: req.file.filename,
113
- filepath: `/${folderName}/${req.file.filename}`
114
- });
115
- });
116
- };
117
-
118
- const uploadMultipleFile = async (req, res, next) => {
119
- const folderName = req.query.folderName; // получаем folderName из параметров запроса
120
- const upload = multer({ storage: createStorage(folderName) }).array('file');
121
-
122
- upload(req, res, function(err) {
123
- if (err instanceof multer.MulterError) {
124
- console.log(err)
125
- return res.status(500).json(err);
126
- } else if (err) {
127
- console.log(err)
128
- return res.status(500).json(err);
129
- }
130
- if (!req.files || req.files.length === 0) {
131
- return res.status(400).send({ message: 'No file uploaded.' });
132
- }
133
-
134
- const user = JSON.parse(req.cookies.user);
135
-
136
- // send back all filenames and paths
137
- res.status(200).send(req.files.map(file => ({
138
- message: 'File uploaded successfully.',
139
- filename: file.filename,
140
- filepath: `/${folderName}/${file.filename}`,
141
- })));
142
- });
143
- };
144
-
145
- return {
146
- uploadImageController,
147
- uploadFileController,
148
- uploadMultipleFile
149
- };
150
- };
151
-
152
- module.exports = controllerFactory;