2023-10-15 01:01:17 +01:00
|
|
|
import api from '@/lib/api-client';
|
|
|
|
import { IMovePage, IPage, IWorkspacePageOrder } from '@/features/page/types/page.types';
|
|
|
|
|
|
|
|
export async function createPage(data: Partial<IPage>): Promise<IPage> {
|
2023-11-03 13:31:01 +00:00
|
|
|
const req = await api.post<IPage>('/pages/create', data);
|
2023-10-15 01:01:17 +01:00
|
|
|
return req.data as IPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getPageById(id: string): Promise<IPage> {
|
2023-11-03 13:31:01 +00:00
|
|
|
const req = await api.post<IPage>('/pages/details', { id });
|
2023-10-15 01:01:17 +01:00
|
|
|
return req.data as IPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getPages(): Promise<IPage[]> {
|
2023-11-03 13:31:01 +00:00
|
|
|
const req = await api.post<IPage[]>('/pages');
|
2023-10-15 01:01:17 +01:00
|
|
|
return req.data as IPage[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getWorkspacePageOrder(): Promise<IWorkspacePageOrder[]> {
|
2023-11-03 13:31:01 +00:00
|
|
|
const req = await api.post<IWorkspacePageOrder[]>('/pages/ordering');
|
2023-10-15 01:01:17 +01:00
|
|
|
return req.data as IWorkspacePageOrder[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function updatePage(data: Partial<IPage>): Promise<IPage> {
|
2023-11-03 13:31:01 +00:00
|
|
|
const req = await api.post<IPage>(`/pages/update`, data);
|
2023-10-15 01:01:17 +01:00
|
|
|
return req.data as IPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function movePage(data: IMovePage): Promise<void> {
|
2023-11-03 13:31:01 +00:00
|
|
|
await api.post<IMovePage>('/pages/move', data);
|
2023-10-15 01:01:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function deletePage(id: string): Promise<void> {
|
2023-11-03 13:31:01 +00:00
|
|
|
await api.post('/pages/delete', { id });
|
2023-10-15 01:01:17 +01:00
|
|
|
}
|