mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { BaseCRUDAPIReadOnly } from "~/lib/api/base/base-clients";
 | |
| import { route } from "../../base";
 | |
| import { Recipe, RecipeSuggestionQuery, RecipeSuggestionResponse } from "~/lib/api/types/recipe";
 | |
| import { ApiRequestInstance, PaginationData } from "~/lib/api/types/non-generated";
 | |
| import { RecipeSearchQuery } from "../../user/recipes/recipe";
 | |
| 
 | |
| const prefix = "/api";
 | |
| const exploreGroupSlug = (groupSlug: string | number) => `${prefix}/explore/groups/${groupSlug}`
 | |
| 
 | |
| const routes = {
 | |
|   recipesGroupSlug: (groupSlug: string | number) => `${exploreGroupSlug(groupSlug)}/recipes`,
 | |
|   recipesGroupSlugRecipeSlug: (groupSlug: string | number, recipeSlug: string | number) => `${exploreGroupSlug(groupSlug)}/recipes/${recipeSlug}`,
 | |
| };
 | |
| 
 | |
| export class PublicRecipeApi extends BaseCRUDAPIReadOnly<Recipe> {
 | |
|   baseRoute = routes.recipesGroupSlug(this.groupSlug);
 | |
|   itemRoute = (itemId: string | number) => routes.recipesGroupSlugRecipeSlug(this.groupSlug, itemId);
 | |
| 
 | |
|   constructor(requests: ApiRequestInstance, private readonly groupSlug: string) {
 | |
|     super(requests);
 | |
|   }
 | |
| 
 | |
|   async search(rsq: RecipeSearchQuery) {
 | |
|     return await this.requests.get<PaginationData<Recipe>>(route(routes.recipesGroupSlug(this.groupSlug), rsq));
 | |
|   }
 | |
| 
 | |
|   async getSuggestions(q: RecipeSuggestionQuery, foods: string[] | null = null, tools: string[]| null = null) {
 | |
|     return await this.requests.get<RecipeSuggestionResponse>(
 | |
|       route(`${this.baseRoute}/suggestions`, { ...q, foods, tools })
 | |
|     );
 | |
|   }
 | |
| }
 |