@lancom/shared 0.0.398 → 0.0.399

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -395,6 +395,9 @@ export default {
395
395
  removeCoupon(id) {
396
396
  return _delete(`admin/coupons/${id}`);
397
397
  },
398
+ removeCoupons(ids) {
399
+ return _post('admin/coupons/delete', { ids });
400
+ },
398
401
  fetchReviews() {
399
402
  return _get('admin/reviews');
400
403
  },
@@ -1,13 +1,12 @@
1
1
  import axios from 'axios';
2
- const Cookie = process.client ? require('js-cookie') : undefined;
2
+ import { getAuthToken, removeAuthToken } from '@lancom/shared/assets/js/utils/auth';
3
3
 
4
4
  const axiosApiInstance = axios.create();
5
5
 
6
6
  if (process.client) {
7
- console.log('error: ');
8
7
  axiosApiInstance.interceptors.request.use(
9
8
  config => {
10
- const auth = Cookie.get('auth');
9
+ const auth = getAuthToken();
11
10
  config.headers = {
12
11
  Authorization: `Bearer ${auth}`
13
12
  };
@@ -16,16 +15,19 @@ if (process.client) {
16
15
  error => {
17
16
  return Promise.reject(error);
18
17
  });
19
- axiosApiInstance.interceptors.response.use(
20
- response => response,
21
- error => {
22
- if (error.response.status === 401) {
23
- Cookie.remove('auth');
24
- window.location ='/';
25
- return;
18
+ axiosApiInstance.interceptors.response.use(
19
+ response => response,
20
+ error => {
21
+ if (error.response.status === 401) {
22
+ removeAuthToken();
23
+ const currentPath = window.location.pathname;
24
+ if (currentPath && currentPath !== '/') {
25
+ window.location = '/';
26
26
  }
27
- return Promise.reject(error);
28
- });
27
+ return;
28
+ }
29
+ return Promise.reject(error);
30
+ });
29
31
  }
30
32
 
31
33
  const API_URL = process.client ? process.env.API_URL : process.env.LOCAL_API_URL;
@@ -0,0 +1,13 @@
1
+ const AUTH_KEY = 'LANCOM_AUTH';
2
+
3
+ export function getAuthToken() {
4
+ return localStorage?.getItem(AUTH_KEY);
5
+ }
6
+
7
+ export function setAuthToken(token) {
8
+ return localStorage?.setItem(AUTH_KEY, token);
9
+ }
10
+
11
+ export function removeAuthToken() {
12
+ return localStorage?.removeItem(AUTH_KEY);
13
+ }
@@ -1,33 +1,40 @@
1
1
  @import "@/assets/scss/variables";
2
2
 
3
- .CustomerCoupons__wrapper {
4
- .VueTables {
5
- &__table {
6
- width: 100%;
7
- border-collapse: collapse;
8
- th, td {
9
- padding: 10px;
10
- text-align: left;
11
- border-bottom: 1px solid $grey_2;
12
- font-size: 14px;
13
- &:nth-child(-n+3) {
14
- width: 220px;
3
+ .CustomerCoupons {
4
+ &__wrapper {
5
+ .VueTables {
6
+ &__table {
7
+ width: 100%;
8
+ border-collapse: collapse;
9
+ th, td {
10
+ padding: 10px;
11
+ text-align: left;
12
+ border-bottom: 1px solid $grey_2;
13
+ font-size: 14px;
14
+ &:nth-child(-n+3) {
15
+ width: 220px;
16
+ }
15
17
  }
16
- }
17
- th {
18
- background-color: $grey_3;
19
- font-weight: bold;
20
- }
21
- a {
22
- color: $black;
23
- text-decoration: none;
24
- transition: color 0.2s ease;
25
-
26
- &:hover {
27
- color: darken($black, 10%);
28
- text-decoration: underline;
18
+ th {
19
+ background-color: $grey_3;
20
+ font-weight: bold;
21
+ }
22
+ a {
23
+ color: $black;
24
+ text-decoration: none;
25
+ transition: color 0.2s ease;
26
+
27
+ &:hover {
28
+ color: darken($black, 10%);
29
+ text-decoration: underline;
30
+ }
29
31
  }
30
32
  }
31
33
  }
32
34
  }
33
- }
35
+ &__expired {
36
+ font-size: 11px;
37
+ color: grey;
38
+ margin-top: 5px;
39
+ }
40
+ }
@@ -6,6 +6,16 @@
6
6
  ref="table"
7
7
  :columns="columns"
8
8
  :options="options">
9
+ <template #name="{ row }">
10
+ <div>
11
+ <div>{{ row.name }}</div>
12
+ <div
13
+ v-if="row.expiredAt"
14
+ class="CustomerCoupons__expired">
15
+ <span>Expired:</span> {{ row.expiredAt | shortDate }}
16
+ </div>
17
+ </div>
18
+ </template>
9
19
  <template #value="{ row }">
10
20
  <div v-if="row.percentValue || row.value">
11
21
  {{ row.percentValue ? `${row.percentValue}%` : price(row.value) }}
@@ -33,21 +43,24 @@
33
43
  </client-only>
34
44
  </div>
35
45
  </template>
36
-
46
+
37
47
  <script>
38
48
  import { mapGetters } from 'vuex';
39
49
  import Vue from 'vue';
40
50
  import { ServerTable } from 'vue-tables-2';
51
+ import { _get } from '@lancom/shared/assets/js/api/helpers';
52
+ import { price, shortDate } from '@lancom/shared/assets/js/utils/filters';
41
53
  import CustomerCouponApply from './customer_coupon_apply/customer-coupon-apply';
42
54
  import CustomerCouponPrints from './customer_coupon_prints/customer-coupon-prints';
43
55
  import CustomerCouponProducts from './customer_coupon_products/customer-coupon-products';
44
- import { _get } from '@lancom/shared/assets/js/api/helpers';
45
- import { price } from '@lancom/shared/assets/js/utils/filters';
46
56
 
47
57
  Vue.use(ServerTable);
48
58
 
49
59
  export default {
50
60
  name: 'CustomerCoupons',
61
+ filters: {
62
+ shortDate
63
+ },
51
64
  components: {
52
65
  CustomerCouponApply,
53
66
  CustomerCouponPrints,
@@ -96,8 +109,7 @@ export default {
96
109
  }
97
110
  };
98
111
  </script>
99
-
112
+
100
113
  <style lang="scss">
101
114
  @import 'customer-coupons';
102
115
  </style>
103
-
@@ -0,0 +1,7 @@
1
+ export default {
2
+ mounted() {
3
+ if (process.client && !this.$store.state.auth.token) {
4
+ this.$router.push('/customer/signin');
5
+ }
6
+ }
7
+ };
@@ -64,6 +64,12 @@ const metaInfo = {
64
64
  href: `https://${process.env.HOST_NAME}${canonical}`
65
65
  }];
66
66
 
67
+ metaTags.push({
68
+ hid: 'og:url',
69
+ property: 'og:url',
70
+ content: `https://${process.env.HOST_NAME}${canonical}`
71
+ });
72
+
67
73
  if (hasQueryParams) {
68
74
  metaTags.push({
69
75
  hid: 'robots',
@@ -105,7 +111,7 @@ const metaInfo = {
105
111
  property: 'og:image',
106
112
  content: pageImageUrl
107
113
  });
108
-
114
+
109
115
  link.push({
110
116
  hid: 'preloadImage',
111
117
  rel: 'preload',
@@ -0,0 +1,7 @@
1
+ export default {
2
+ mounted() {
3
+ if (process.client && this.$store.state.auth.token) {
4
+ this.$router.push('/');
5
+ }
6
+ }
7
+ };
package/nuxt.config.js CHANGED
@@ -78,7 +78,8 @@ module.exports = (config, axios, { raygunClient, publicPath, productUrlToEditor
78
78
  '@nuxtjs/axios',
79
79
  '@nuxtjs/dotenv',
80
80
  '@nuxtjs/sitemap',
81
- '@/node_modules/@lancom/feed/lib/module'
81
+ '@/node_modules/@lancom/feed/lib/module',
82
+ 'nuxt-client-init-module'
82
83
  ],
83
84
  axios: {
84
85
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.398",
3
+ "version": "0.0.399",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {
@@ -12,6 +12,7 @@
12
12
  "dependencies": {
13
13
  "basic-auth": "^2.0.1",
14
14
  "lodash.get": "^4.4.2",
15
+ "nuxt-client-init-module": "^0.3.0",
15
16
  "vue2-hammer": "^2.1.2"
16
17
  },
17
18
  "devDependencies": {
package/pages/contact.vue CHANGED
@@ -17,18 +17,30 @@
17
17
  </iframe>
18
18
  </div>
19
19
  </div>
20
+ <div
21
+ v-if="routeInfo && routeInfo.text"
22
+ class="Products__text">
23
+ <LazyHydrate never>
24
+ <static-page
25
+ :visible-title="false"
26
+ :item="routeInfo" />
27
+ </LazyHydrate>
28
+ </div>
20
29
  </div>
21
30
  </div>
22
31
  </template>
23
32
 
24
33
  <script>
25
34
  import { mapGetters } from 'vuex';
35
+ import LazyHydrate from 'vue-lazy-hydration';
26
36
  import metaInfo from '@lancom/shared/mixins/meta-info';
27
37
 
28
38
  export default {
29
39
  name: 'ContactPage',
30
40
  components: {
41
+ LazyHydrate,
31
42
  Breadcrumbs: () => import('@lancom/shared/components/common/breadcrumbs/breadcrumbs'),
43
+ StaticPage: () => import( '@lancom/shared/components/static_page/static-page'),
32
44
  ContactUs: () => import('@lancom/shared/components/asides/contact_us/contact-us')
33
45
  },
34
46
  mixins: [metaInfo],
@@ -2,23 +2,25 @@
2
2
  <div
3
3
  :data-aos="aosFadeRight"
4
4
  class="CustomerCouponsPage__wrapper">
5
- <customer-menu active-menu-item="coupons" />
6
- <customer-coupons :customer="user" />
5
+ <client-only>
6
+ <customer-menu active-menu-item="coupons" />
7
+ <customer-coupons :customer="user" />
8
+ </client-only>
7
9
  </div>
8
10
  </template>
9
11
 
10
12
  <script>
11
13
  import { mapGetters } from 'vuex';
12
14
  import metaInfo from '@lancom/shared/mixins/meta-info';
15
+ import authenticated from '@lancom/shared/mixins/authenticated';
13
16
 
14
17
  export default {
15
18
  name: 'CustomerCouponsPage',
16
- middleware: 'authenticated',
17
19
  components: {
18
20
  CustomerCoupons: () => import('@lancom/shared/components/customer/customer_coupons/customer-coupons'),
19
21
  CustomerMenu: () => import('@lancom/shared/components/customer/customer_navigation_menu/customer-navigation-menu')
20
22
  },
21
- mixins: [metaInfo],
23
+ mixins: [metaInfo, authenticated],
22
24
  computed: {
23
25
  ...mapGetters('auth', ['user'])
24
26
  }
@@ -2,23 +2,25 @@
2
2
  <div
3
3
  :data-aos="aosFadeRight"
4
4
  class="CustomerOrdersPage__wrapper">
5
- <customer-navigation-menu active-menu-item="orders" />
6
- <customer-orders :customer="user" />
5
+ <client-only>
6
+ <customer-navigation-menu active-menu-item="orders" />
7
+ <customer-orders :customer="user" />
8
+ </client-only>
7
9
  </div>
8
10
  </template>
9
11
 
10
12
  <script>
11
13
  import { mapGetters } from 'vuex';
12
14
  import metaInfo from '@lancom/shared/mixins/meta-info';
15
+ import authenticated from '@lancom/shared/mixins/authenticated';
13
16
 
14
17
  export default {
15
18
  name: 'CustomerOrdersPage',
16
- middleware: 'authenticated',
17
19
  components: {
18
20
  CustomerOrders: () => import('@lancom/shared/components/customer/customer_orders/customer-orders'),
19
21
  CustomerNavigationMenu: () => import('@lancom/shared/components/customer/customer_navigation_menu/customer-navigation-menu')
20
22
  },
21
- mixins: [metaInfo],
23
+ mixins: [metaInfo, authenticated],
22
24
  computed: {
23
25
  ...mapGetters('auth', ['user'])
24
26
  }
@@ -2,22 +2,24 @@
2
2
  <div
3
3
  :data-aos="aosFadeRight"
4
4
  class="CustomerSettingsPage__wrapper">
5
- <customer-navigation-menu active-menu-item="settings" />
6
- <customer-settings />
5
+ <client-only>
6
+ <customer-navigation-menu active-menu-item="settings" />
7
+ <customer-settings />
8
+ </client-only>
7
9
  </div>
8
10
  </template>
9
11
 
10
12
  <script>
11
13
  import metaInfo from '@lancom/shared/mixins/meta-info';
14
+ import authenticated from '@lancom/shared/mixins/authenticated';
12
15
 
13
16
  export default {
14
17
  name: 'CustomerCreatePage',
15
- middleware: 'authenticated',
16
18
  components: {
17
19
  CustomerNavigationMenu: () => import('@lancom/shared/components/customer/customer_navigation_menu/customer-navigation-menu'),
18
20
  CustomerSettings: () => import('@lancom/shared/components/pages/customer/settings/settings')
19
21
  },
20
- mixins: [metaInfo]
22
+ mixins: [metaInfo, authenticated]
21
23
  };
22
24
  </script>
23
25
 
@@ -3,15 +3,13 @@ module.exports = function (req, res, next) {
3
3
  return next();
4
4
  }
5
5
 
6
- if (!/auth\=/.test(req.headers?.cookie || '')) {
7
- const routes = [
8
- /^\/quotes\//,
9
- /\.xml$/
10
- ];
11
- const value = routes.some(route => route.test(`${req.url}`)) ? 'no-cache' : `max-age=${31536000}`;
12
- res?.setHeader('Cache-Control', value);
13
- } else {
14
- res?.setHeader('Cache-Control', 'no-cache');
15
- }
6
+ const routes = [
7
+ /^\/quotes\//,
8
+ /\.xml$/,
9
+ /\.csv$/
10
+ ];
11
+ const value = routes.some(route => route.test(`${req.url}`)) ? 'no-cache' : `max-age=${31536000}`;
12
+ res?.setHeader('Cache-Control', value);
13
+
16
14
  next();
17
15
  };
@@ -10,7 +10,7 @@ const LEAD_ADMIN_PASS = 'ladmin2sad$S';
10
10
  module.exports = async function (req, res, next) {
11
11
  if (req.url === '/lead/leads.csv') {
12
12
  const credentials = basicAuth(req);
13
-
13
+
14
14
  if (!credentials || credentials.name !== LEAD_ADMIN || credentials.pass !== LEAD_ADMIN_PASS) {
15
15
  res.setHeader('WWW-Authenticate', 'Basic realm="Access restricted"');
16
16
  res.statusCode = 401;
@@ -46,7 +46,7 @@ module.exports = async function (req, res, next) {
46
46
  // }, [])
47
47
  .map(lead => [
48
48
  lead.action,
49
- (new Date(lead.createdAt)).toISOString().replace(/\.[0-9]*Z/, '+00:00').replace('Z', '+00:00'),
49
+ lead.createdAt,
50
50
  lead.googleClickId,
51
51
  lead.hashedEmail,
52
52
  lead.hashedPhoneNumber,
package/store/auth.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import decode from 'jwt-decode';
2
2
  import api from '@lancom/shared/assets/js/api';
3
- const Cookie = process.client ? require('js-cookie') : undefined;
3
+ import { setAuthToken, removeAuthToken } from '@lancom/shared/assets/js/utils/auth';
4
4
 
5
5
  export const state = () => ({
6
6
  token: null,
@@ -30,22 +30,22 @@ export const actions = {
30
30
  const request = customer ? api.authCustomer(customer, shop._id) : api.admin.authUser(user);
31
31
  try {
32
32
  const { token, user, customer } = await request;
33
- Cookie.set('auth', token, { expires: 365 });
33
+ setAuthToken(token);
34
34
  this.$axios.defaults.headers.authorization = token;
35
35
  commit('AUTH_SUCCESS', token, customer || user);
36
36
  return customer || user;
37
37
  } catch (err) {
38
38
  commit('AUTH_ERROR', err);
39
- Cookie.remove('auth');
39
+ removeAuthToken();
40
40
  }
41
41
  },
42
42
  auth_logout({ commit }) {
43
43
  commit('AUTH_LOGOUT');
44
- Cookie.remove('auth');
44
+ removeAuthToken();
45
45
  window.location.href = '/';
46
46
  },
47
47
  update_user({ commit }, { token, user }) {
48
- Cookie.set('auth', token, { expires: 365 });
48
+ setAuthToken(token);
49
49
  this.$axios.defaults.headers.authorization = token;
50
50
  commit('AUTH_SUCCESS', token, user);
51
51
  }
package/store/index.js CHANGED
@@ -1,10 +1,11 @@
1
1
  import api from '@lancom/shared/assets/js/api';
2
2
  import { saveStatePlugin, loadState } from '@lancom/shared/plugins/save-state';
3
+ import { getAuthToken } from '@lancom/shared/assets/js/utils/auth';
4
+ import { getShopCountrySettings } from '@lancom/shared/assets/js/utils/shop';
3
5
  import { MESSAGES, COUNTRIES_MESSAGES } from '@/messages';
4
6
  import { SETTINGS, COUNTRIES_SETTINGS } from '@/settings';
5
7
  const cookieparser = process.server ? require('cookieparser') : undefined;
6
8
  const CLOSED_NOTIFICATION = 'lancom-closed-notification-1.0';
7
- import { getShopCountrySettings } from '@lancom/shared/assets/js/utils/shop';
8
9
 
9
10
  export const state = () => ({
10
11
  googleClickId: null,
@@ -53,6 +54,16 @@ export const getters = {
53
54
  };
54
55
 
55
56
  export const actions = {
57
+ async nuxtClientInit({ commit }, context) {
58
+ try {
59
+ const auth = getAuthToken();
60
+ if (auth) {
61
+ await commit('auth/AUTH_SUCCESS', auth);
62
+ }
63
+ } catch (e) {
64
+ console.log('nuxtClientInit: ', e);
65
+ }
66
+ },
56
67
  async nuxtServerInit({ commit }, { req }) {
57
68
  const shop = await api.fetchShopByUrl(process.env.HOST_NAME);
58
69
  const menus = await api.fetchMenus(shop._id);
@@ -88,16 +99,6 @@ export const actions = {
88
99
  });
89
100
  }
90
101
  }
91
-
92
- // }
93
- try {
94
- if (req.headers.cookie) {
95
- const { auth } = cookieparser.parse(req.headers.cookie);
96
- if (auth) {
97
- commit('auth/AUTH_SUCCESS', auth);
98
- }
99
- }
100
- } catch (e) {}
101
102
  },
102
103
  async loadState({ dispatch, commit, state: { shop, currency, country, notificationBar } }, query) {
103
104
  const state = await loadState();
@@ -1,5 +0,0 @@
1
- export default function ({ store, redirect }) {
2
- if (!store.state.auth.token) {
3
- return redirect('/customer/signin');
4
- }
5
- }
@@ -1,5 +0,0 @@
1
- export default function ({ store, redirect }) {
2
- if (store.state.auth.token) {
3
- return redirect('/');
4
- }
5
- }