mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			745 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			745 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type { Composer } from "vue-i18n";
 | 
						|
import { useReadOnlyStore, useStore } from "../partials/use-store-factory";
 | 
						|
import type { ReadCookBook } from "~/lib/api/types/cookbook";
 | 
						|
import { usePublicExploreApi, useUserApi } from "~/composables/api";
 | 
						|
 | 
						|
const store: Ref<ReadCookBook[]> = ref([]);
 | 
						|
const loading = ref(false);
 | 
						|
const publicLoading = ref(false);
 | 
						|
 | 
						|
export const useCookbookStore = function (i18n?: Composer) {
 | 
						|
  const api = useUserApi(i18n);
 | 
						|
  return useStore<ReadCookBook>(store, loading, api.cookbooks);
 | 
						|
};
 | 
						|
 | 
						|
export const usePublicCookbookStore = function (groupSlug: string, i18n?: Composer) {
 | 
						|
  const api = usePublicExploreApi(groupSlug, i18n).explore;
 | 
						|
  return useReadOnlyStore<ReadCookBook>(store, publicLoading, api.cookbooks);
 | 
						|
};
 |