Files
InvoiceShelf/resources/scripts/admin/stores/category.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

130 lines
3.7 KiB
JavaScript
Vendored

import http from '@/scripts/http'
import { defineStore } from 'pinia'
import { useNotificationStore } from '@/scripts/stores/notification'
import { handleError } from '@/scripts/helpers/error-handling'
export const useCategoryStore = (useWindow = false) => {
const defineStoreFunc = useWindow ? window.pinia.defineStore : defineStore
const { global } = window.i18n
return defineStoreFunc({
id: 'category',
state: () => ({
categories: [],
currentCategory: {
id: null,
name: '',
description: '',
},
editCategory: null
}),
getters: {
isEdit: (state) => (state.currentCategory.id ? true : false),
},
actions: {
fetchCategories(params) {
return new Promise((resolve, reject) => {
http
.get(`/api/v1/categories`, { params })
.then((response) => {
this.categories = response.data.data
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
fetchCategory(id) {
return new Promise((resolve, reject) => {
http
.get(`/api/v1/categories/${id}`)
.then((response) => {
this.currentCategory = response.data.data
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
addCategory(data) {
return new Promise((resolve, reject) => {
http
.post('/api/v1/categories', data)
.then((response) => {
this.categories.push(response.data.data)
const notificationStore = useNotificationStore()
notificationStore.showNotification({
type: 'success',
message: global.t('settings.expense_category.created_message'),
})
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
updateCategory(data) {
return new Promise((resolve, reject) => {
http
.put(`/api/v1/categories/${data.id}`, data)
.then((response) => {
if (response.data) {
let pos = this.categories.findIndex(
(category) => category.id === response.data.data.id
)
this.categories[pos] = data.categories
const notificationStore = useNotificationStore()
notificationStore.showNotification({
type: 'success',
message: global.t(
'settings.expense_category.updated_message'
),
})
}
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
deleteCategory(id) {
return new Promise((resolve) => {
http
.delete(`/api/v1/categories/${id}`)
.then((response) => {
let index = this.categories.findIndex(
(category) => category.id === id
)
this.categories.splice(index, 1)
const notificationStore = useNotificationStore()
notificationStore.showNotification({
type: 'success',
message: global.t('settings.expense_category.deleted_message'),
})
resolve(response)
})
.catch((err) => {
handleError(err)
console.error(err)
})
})
},
},
})()
}