2023-09-14 09:01:24 -05:00
|
|
|
import { BaseCRUDAPIReadOnly } from "~/lib/api/base/base-clients";
|
|
|
|
import { IngredientFood } from "~/lib/api/types/recipe";
|
|
|
|
import { ApiRequestInstance } from "~/lib/api/types/non-generated";
|
|
|
|
|
|
|
|
const prefix = "/api";
|
2024-08-22 10:14:32 -05:00
|
|
|
const exploreGroupSlug = (groupSlug: string | number) => `${prefix}/explore/groups/${groupSlug}`
|
2023-09-14 09:01:24 -05:00
|
|
|
|
|
|
|
const routes = {
|
2024-08-22 10:14:32 -05:00
|
|
|
foodsGroupSlug: (groupSlug: string | number) => `${exploreGroupSlug(groupSlug)}/foods`,
|
|
|
|
foodsGroupSlugFoodId: (groupSlug: string | number, foodId: string | number) => `${exploreGroupSlug(groupSlug)}/foods/${foodId}`,
|
2023-09-14 09:01:24 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export class PublicFoodsApi extends BaseCRUDAPIReadOnly<IngredientFood> {
|
2025-06-20 00:09:12 +07:00
|
|
|
constructor(requests: ApiRequestInstance, groupSlug: string) {
|
|
|
|
super(
|
|
|
|
requests,
|
|
|
|
routes.foodsGroupSlug(groupSlug),
|
|
|
|
(itemId: string | number) => routes.foodsGroupSlugFoodId(groupSlug, itemId)
|
|
|
|
);
|
2023-09-14 09:01:24 -05:00
|
|
|
}
|
|
|
|
}
|