From ce792f7bf69f02d2acbcd4cfcc0419006655d1d2 Mon Sep 17 00:00:00 2001 From: wbuezas Date: Mon, 24 Feb 2025 17:52:15 -0300 Subject: [PATCH 1/3] Refactor front --- src/stores/app.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/stores/app.js b/src/stores/app.js index d950af10..d03f09eb 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -1,5 +1,5 @@ import { defineStore } from 'pinia'; -import { jApi } from '@/boot/axios'; +import { jApi, api } from '@/boot/axios'; import useNotify from '@/composables/useNotify.js'; import { i18n } from '@/boot/i18n'; import { useQuasar } from 'quasar'; @@ -56,9 +56,18 @@ export const useAppStore = defineStore('hedera', { this.menuEssentialLinks = sectionTree; }, + async loadConfig() { - const imageUrl = await jApi.getValue('SELECT url FROM imageConfig'); - this.$patch({ imageUrl }); + try { + const { data } = await api.get('/ImageConfigs/getImageConfig'); + + if (!data) return; + + const [config] = data; + this.imageUrl = config?.url; + } catch (err) { + console.error(err); + } }, async init() { -- 2.40.1 From c2745a673cb73b697c1f28d1b65a4b2760f75259 Mon Sep 17 00:00:00 2001 From: wbuezas Date: Wed, 26 Feb 2025 14:01:22 -0300 Subject: [PATCH 2/3] Change request url --- src/stores/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/app.js b/src/stores/app.js index d03f09eb..ddc787c5 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -59,7 +59,7 @@ export const useAppStore = defineStore('hedera', { async loadConfig() { try { - const { data } = await api.get('/ImageConfigs/getImageConfig'); + const { data } = await api.get('ImageConfigs'); if (!data) return; -- 2.40.1 From f4dbf9509554a8aafc7452790ef4c1fc7e77ba42 Mon Sep 17 00:00:00 2001 From: wbuezas Date: Wed, 26 Feb 2025 14:04:54 -0300 Subject: [PATCH 3/3] Change imageUrl asignment --- src/stores/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stores/app.js b/src/stores/app.js index ddc787c5..45077306 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -63,8 +63,7 @@ export const useAppStore = defineStore('hedera', { if (!data) return; - const [config] = data; - this.imageUrl = config?.url; + this.imageUrl = data[0]?.url; } catch (err) { console.error(err); } -- 2.40.1