47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
|
|
import { PaginationRequest } from "@/types/globals";
|
||
|
|
import {
|
||
|
|
httpDeleteInterceptor,
|
||
|
|
httpGetInterceptor,
|
||
|
|
httpPostInterceptor,
|
||
|
|
httpPutInterceptor,
|
||
|
|
} from "./http-config/http-interceptor-services";
|
||
|
|
import { httpGet } from "./http-config/http-base-services";
|
||
|
|
|
||
|
|
export async function getGaleryData(props: PaginationRequest) {
|
||
|
|
const { page, limit, search } = props;
|
||
|
|
return await httpGetInterceptor(`/gallery-files`);
|
||
|
|
}
|
||
|
|
|
||
|
|
export async function getGaleryById(id: any) {
|
||
|
|
const headers = {
|
||
|
|
"content-type": "application/json",
|
||
|
|
};
|
||
|
|
return await httpGet(`/gallery-files/${id}`, headers);
|
||
|
|
}
|
||
|
|
|
||
|
|
export async function createGalery(data: any) {
|
||
|
|
const headers = {
|
||
|
|
"content-type": "multipart/form-data",
|
||
|
|
};
|
||
|
|
return await httpPostInterceptor(`/gallery-files`, data, headers);
|
||
|
|
}
|
||
|
|
|
||
|
|
export async function updateGalery(id: any, data: any) {
|
||
|
|
const headers = {
|
||
|
|
"content-type": "multipart/form-data",
|
||
|
|
};
|
||
|
|
return await httpPutInterceptor(`/gallery-files/${id}`, data, headers);
|
||
|
|
}
|
||
|
|
|
||
|
|
// export async function updateGalery(data: any, id: any) {
|
||
|
|
// const pathUrl = `/gallery-files/${id}`;
|
||
|
|
// return await httpPutInterceptor(pathUrl, data);
|
||
|
|
// }
|
||
|
|
|
||
|
|
export async function deleteGalery(id: string) {
|
||
|
|
const headers = {
|
||
|
|
"content-type": "application/json",
|
||
|
|
};
|
||
|
|
return await httpDeleteInterceptor(`gallery-files/${id}`, headers);
|
||
|
|
}
|