61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
|
import { defineStore } from "pinia";
|
||
|
import { http } from "@/serverCom";
|
||
|
import type { ProtocolPrintoutViewModel } from "../../viewmodels/admin/protocolPrintout.models";
|
||
|
import { useProtocolStore } from "./protocol";
|
||
|
|
||
|
export const useProtocolPrintoutStore = defineStore("protocolPrintout", {
|
||
|
state: () => {
|
||
|
return {
|
||
|
printout: [] as Array<ProtocolPrintoutViewModel>,
|
||
|
loading: "loading" as "loading" | "fetched" | "failed",
|
||
|
printing: undefined as undefined | "loading" | "success" | "failed",
|
||
|
};
|
||
|
},
|
||
|
actions: {
|
||
|
fetchProtocolPrintout() {
|
||
|
const protocolId = useProtocolStore().activeProtocol;
|
||
|
this.loading = "loading";
|
||
|
http
|
||
|
.get(`/admin/protocol/${protocolId}/printouts`)
|
||
|
.then((result) => {
|
||
|
this.printout = result.data;
|
||
|
this.loading = "fetched";
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
this.loading = "failed";
|
||
|
});
|
||
|
},
|
||
|
fetchProtocolPrintoutById(printoutId: string) {
|
||
|
const protocolId = useProtocolStore().activeProtocol;
|
||
|
this.loading = "loading";
|
||
|
http
|
||
|
.get(`/admin/protocol/${protocolId}/printout/${printoutId}`)
|
||
|
.then((result) => {
|
||
|
this.loading = "fetched";
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
this.loading = "failed";
|
||
|
});
|
||
|
},
|
||
|
createProtocolPrintout() {
|
||
|
this.printing = "loading";
|
||
|
const protocolId = useProtocolStore().activeProtocol;
|
||
|
if (protocolId == null) return;
|
||
|
return http
|
||
|
.post(`/admin/protocol/${protocolId}/printout`)
|
||
|
.then((res) => {
|
||
|
this.fetchProtocolPrintout();
|
||
|
this.printing = "success";
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
this.printing = "failed";
|
||
|
})
|
||
|
.finally(() => {
|
||
|
setTimeout(() => {
|
||
|
this.printing = undefined;
|
||
|
}, 1500);
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
});
|