{"version":3,"file":"D2TShGyS.js","sources":["../../../../stores/projects/projects.ts","../../../../stores/products/products.ts","../../../../services/product.ts"],"sourcesContent":["import {\n getContributorsByProductId,\n getVulnerabilitiesByProductId\n} from '@/services';\nimport { type IContributor } from '@/types';\nimport { defineStore } from 'pinia';\n\ntype TabKey = 'present' | 'fixed';\n\ntype State = {\n [key in TabKey]: {\n loading: boolean;\n loaded: boolean;\n data: Record<number, any>;\n hasMore: boolean;\n batchInfo: string;\n page: number;\n };\n};\n\ntype Contributors = {\n contributors: {\n loading: boolean;\n loaded: boolean;\n data: IContributor[];\n hasMore: boolean;\n batchInfo: string;\n page: number;\n };\n};\n\nexport const useProjectsStore = defineStore('projects', {\n state: (): State & Contributors => ({\n present: {\n loading: false,\n loaded: false,\n data: {},\n hasMore: true,\n batchInfo: '',\n page: 1\n },\n fixed: {\n loading: false,\n loaded: false,\n data: {},\n hasMore: true,\n batchInfo: '',\n page: 1\n },\n contributors: {\n loading: false,\n loaded: false,\n data: [],\n hasMore: true,\n batchInfo: '',\n page: 1\n }\n }),\n\n actions: {\n async fetchProjectTab(id: string, tab: TabKey) {\n try {\n if (this.$state[tab].loaded) return;\n\n this.$state[tab].loading = true;\n const { data } = await getVulnerabilitiesByProductId(id, tab);\n if (data.value) {\n this.$state[tab].data[this.$state[tab].page] = data.value?.data;\n this.$state[tab].hasMore =\n data.value?.pagination.next_page_url !== null;\n this.$state[tab].loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching vulnerabilities');\n } finally {\n this.$state[tab].loading = false;\n }\n },\n async fetchContributors(id: string) {\n try {\n if (this.$state.contributors.loaded) return;\n\n this.$state.contributors.loading = true;\n const { data } = await getContributorsByProductId(id);\n if (data.value) {\n this.$state.contributors.data = data.value;\n this.$state.contributors.loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching contributors');\n } finally {\n this.$state.contributors.loading = false;\n }\n },\n loadMore() {},\n $reset() {\n this.$state.present.loaded = false;\n this.$state.present.data = {};\n this.$state.fixed.loaded = false;\n this.$state.fixed.data = {};\n this.$state.contributors.loaded = false;\n this.$state.contributors.data = [];\n }\n }\n});\n","import {\n getProductById,\n getProductDetails,\n getProducts,\n getLobbyProducts\n} from '@/services';\nimport { useProjectsStore } from '@/stores/projects/projects';\nimport { type ProductAPI } from '@/types';\nimport { defineStore } from 'pinia';\n\ntype TabKey = 'all' | 'open' | 'pending';\n\nexport const useProductsStore = defineStore('products', {\n state: () => ({\n products: {\n all: {\n loading: false,\n loaded: false,\n data: [] as ProductAPI[],\n filters: 'filter[all-active]=true'\n },\n open: {\n loading: false,\n loaded: false,\n data: [] as ProductAPI[],\n filters: 'filter[open-reports]=true'\n },\n pending: {\n loading: false,\n loaded: false,\n data: [] as ProductAPI[],\n filters: 'filter[vdp-pending]=true'\n }\n },\n productDetail: {\n loading: false,\n loaded: false,\n data: {\n active: 0,\n fixed: 0,\n fixedOnTime: 0,\n open: 0,\n pending: 0,\n reports: 0\n }\n },\n singleProduct: {\n loading: false,\n loaded: false,\n data: {} as ProductAPI\n }\n }),\n actions: {\n async fetchProducts(tab: TabKey) {\n const store = useProjectsStore();\n store.$reset();\n try {\n if (this.$state.products[tab].loaded) return;\n const filters = this.$state.products[tab].filters;\n this.$state.products[tab].loading = true;\n const { data } = await getProducts(filters);\n\n if (data.value?.data) {\n this.$state.products[tab].data = data.value?.data;\n this.$state.products[tab].loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching products');\n } finally {\n this.$state.products[tab].loading = false;\n }\n },\n async fetchProductDetail() {\n try {\n if (this.$state.productDetail.loaded) return;\n\n this.$state.productDetail.loading = true;\n const { data } = await getProductDetails();\n if (data.value) {\n this.$state.productDetail.data = data.value;\n this.$state.productDetail.loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching products details');\n } finally {\n this.$state.productDetail.loading = false;\n }\n },\n async fetchProductById(id: string) {\n try {\n if (this.$state.singleProduct.loaded) return;\n\n this.$state.singleProduct.loading = true;\n const { data: productDetail } = await getProductById(id);\n if (productDetail.value) {\n this.$state.singleProduct.data = productDetail.value;\n this.$state.singleProduct.loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching product');\n } finally {\n this.$state.singleProduct.loading = false;\n }\n },\n async fetchLobbyProducts(tab: TabKey) {\n const store = useProjectsStore();\n store.$reset();\n try {\n if (this.$state.products[tab].loaded) return;\n const filters = this.$state.products[tab].filters;\n this.$state.products[tab].loading = true;\n const { data } = await getLobbyProducts(filters);\n\n if (data.value?.data) {\n this.$state.products[tab].data = data.value?.data;\n this.$state.products[tab].loaded = true;\n }\n } catch (error) {\n throw new Error('Error fetching products');\n } finally {\n this.$state.products[tab].loading = false;\n }\n },\n resetTab(tab: TabKey) {\n this.$state.products[tab].data = [] as ProductAPI[];\n this.$state.products[tab].loaded = false;\n this.$state.productDetail.loaded = false;\n },\n $reset() {\n this.$state.singleProduct.loaded = false;\n this.$state.singleProduct.data = {} as ProductAPI;\n }\n },\n getters: {\n activePrograms: (state) => {\n return state.products.all.data.filter((product) => product?.is_active);\n }\n }\n});\n","import { useAPI, useFetchAPI } from '@/composables';\nimport type {\n ContributorAPI,\n ProductAPI,\n ProductDetailsAPI,\n ProductsAPI,\n ProductVulnerabilityAPI\n} from '@/types';\n\nexport const getProductById = (id: string) => {\n return useAPI<ProductAPI>(`/products/${id}`);\n};\n\nexport const editProduct = (id: string) => {\n return useAPI(`/products/${id}/edit`);\n};\n\nexport const getContributorsByProductId = (id: string) => {\n return useAPI<ContributorAPI>(`/products/${id}/contributors`);\n};\n\nexport const getVulnerabilitiesByProductId = (id: string, tab: string) => {\n return useAPI<ProductVulnerabilityAPI>(\n `/products/${id}/vulnerabilities?filter[tab]=${tab}`\n );\n};\n\nexport const getProducts = (filters: string) => {\n return useAPI<ProductsAPI>(`/products?${filters}`);\n};\n\nexport const getLobbyProducts = (filters: string) => {\n return useAPI<ProductsAPI>(`/products/lobby`);\n};\n\nexport const getProductDetails = () => {\n return useAPI<ProductDetailsAPI>('/products/details');\n};\n\nexport const createProduct = (products: FormData) => {\n return useFetchAPI('/products', {\n method: 'POST',\n body: products\n });\n};\n\nexport const updateProduct = (id: string, payload: FormData) => {\n return useFetchAPI(`/products/${id}`, {\n method: 'POST',\n body: payload\n });\n};\n"],"names":["useProjectsStore","defineStore","id","tab","data","getVulnerabilitiesByProductId","_a","_b","getContributorsByProductId","useProductsStore","filters","getProducts","getProductDetails","productDetail","getProductById","getLobbyProducts","state","product","useAPI","editProduct","createProduct","products","useFetchAPI","updateProduct","payload"],"mappings":"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"}