Files
InvoiceShelf/resources/scripts/customer/stores/invoice.js
Darko Gjorgjijoski 691178857f Add HTTP client wrapper and upgrade Axios to v1 (#594)
* refactor: add HTTP client wrapper and upgrade axios to v1

Introduce a thin HTTP wrapper (resources/scripts/http) that centralizes
axios configuration, interceptors, and auth header injection. All 43
files now import from the wrapper instead of axios directly, making
future library swaps a single-file change. Upgrade axios from 0.30.0
to 1.14.0.

* fix: restore window.Ls assignment removed during axios refactor

company.js uses window.Ls.set() to persist selected company,
which broke after the axios plugin (that set window.Ls) was deleted.
2026-04-02 15:08:23 +02:00

63 lines
1.6 KiB
JavaScript
Vendored

import { handleError } from '@/scripts/customer/helpers/error-handling'
const { defineStore } = window.pinia
import http from '@/scripts/http'
export const useInvoiceStore = defineStore({
id: 'customerInvoiceStore',
state: () => ({
totalInvoices: 0,
invoices: [],
selectedViewInvoice: [],
}),
actions: {
fetchInvoices(params, slug) {
return new Promise((resolve, reject) => {
http
.get(`/api/v1/${slug}/customer/invoices`, { params })
.then((response) => {
this.invoices = response.data.data
this.totalInvoices = response.data.meta.invoiceTotalCount
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
fetchViewInvoice(params, slug) {
return new Promise((resolve, reject) => {
http
.get(`/api/v1/${slug}/customer/invoices/${params.id}`, {
params,
})
.then((response) => {
this.selectedViewInvoice = response.data.data
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
searchInvoice(params, slug) {
return new Promise((resolve, reject) => {
http
.get(`/api/v1/${slug}/customer/invoices`, { params })
.then((response) => {
this.invoices = response.data
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
},
})