mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			951 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			951 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> {
 | 
						|
    baseRoute = routes.cookbooksGroupSlug(this.groupSlug);
 | 
						|
    itemRoute = (itemId: string | number) => routes.cookbooksGroupSlugCookbookId(this.groupSlug, itemId);
 | 
						|
 | 
						|
    constructor(requests: ApiRequestInstance, private readonly groupSlug: string) {
 | 
						|
        super(requests);
 | 
						|
    }
 | 
						|
}
 |