refactor: project structure (3)

This commit is contained in:
Methapon Metanipat 2024-10-30 10:42:12 +07:00
parent 61ab59e027
commit c0fefa4211
3 changed files with 9 additions and 63 deletions

View file

@ -5,13 +5,10 @@ import { defineStore } from 'pinia';
import { Pagination } from '../types';
import { Branch } from '../branch/types';
import useFlowStore from '../flow';
const useMyBranch = defineStore('useMyBranchStore', () => {
const myBranch = ref<Branch[]>();
const currentMyBranch = ref<Branch>();
const flowStore = useFlowStore();
async function fetchListOptionBranch<
Options extends {
page?: number;
@ -23,20 +20,9 @@ const useMyBranch = defineStore('useMyBranchStore', () => {
},
Data extends Pagination<Branch[]>,
>(opts?: Options): Promise<Data | false> {
const params = new URLSearchParams();
for (const [k, v] of Object.entries(opts || {})) {
v !== undefined && params.append(k, v.toString());
}
const query = params.toString();
const res = await api.get<Data>(
`/branch${(params && '?'.concat(query)) || ''}`,
{
headers: { 'X-Rtid': flowStore.rtid },
},
);
const res = await api.get<Data>(`/branch`, {
params: opts,
});
if (res && res.status === 200) {
return res.data;
@ -45,11 +31,7 @@ const useMyBranch = defineStore('useMyBranchStore', () => {
}
async function fetchListMyBranch(userId: string) {
const res = await api.get<Pagination<Branch[]>>(`/branch`, {
headers: {
'X-Rtid': flowStore.rtid,
},
});
const res = await api.get<Pagination<Branch[]>>(`/branch`);
if (!res) return false;
if (res.status === 200) {