\n \n\n","import { useThFetch } from '@/composables/useThFetch'\nimport { useConfigurationStore } from '@/stores/useConfigurationStore'\nimport type { Branch } from '@/types'\nimport type { UseFetchOptions } from '@vueuse/core'\nimport { toValue, type MaybeRefOrGetter } from 'vue'\n\nexport function useBranchQuery(id: MaybeRefOrGetter, options: UseFetchOptions = {}) {\n const store = useConfigurationStore()\n\n const getURL = () => `/v0/branches/public/${store.organization}/${toValue(id)}`\n\n return useThFetch(getURL, {\n afterFetch(ctx) {\n ctx.data = ctx.data.results[0]\n\n return options.afterFetch?.(ctx) ?? ctx\n },\n ...options\n }).json()\n}\n","import { useThFetch } from '@/composables/useThFetch'\nimport { useConfigurationStore } from '@/stores/useConfigurationStore'\nimport type { Staff } from '@/types'\nimport type { UseFetchOptions } from '@vueuse/core'\n\nexport function useStaffsQuery(options?: UseFetchOptions) {\n const store = useConfigurationStore()\n\n return useThFetch(`/v0/staff/public/${store.organization}?deleted=false&active=true`, {\n afterFetch(ctx) {\n return {\n ...ctx,\n data: ctx.data.results\n }\n },\n ...options\n }).json()\n}\n","import type { UseFetchReturn } from '@vueuse/core'\nimport { computed } from 'vue'\n\n/**\n * Accepts an array of queries and allows you to monitor them in bulk\n * isError - at least one of the queries has failed\n * isFetching - at least one of the queries is fetching\n */\nexport function useQueryBatch(queries: UseFetchReturn[]) {\n const isFetching = computed(() => queries.some((query) => query.isFetching.value))\n const isError = computed(() => queries.some((query) => !!query.error.value))\n\n async function execute(throwOnFailed?: boolean) {\n await Promise.all(queries.map((query) => query.execute(throwOnFailed)))\n }\n\n return { isFetching, isError, execute }\n}\n","\n\n\n