Merge branch 'beta' into feature/address-list-query
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
Javier Segarra 2025-03-21 14:05:22 +00:00
commit dbd46d602d
2 changed files with 19 additions and 9 deletions

View File

@ -1,5 +1,5 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { jApi } from '@/boot/axios'; import { jApi, api } from '@/boot/axios';
import useNotify from '@/composables/useNotify.js'; import useNotify from '@/composables/useNotify.js';
import { i18n } from '@/boot/i18n'; import { i18n } from '@/boot/i18n';
import { useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
@ -32,7 +32,10 @@ export const useAppStore = defineStore('hedera', {
}), }),
actions: { actions: {
async getMenuLinks() { async getMenuLinks() {
const sections = await jApi.query('SELECT * FROM myMenu'); const { data: sections } = await api.get('MyMenus');
if (!sections) return;
const sectionMap = new Map(); const sectionMap = new Map();
for (const section of sections) { for (const section of sections) {
sectionMap.set(section.id, section); sectionMap.set(section.id, section);
@ -56,9 +59,17 @@ export const useAppStore = defineStore('hedera', {
this.menuEssentialLinks = sectionTree; this.menuEssentialLinks = sectionTree;
}, },
async loadConfig() { async loadConfig() {
const imageUrl = await jApi.getValue('SELECT url FROM imageConfig'); try {
this.$patch({ imageUrl }); const { data } = await api.get('ImageConfigs');
if (!data) return;
this.imageUrl = data[0]?.url;
} catch (err) {
console.error(err);
}
}, },
async init() { async init() {

View File

@ -248,11 +248,10 @@ export const useUserStore = defineStore('user', () => {
const fetchUser = async (userType = 'user') => { const fetchUser = async (userType = 'user') => {
try { try {
const userData = await jApi.getObject( const userData = await api.get('VnUsers/getCurrentUserData');
'SELECT id, nickname, name, lang FROM account.myUser'
); if (userType === 'user') mainUser.value = userData.data;
if (userType === 'user') mainUser.value = userData; else supplantedUser.value = userData.data;
else supplantedUser.value = userData;
} catch (error) { } catch (error) {
console.error('Error fetching user: ', error); console.error('Error fetching user: ', error);
} }