12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { compressToBase64 } from "lz-string";
- import { altogic } from "src/api/altogic";
- type JSON = {
- _id: string;
- createdAt: Date;
- updatedAt: Date;
- name: string;
- private: boolean;
- json: string;
- };
- const saveJson = async ({ id, data }): Promise<{ data: { _id: string } }> => {
- const compressedData = compressToBase64(data);
- if (id) {
- return await altogic.endpoint.put(`json/${id}`, {
- json: compressedData,
- });
- }
- return await altogic.endpoint.post("json", {
- json: compressedData,
- });
- };
- const getAllJson = async (): Promise<{ data: JSON[] }> =>
- await altogic.endpoint.get(`json`);
- const getJson = async (id: string): Promise<{ data: JSON }> =>
- await altogic.endpoint.get(`json/${id}`);
- const updateJson = async (id: string, data: object) =>
- await altogic.endpoint.put(`json/${id}`, {
- ...data,
- });
- const deleteJson = async (id: string) => await altogic.endpoint.delete(`json/${id}`);
- export { saveJson, getJson, getAllJson, updateJson, deleteJson };
|