2021-10-24 00:42:20 +00:00
|
|
|
import { BaseAPI } from "../_base";
|
2021-10-19 03:41:41 +00:00
|
|
|
|
|
|
|
interface BasePayload {
|
|
|
|
recipes: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
type exportType = "json";
|
|
|
|
|
2022-01-09 06:15:23 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
2021-10-19 03:41:41 +00:00
|
|
|
interface RecipeBulkDelete extends BasePayload {}
|
|
|
|
|
|
|
|
interface RecipeBulkExport extends BasePayload {
|
|
|
|
exportType: exportType;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface RecipeBulkCategorize extends BasePayload {
|
|
|
|
categories: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
interface RecipeBulkTag extends BasePayload {
|
|
|
|
tags: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
interface BulkActionError {
|
|
|
|
recipe: string;
|
|
|
|
error: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface BulkActionResponse {
|
|
|
|
success: boolean;
|
|
|
|
message: string;
|
|
|
|
errors: BulkActionError[];
|
|
|
|
}
|
|
|
|
|
2021-12-04 23:18:46 +00:00
|
|
|
export interface GroupDataExport {
|
|
|
|
id: string;
|
|
|
|
groupId: string;
|
|
|
|
name: string;
|
|
|
|
filename: string;
|
|
|
|
path: string;
|
|
|
|
size: string;
|
|
|
|
expires: Date;
|
|
|
|
}
|
|
|
|
|
2021-10-19 03:41:41 +00:00
|
|
|
const prefix = "/api";
|
|
|
|
|
|
|
|
const routes = {
|
|
|
|
bulkExport: prefix + "/recipes/bulk-actions/export",
|
2021-12-04 23:18:46 +00:00
|
|
|
purgeExports: prefix + "/recipes/bulk-actions/export/purge",
|
2021-10-19 03:41:41 +00:00
|
|
|
bulkCategorize: prefix + "/recipes/bulk-actions/categorize",
|
|
|
|
bulkTag: prefix + "/recipes/bulk-actions/tag",
|
|
|
|
bulkDelete: prefix + "/recipes/bulk-actions/delete",
|
|
|
|
};
|
|
|
|
|
|
|
|
export class BulkActionsAPI extends BaseAPI {
|
|
|
|
async bulkExport(payload: RecipeBulkExport) {
|
|
|
|
return await this.requests.post<BulkActionResponse>(routes.bulkExport, payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
async bulkCategorize(payload: RecipeBulkCategorize) {
|
|
|
|
return await this.requests.post<BulkActionResponse>(routes.bulkCategorize, payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
async bulkTag(payload: RecipeBulkTag) {
|
|
|
|
return await this.requests.post<BulkActionResponse>(routes.bulkTag, payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
async bulkDelete(payload: RecipeBulkDelete) {
|
|
|
|
return await this.requests.post<BulkActionResponse>(routes.bulkDelete, payload);
|
|
|
|
}
|
2021-12-04 23:18:46 +00:00
|
|
|
|
|
|
|
async fetchExports() {
|
|
|
|
return await this.requests.get<GroupDataExport[]>(routes.bulkExport);
|
|
|
|
}
|
|
|
|
|
|
|
|
async purgeExports() {
|
|
|
|
return await this.requests.delete(routes.purgeExports);
|
|
|
|
}
|
2021-10-19 03:41:41 +00:00
|
|
|
}
|