forked from verdnatura/hedera-web
More fixes and adjustments
This commit is contained in:
parent
a97219ad59
commit
ef3b41e4e2
|
@ -73,7 +73,7 @@ export default {
|
|||
Reports: 'Informes',
|
||||
Configuration: 'Configuració',
|
||||
Shelves: 'Prestatgeries',
|
||||
Account: 'Compte',
|
||||
Account: 'Configuració',
|
||||
Addresses: 'Adreces',
|
||||
OrderSummary: 'Resum de la comanda',
|
||||
Checkout: `Configurar l'encarrec`,
|
||||
|
|
|
@ -85,7 +85,7 @@ export default {
|
|||
Reports: 'Reports',
|
||||
Configuration: 'Configuration',
|
||||
Shelves: 'Shelves',
|
||||
Account: 'Account',
|
||||
Account: 'Configuration',
|
||||
Addresses: 'Addresses',
|
||||
OrderSummary: 'Order summary',
|
||||
Checkout: 'Configure order',
|
||||
|
|
|
@ -67,11 +67,11 @@ export default {
|
|||
'Pending orders': 'Pedidos pendientes',
|
||||
'Last orders': 'Pedidos confirmados',
|
||||
Invoices: 'Facturas',
|
||||
Basket: 'Cesta',
|
||||
Basket: 'Cesta de la compra',
|
||||
Catalog: 'Catálogo',
|
||||
Administration: 'Administración',
|
||||
'Control panel': 'Panel de control',
|
||||
Users: 'Usuarios',
|
||||
Users: 'Gestión de usuarios',
|
||||
Connections: 'Conexiones',
|
||||
Visits: 'Visitas',
|
||||
News: 'Gestión de noticias',
|
||||
|
@ -82,7 +82,7 @@ export default {
|
|||
Reports: 'Informes',
|
||||
Configuration: 'Configuración',
|
||||
Shelves: 'Estanterías',
|
||||
Account: 'Cuenta',
|
||||
Account: 'Configuración',
|
||||
Addresses: 'Direcciones',
|
||||
OrderSummary: 'Resumen del pedido',
|
||||
Checkout: 'Configurar pedido',
|
||||
|
|
|
@ -73,7 +73,7 @@ export default {
|
|||
Reports: 'Rapports',
|
||||
Configuration: 'Configuration',
|
||||
Shelves: 'Étagères',
|
||||
Account: 'Compte',
|
||||
Account: 'Configuration',
|
||||
Addresses: 'Adresses',
|
||||
OrderSummary: 'Résumé de la commande',
|
||||
Checkout: 'Configurer la commande',
|
||||
|
|
|
@ -72,7 +72,7 @@ export default {
|
|||
Reports: 'Informes',
|
||||
Configuration: 'Configuração',
|
||||
Shelves: 'Estantes',
|
||||
Account: 'Conta',
|
||||
Account: 'Configuração',
|
||||
Addresses: 'Moradas',
|
||||
OrderSummary: 'Resumo da encomenda',
|
||||
Checkout: 'Configurar encomenda',
|
||||
|
|
|
@ -104,21 +104,27 @@ const fetchData = async () => {
|
|||
:to="{ name: 'checkout', params: { id: orderId } }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
>
|
||||
<QTooltip>{{ t('configureOrder') }}</QTooltip>
|
||||
</QBtn>
|
||||
<QBtn
|
||||
icon="shopping_bag"
|
||||
:label="t('catalog')"
|
||||
:to="{ name: 'catalog' }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
>
|
||||
<QTooltip>{{ t('catalog') }}</QTooltip>
|
||||
</QBtn>
|
||||
<QBtn
|
||||
icon="shopping_cart_checkout"
|
||||
:label="t('checkout')"
|
||||
:to="{ name: 'confirm', params: { id: orderId } }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
>
|
||||
<QTooltip>{{ t('checkout') }}</QTooltip>
|
||||
</QBtn>
|
||||
</Teleport>
|
||||
<QPage>
|
||||
<TicketDetails
|
||||
|
|
|
@ -38,7 +38,6 @@ export const useUserStore = defineStore('user', () => {
|
|||
const init = async _router => {
|
||||
router = _router;
|
||||
isGuest.value = localStorage.getItem('hederaGuest') || false;
|
||||
console.log('isGuest.value', isGuest.value);
|
||||
await getToken();
|
||||
if (!loggedIn.value) {
|
||||
const autoLoginStatus = await tryAutoLogin();
|
||||
|
@ -179,9 +178,6 @@ export const useUserStore = defineStore('user', () => {
|
|||
Math.min(ttl, tokenConfig.value?.renewPeriod) * 1000;
|
||||
const maxDate = created + renewPeriodInSeconds;
|
||||
const now = new Date().getTime();
|
||||
console.log('renewPeriodInSeconds', renewPeriodInSeconds);
|
||||
console.log('maxDate', maxDate);
|
||||
console.log('now', now);
|
||||
|
||||
if (isNaN(renewPeriodInSeconds) || now <= maxDate) {
|
||||
isCheckingToken.value = false;
|
||||
|
@ -198,8 +194,7 @@ export const useUserStore = defineStore('user', () => {
|
|||
|
||||
const startInterval = () => {
|
||||
stopRenewer();
|
||||
// const renewPeriod = +storage.value.getItem('renewPeriod');
|
||||
const renewPeriod = 5;
|
||||
const renewPeriod = +storage.value.getItem('renewPeriod');
|
||||
if (!renewPeriod) return;
|
||||
intervalId.value = setInterval(
|
||||
() => checkValidity(),
|
||||
|
@ -267,12 +262,8 @@ export const useUserStore = defineStore('user', () => {
|
|||
|
||||
watch(
|
||||
[mainUser, supplantedUser],
|
||||
() => {
|
||||
user.value = supplantedUser.value || mainUser.value;
|
||||
console.log('mainUser.value', mainUser.value);
|
||||
console.log('supplantedUser.value', supplantedUser.value);
|
||||
console.log('user.value', user.value);
|
||||
},
|
||||
() => (user.value = supplantedUser.value || mainUser.value),
|
||||
|
||||
{ immediate: true }
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue