Files
NSG_PORTAL_V2/stores/poll.ts
T
nguyen van thai 795cd47e41 thainv-dev: Fix
2024-07-17 10:35:35 +07:00

29 lines
788 B
TypeScript

import type { Poll } from "~/server/models/poll"
export const usePollStore = defineStore('usePollStore', () => {
const currentPoll = shallowReactive<Poll>({})
const url : any = useRequestURL();
const host = url.hostname.split('.')[0];
async function fetchById(id: string) {
try {
const { data } = await useFetch<any>(`/api/services/poll-by-id`, {
query: {
pollId: id,
site: host
}
})
data.value && (Object.assign(currentPoll, data.value))
return currentPoll
} catch(error) {
}
}
return { fetchById, currentPoll }
})
if(import.meta.hot) {
import.meta.hot.accept(acceptHMRUpdate(usePollStore, import.meta.hot))
}