{"version":3,"file":"z-Zy96AH.js","sources":["../../../../composables/api/areas.ts","../../../../composables/api/categories.ts","../../../../stores/appdata-public-direct.ts","../../../../stores/appdata-account-direct.ts","../../../../stores/appdata.ts"],"sourcesContent":["import convertToSlug from '~/utility/convertToSlug';\nimport type { IAreaApiResponse, IAreaApi, IAreaResponse, IAreaSingle, IArea, IAreaApiSingleResponse } from '~/types/areas';\n\n/**\n * Retrieves a paginated list of areas.\n *\n * @returns {Promise} - A promise that resolves to a paginated list of areas.\n */\nexport async function getAreas (): Promise {\n const appConfig = useAppConfig();\n let response: IAreaApiResponse;\n\n if (appConfig.useMockData) {\n response = await $fetch('/mock/area/paginate.json');\n } else {\n response = await useAPI('/v1/area', {\n method: 'GET',\n });\n }\n\n return {\n data: response.data.map((area: IAreaResponse) => formatArea(area)),\n meta: response.meta\n };\n}\n\n/**\n * Retrieves a single area by its ID.\n *\n * @param {number} areaId - The ID of the area to retrieve.\n * @returns {Promise} - A promise that resolves to the details of a single area.\n */\nexport async function getArea (areaId: number): Promise {\n const appConfig = useAppConfig();\n let response: IAreaApiSingleResponse;\n\n if (appConfig.useMockData) {\n response = await Promise.resolve({\n data: {\n id: 6,\n name: 'Santa Barbara',\n },\n meta: {},\n success: true,\n });\n } else {\n response = await useAPI(`/v1/area/${areaId}`, {\n method: 'GET',\n });\n }\n\n return formatArea(response.data);\n}\n\n/**\n * Formats a single Area response from the server into a front end object\n * @param {IAreaResponse} area A response object received from the API\n * @returns {IArea}\n */\nfunction formatArea (area: IAreaResponse): IArea {\n return {\n ...area,\n slug: convertToSlug(area),\n };\n}\n","import convertToSlug from '~/utility/convertToSlug';\nimport type { ICategoryApiResponse, ICategoryApi, ICategoryResponse, ICategorySingle, ICategory, ICategoryApiSingleResponse } from '~/types/categories';\n\n/**\n * Retrieves a paginated list of categories.\n *\n * @returns {Promise} - A promise that resolves to a paginated list of categories.\n */\nexport async function getCategories (areaId: number): Promise {\n const appConfig = useAppConfig();\n let response: ICategoryApiResponse;\n\n if (appConfig.useMockData) {\n response = await $fetch('/mock/categories.json');\n } else {\n response = await useAPI(`/v1/area/${areaId}/category`, {\n method: 'GET',\n });\n }\n return {\n data: response.data.map((category: ICategoryResponse) => formatCategory(category)),\n meta: response.meta\n };\n}\n\n/**\n * Retrieves a paginated list of categories by Account Context ID\n *\n * @returns {Promise} - A promise that resolves to a paginated list of categories.\n */\nexport async function getCategoriesByAccountContextId (accountContextId: number): Promise {\n const response = await useAPI(`/v1/account-context/${accountContextId}/category`, {\n method: 'GET',\n });\n\n return {\n data: response.data.map((category: ICategoryResponse) => formatCategory(category)),\n meta: response.meta\n };\n}\n\n/**\n * Retrieves a single category by its ID.\n *\n * @param {number} categoryId - The ID of the category to retrieve.\n * @returns {Promise} - A promise that resolves to the details of a single category.\n */\nexport async function getCategory (categoryId: number): Promise {\n const appConfig = useAppConfig();\n let response: ICategoryApiSingleResponse;\n\n if (appConfig.useMockData) {\n response = await $fetch('/mock/category/single.json');\n } else {\n response = await useAPI(`/v1/admin/category/${categoryId}`, {\n method: 'GET',\n });\n }\n\n return formatCategory(response.data);\n}\n\n/**\n * Formats a single Category response from the server into a front end object\n * @param {ICategoryResponse} category A response object received from the API\n * @returns {ICategory}\n */\nfunction formatCategory (category: ICategoryResponse): ICategory {\n return {\n ...category,\n slug: convertToSlug(category),\n };\n}\n","import { defineStore } from 'pinia';\n\nimport type { ICommonDataActions, ICommonDataState } from './appdata';\nimport type { IArea } from '~/types/areas';\nimport type { ICategory } from '~/types/categories';\n\nexport interface IPublicDirectDataState extends ICommonDataState {\n isAreasLoading: boolean;\n areaLoadError: string | null;\n hasAreasLoaded: boolean;\n\n areas: IArea[];\n areaName: string;\n areaId: number;\n\n selectedArea: IArea | undefined;\n}\n\nexport interface IPublicDirectDataActions extends ICommonDataActions {\n loadAreas: () => Promise;\n setAreaName: (name: string) => void;\n setAreaId: (id: number) => void;\n updateSelectedArea: (id: number) => void;\n}\n\nexport interface IPublicDirectStore extends IPublicDirectDataState, IPublicDirectDataActions {}\n\nexport const usePublicDirectAppDataStore = defineStore('data', {\n\n state: () => ({\n areaLoadError: '',\n categoryLoadError: '',\n serviceLoadError: '',\n\n isAreasLoading: false,\n isCategoriesLoading: false,\n isServicesLoading: false,\n\n hasAreasLoaded: false,\n hasCategoriesLoaded: false,\n hasServicesLoaded: false,\n\n areas: [],\n categories: [],\n services: [],\n areaName: '',\n areaId: 0,\n categoryName: '',\n categoryId: 0,\n\n selectedArea: undefined,\n } as IPublicDirectDataState),\n actions: {\n setAreaName (name: string) {\n this.areaName = name;\n },\n setAreaId (id: number) {\n this.areaId = id;\n\n this.updateSelectedArea(id);\n },\n setCategoryName (name: string) {\n this.categoryName = name;\n },\n setCategoryId (id: number | null) {\n this.categoryId = id;\n\n if (id) {\n this.hasServicesLoaded = false;\n this.services = [];\n this.loadServices();\n }\n },\n updateSelectedArea (id: number) {\n this.selectedArea = this.areas.find(area => area.id === id);\n },\n async loadAreas () {\n this.areaLoadError = null;\n this.isAreasLoading = true;\n\n try {\n const data = await getAreas();\n\n this.areas = data?.data || [];\n\n this.updateSelectedArea(this.areaId);\n\n this.hasAreasLoaded = true;\n } catch (error: any) {\n this.areaLoadError = 'There was an error loading the Areas. Please try again later.';\n } finally {\n this.isAreasLoading = false;\n }\n\n return this.areas;\n },\n async loadCategories () {\n if (!this.areaId) { return; }\n\n this.services = [];\n\n this.categoryLoadError = null;\n this.isCategoriesLoading = true;\n\n try {\n const data = await getCategories(this.areaId);\n\n this.categories = data?.data || [];\n\n this.hasCategoriesLoaded = true;\n } catch (error: any) {\n this.categoryLoadError = 'There was an error loading the categories for this Area. Please try again later.';\n } finally {\n this.isCategoriesLoading = false;\n }\n\n return this.categories;\n },\n async loadServices () {\n if (!this.categoryId || this.hasServicesLoaded) { return; }\n\n this.serviceLoadError = null;\n this.isServicesLoading = true;\n\n try {\n const data = await getServices(this.areaId, this.categoryId);\n\n this.services = data?.data || [];\n this.hasServicesLoaded = true;\n } catch (error: any) {\n this.serviceLoadError = 'There was an error loading the services. Please try again later.';\n } finally {\n this.isServicesLoading = false;\n }\n\n return this.services;\n },\n\n getCategoryUrl (category: ICategory) {\n return `/${this.selectedArea?.slug}/${this.areaId}/${category.slug}/${category.id}`;\n },\n } as IPublicDirectStore,\n});\n","import { acceptHMRUpdate, defineStore } from 'pinia';\n\nimport type { ICommonDataActions, ICommonDataState } from './appdata';\n\nimport useContextSlug from '~/composables/use-context-slug';\nimport type { ICategory } from '~/types/categories';\n\nexport interface IAccountDirectDataState extends ICommonDataState { }\nexport interface IAccountDirectDataActions extends ICommonDataActions {}\n\nexport interface IAccountDirectStore extends IAccountDirectDataState, IAccountDirectDataActions {}\n\nexport const useAccountDirectAppDataStore = defineStore('data', {\n\n state: () => ({\n categoryLoadError: '',\n serviceLoadError: '',\n\n isCategoriesLoading: false,\n isServicesLoading: false,\n\n hasCategoriesLoaded: false,\n hasServicesLoaded: false,\n\n categories: [],\n services: [],\n categoryName: '',\n categoryId: 0,\n } as IAccountDirectDataState),\n actions: {\n setCategoryName (name: string) {\n this.categoryName = name;\n },\n setCategoryId (id: number | null) {\n this.categoryId = id;\n\n if (id) {\n this.hasServicesLoaded = false;\n this.services = [];\n this.loadServices();\n }\n },\n\n async loadCategories () {\n const { accountContext } = useContextSlug();\n\n if (!accountContext.value) { return; }\n\n this.services = [];\n\n this.categoryLoadError = null;\n this.isCategoriesLoading = true;\n\n try {\n const data = await getCategoriesByAccountContextId(accountContext.value.id);\n\n this.categories = data?.data || [];\n\n this.hasCategoriesLoaded = true;\n } catch (error: any) {\n this.categoryLoadError = 'There was an error loading the categories for this Area. Please try again later.';\n } finally {\n this.isCategoriesLoading = false;\n }\n\n return this.categories;\n },\n async loadServices () {\n const { accountContext } = useContextSlug();\n\n if (!this.categoryId || this.hasServicesLoaded || !accountContext.value) { return; }\n\n this.serviceLoadError = null;\n this.isServicesLoading = true;\n\n try {\n const data = await getServicesByAccountContextId(accountContext.value.id, this.categoryId);\n\n this.services = data?.data || [];\n this.hasServicesLoaded = true;\n } catch (error: any) {\n this.serviceLoadError = 'There was an error loading the services. Please try again later.';\n } finally {\n this.isServicesLoading = false;\n }\n\n return this.services;\n },\n\n getCategoryUrl (category: ICategory) {\n return `/${category.slug}/${category.id}`;\n },\n } as IAccountDirectStore,\n});\n","import { usePublicDirectAppDataStore } from './appdata-public-direct';\nimport { useAccountDirectAppDataStore } from './appdata-account-direct';\nimport type { ICategory } from '~/types/categories';\nimport type { IService } from '~/types/services';\n\nexport interface ICommonDataState {\n isCategoriesLoading: boolean;\n isServicesLoading: boolean;\n\n categoryLoadError: string | null;\n serviceLoadError: string | null;\n\n hasCategoriesLoaded: boolean;\n hasServicesLoaded: boolean;\n\n categories: ICategory[];\n services: IService[];\n categoryName: string;\n categoryId: number | null;\n}\n\nexport interface ICommonDataActions {\n setCategoryName: (name: string) => void;\n setCategoryId: (id: number | null) => void;\n loadCategories: () => Promise;\n loadServices: () => Promise;\n getCategoryUrl: (category: ICategory) => string;\n}\n\nexport interface ICommonStore extends ICommonDataState, ICommonDataActions {}\n\nconst { isPublicDirect } = useAppMode();\n\nexport const useAppDataStore = (function () {\n return isPublicDirect ? usePublicDirectAppDataStore : useAccountDirectAppDataStore;\n})();\n"],"names":["getAreas","appConfig","useAppConfig","response","useAPI","area","formatArea","convertToSlug","getCategories","areaId","category","formatCategory","getCategoriesByAccountContextId","accountContextId","usePublicDirectAppDataStore","defineStore","name","id","data","getServices","_a","useAccountDirectAppDataStore","accountContext","useContextSlug","getServicesByAccountContextId","isPublicDirect","useAppMode","useAppDataStore"],"mappings":"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"}