mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-26 05:51:21 -08:00
2c5e5a8421
* fixed incorrect var ref * added public recipe pagination route * refactored frontend public/explore API * fixed broken public cards * hid context menu from cards when public * fixed public app header * fixed random recipe * added public food, category, tag, and tool routes * not sure why I thought that would work * added public organizer/foods stores * disabled clicking on tags/categories * added public link to profile page * linting * force a 404 if the group slug is missing or invalid * oops * refactored to fit sidebar into explore * fixed invalid logic for app header * removed most sidebar options from public * added backend routes for public cookbooks * added explore cookbook pages/apis * codegen * added backend tests * lint * fixes v-for keys * I do not understand but sure why not --------- Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
64 lines
2.0 KiB
TypeScript
64 lines
2.0 KiB
TypeScript
import { Recipe } from "../types/recipe";
|
|
import { ApiRequestInstance, PaginationData } from "~/lib/api/types/non-generated";
|
|
import { QueryValue, route } from "~/lib/api/base/route";
|
|
|
|
export interface CrudAPIInterface {
|
|
requests: ApiRequestInstance;
|
|
|
|
// Route Properties / Methods
|
|
baseRoute: string;
|
|
itemRoute(itemId: string | number): string;
|
|
|
|
// Methods
|
|
}
|
|
|
|
export abstract class BaseAPI {
|
|
requests: ApiRequestInstance;
|
|
|
|
constructor(requests: ApiRequestInstance) {
|
|
this.requests = requests;
|
|
}
|
|
}
|
|
|
|
export abstract class BaseCRUDAPIReadOnly<ReadType>
|
|
extends BaseAPI
|
|
implements CrudAPIInterface {
|
|
abstract baseRoute: (string);
|
|
abstract itemRoute(itemId: string | number): string;
|
|
|
|
async getAll(page = 1, perPage = -1, params = {} as Record<string, QueryValue>) {
|
|
params = Object.fromEntries(Object.entries(params).filter(([_, v]) => v !== null && v !== undefined));
|
|
return await this.requests.get<PaginationData<ReadType>>(route(this.baseRoute, { page, perPage, ...params }));
|
|
}
|
|
|
|
async getOne(itemId: string | number) {
|
|
return await this.requests.get<ReadType>(this.itemRoute(itemId));
|
|
}
|
|
}
|
|
|
|
export abstract class BaseCRUDAPI<CreateType, ReadType, UpdateType = CreateType>
|
|
extends BaseCRUDAPIReadOnly<ReadType>
|
|
implements CrudAPIInterface {
|
|
async createOne(payload: CreateType) {
|
|
return await this.requests.post<ReadType>(this.baseRoute, payload);
|
|
}
|
|
|
|
async updateOne(itemId: string | number, payload: UpdateType) {
|
|
return await this.requests.put<ReadType, UpdateType>(this.itemRoute(itemId), payload);
|
|
}
|
|
|
|
async patchOne(itemId: string, payload: Partial<UpdateType>) {
|
|
return await this.requests.patch<ReadType, Partial<UpdateType>>(this.itemRoute(itemId), payload);
|
|
}
|
|
|
|
async deleteOne(itemId: string | number) {
|
|
return await this.requests.delete<ReadType>(this.itemRoute(itemId));
|
|
}
|
|
|
|
async duplicateOne(itemId: string | number, newName: string | undefined) {
|
|
return await this.requests.post<Recipe>(`${this.itemRoute(itemId)}/duplicate`, {
|
|
name: newName,
|
|
});
|
|
}
|
|
}
|