Merge pull request 'imageConfig query refactor front' (!117) from wbuezas/hedera-web-mindshore:feature/imageConfig-query into beta
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
Reviewed-on: #117 Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
commit
47c61a7b35
|
@ -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';
|
||||||
|
@ -56,9 +56,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() {
|
||||||
|
|
Loading…
Reference in New Issue