mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-21 14:19:41 +02:00
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
21 lines
937 B
TypeScript
21 lines
937 B
TypeScript
import { BaseCRUDAPIReadOnly } from "~/lib/api/base/base-clients";
|
|
import { RecipeCookBook } from "~/lib/api/types/cookbook";
|
|
import { ApiRequestInstance } from "~/lib/api/types/non-generated";
|
|
|
|
const prefix = "/api";
|
|
const exploreGroupSlug = (groupSlug: string | number) => `${prefix}/explore/groups/${groupSlug}`
|
|
|
|
const routes = {
|
|
cookbooksGroupSlug: (groupSlug: string | number) => `${exploreGroupSlug(groupSlug)}/cookbooks`,
|
|
cookbooksGroupSlugCookbookId: (groupSlug: string | number, cookbookId: string | number) => `${exploreGroupSlug(groupSlug)}/cookbooks/${cookbookId}`,
|
|
};
|
|
|
|
export class PublicCookbooksApi extends BaseCRUDAPIReadOnly<RecipeCookBook> {
|
|
constructor(requests: ApiRequestInstance, groupSlug: string) {
|
|
super(
|
|
requests,
|
|
routes.cookbooksGroupSlug(groupSlug),
|
|
(itemId: string | number) => routes.cookbooksGroupSlugCookbookId(groupSlug, itemId)
|
|
);
|
|
}
|
|
}
|