2022-10-22 11:51:07 -08:00
|
|
|
import { BaseCRUDAPI } from "../../base/base-clients";
|
|
|
|
import { RecipeCommentCreate, RecipeCommentOut, RecipeCommentUpdate } from "~/lib/api/types/recipe";
|
2021-11-22 20:10:48 -09:00
|
|
|
|
|
|
|
const prefix = "/api";
|
|
|
|
|
|
|
|
const routes = {
|
|
|
|
comment: `${prefix}/comments`,
|
|
|
|
byRecipe: (id: string) => `${prefix}/recipes/${id}/comments`,
|
|
|
|
commentsId: (id: string) => `${prefix}/comments/${id}`,
|
|
|
|
};
|
|
|
|
|
2022-05-21 21:22:02 +02:00
|
|
|
export class CommentsApi extends BaseCRUDAPI<RecipeCommentCreate, RecipeCommentOut, RecipeCommentUpdate> {
|
2021-11-22 20:10:48 -09:00
|
|
|
baseRoute: string = routes.comment;
|
|
|
|
itemRoute = routes.commentsId;
|
|
|
|
|
|
|
|
async byRecipe(slug: string) {
|
2022-05-21 21:22:02 +02:00
|
|
|
return await this.requests.get<RecipeCommentOut[]>(routes.byRecipe(slug));
|
2021-11-22 20:10:48 -09:00
|
|
|
}
|
|
|
|
}
|