api store and viewmodel

This commit is contained in:
Julian Krauser 2025-01-22 09:10:52 +01:00
parent 131b3747de
commit 667a5f9209
2 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,57 @@
import { defineStore } from "pinia";
import type { RoleViewModel } from "@/viewmodels/admin/user/role.models";
import { http } from "@/serverCom";
import type { PermissionObject } from "@/types/permissionTypes";
import type { AxiosResponse } from "axios";
export const useRoleStore = defineStore("role", {
state: () => {
return {
roles: [] as Array<RoleViewModel>,
loading: null as null | "loading" | "success" | "failed",
};
},
actions: {
fetchRoles() {
this.loading = "loading";
http
.get("/admin/role")
.then((result) => {
this.roles = result.data;
this.loading = "success";
})
.catch((err) => {
this.loading = "failed";
});
},
fetchRoleById(id: number): Promise<AxiosResponse<any, any>> {
return http.get(`/admin/role/${id}`);
},
async createRole(role: string): Promise<AxiosResponse<any, any>> {
const result = await http.post("/admin/role", {
role: role,
});
this.fetchRoles();
return result;
},
async updateActiveRole(id: number, role: string): Promise<AxiosResponse<any, any>> {
const result = await http.patch(`/admin/role/${id}`, {
role: role,
});
this.fetchRoles();
return result;
},
async updateActiveRolePermissions(role: number, permission: PermissionObject): Promise<AxiosResponse<any, any>> {
const result = await http.patch(`/admin/role/${role}/permissions`, {
permissions: permission,
});
this.fetchRoles();
return result;
},
async deleteRole(role: number): Promise<AxiosResponse<any, any>> {
const result = await http.delete(`/admin/role/${role}`);
this.fetchRoles();
return result;
},
},
});

View file

@ -0,0 +1,26 @@
import type { PermissionObject } from "@/types/permissionTypes";
export interface ApiViewModel {
id: number;
permissions: PermissionObject;
title: string;
createdAt: Date;
lastUsage?: Date;
expiry?: Date;
}
export interface CreateApiViewModel {
title: string;
token: string;
expiry?: Date;
}
export interface UpdateApiViewModel {
id: number;
title: string;
expiry?: Date;
}
export interface DeleteApiViewModel {
id: number;
}