side_menu/src/store/config.js

34 lines
811 B
JavaScript

import { defineStore } from 'pinia'
import { ref } from 'vue'
import axios from '@nextcloud/axios'
import { generateUrl } from '@nextcloud/router'
export const useConfigStore = defineStore('config', () => {
const config = ref(null)
const appConfig = ref(null)
async function getConfig() {
if (config.value !== null) {
return config.value
}
config.value = await axios.get(generateUrl('/apps/side_menu/js/config')).then((response) => response.data)
return config.value
}
async function getAppConfig() {
if (appConfig.value !== null) {
return appConfig.value
}
appConfig.value = await axios.get(generateUrl('/apps/side_menu/admin/config')).then((response) => response.data)
return appConfig.value
}
return {
getConfig,
getAppConfig,
}
})