#7750 - first-beta-review #95
|
@ -20,12 +20,7 @@ export const useAppStore = defineStore('hedera', {
|
||||||
menuEssentialLinks: [],
|
menuEssentialLinks: [],
|
||||||
hiddenMenuLinks: new Set(['Reports']),
|
hiddenMenuLinks: new Set(['Reports']),
|
||||||
basketOrderId: null,
|
basketOrderId: null,
|
||||||
localeDates: {
|
|
||||||
days: [],
|
|
||||||
months: [],
|
|
||||||
daysShort: [],
|
|
||||||
monthsShort: []
|
|
||||||
},
|
|
||||||
siteLang: null,
|
siteLang: null,
|
||||||
localeOptions: [
|
localeOptions: [
|
||||||
{ label: t('langs.en'), lang: 'en-US', value: 'en' },
|
{ label: t('langs.en'), lang: 'en-US', value: 'en' },
|
||||||
|
@ -66,20 +61,9 @@ export const useAppStore = defineStore('hedera', {
|
||||||
this.$patch({ imageUrl });
|
this.$patch({ imageUrl });
|
||||||
},
|
},
|
||||||
|
|
||||||
getLocaleDates() {
|
|
||||||
const { messages, locale } = i18n.global;
|
|
||||||
this.localeDates = {
|
|
||||||
days: messages.value[locale.value].date.days,
|
|
||||||
months: messages.value[locale.value].date.months,
|
|
||||||
daysShort: messages.value[locale.value].date.daysShort,
|
|
||||||
monthsShort: messages.value[locale.value].date.monthsShort
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
this.updateSiteLocale(localStorage.getItem('siteLang') || 'es-ES');
|
this.updateSiteLocale(localStorage.getItem('siteLang') || 'es-ES');
|
||||||
this.getBasketOrderId();
|
this.getBasketOrderId();
|
||||||
this.getLocaleDates();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getBasketOrderId() {
|
getBasketOrderId() {
|
||||||
|
@ -187,6 +171,15 @@ export const useAppStore = defineStore('hedera', {
|
||||||
isDesktop() {
|
isDesktop() {
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
return $q?.screen?.width > 1024;
|
return $q?.screen?.width > 1024;
|
||||||
|
},
|
||||||
|
localeDates() {
|
||||||
|
const { messages, locale } = i18n.global;
|
||||||
|
return {
|
||||||
jsegarra marked this conversation as resolved
Outdated
|
|||||||
|
days: messages.value[locale.value].date.days,
|
||||||
|
months: messages.value[locale.value].date.months,
|
||||||
|
daysShort: messages.value[locale.value].date.daysShort,
|
||||||
|
monthsShort: messages.value[locale.value].date.monthsShort
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
dale una vuelta porque esto se puede simplificar mucho
Simplificado