mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* refactor recipe card section to use unified query construct * rework search page so it uses lazy-loading of RecipeCardSection * remove RecipeQuery again * prettier reformatting * remove recipes/all page * remove max results setting from search * fix typing issues
		
			
				
	
	
		
			104 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Ref, useAsync } from "@nuxtjs/composition-api";
 | 
						|
import { useAsyncKey } from "../use-utils";
 | 
						|
import { BaseCRUDAPI } from "~/lib/api/base/base-clients";
 | 
						|
import { QueryValue } from "~/lib/api/base/route";
 | 
						|
 | 
						|
type BoundT = {
 | 
						|
  id?: string | number;
 | 
						|
};
 | 
						|
 | 
						|
interface StoreActions<T extends BoundT> {
 | 
						|
  getAll(page?: number, perPage?: number, params?: any): Ref<T[] | null>;
 | 
						|
  refresh(): Promise<void>;
 | 
						|
  createOne(createData: T): Promise<void>;
 | 
						|
  updateOne(updateData: T): Promise<void>;
 | 
						|
  deleteOne(id: string | number): Promise<void>;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * useStoreActions is a factory function that returns a set of methods
 | 
						|
 * that can be reused to manage the state of a data store without using
 | 
						|
 * Vuex. This is primarily used for basic CRUD operations that required
 | 
						|
 * a lot of refreshing hooks to be called on operations
 | 
						|
 */
 | 
						|
export function useStoreActions<T extends BoundT>(
 | 
						|
  api: BaseCRUDAPI<unknown, T, unknown>,
 | 
						|
  allRef: Ref<T[] | null> | null,
 | 
						|
  loading: Ref<boolean>
 | 
						|
): StoreActions<T> {
 | 
						|
  function getAll(page = 1, perPage = -1, params = {} as Record<string, QueryValue>) {
 | 
						|
    params.orderBy ??= "name";
 | 
						|
    params.orderDirection ??= "asc";
 | 
						|
 | 
						|
    loading.value = true;
 | 
						|
    const allItems = useAsync(async () => {
 | 
						|
      const { data } = await api.getAll(page, perPage, params);
 | 
						|
 | 
						|
      if (data && allRef) {
 | 
						|
        allRef.value = data.items;
 | 
						|
      }
 | 
						|
 | 
						|
      if (data) {
 | 
						|
        return data.items ?? [];
 | 
						|
      } else {
 | 
						|
        return [];
 | 
						|
      }
 | 
						|
    }, useAsyncKey());
 | 
						|
 | 
						|
    loading.value = false;
 | 
						|
    return allItems;
 | 
						|
  }
 | 
						|
 | 
						|
  async function refresh() {
 | 
						|
    loading.value = true;
 | 
						|
    const { data } = await api.getAll();
 | 
						|
 | 
						|
    if (data && data.items && allRef) {
 | 
						|
      allRef.value = data.items;
 | 
						|
    }
 | 
						|
 | 
						|
    loading.value = false;
 | 
						|
  }
 | 
						|
 | 
						|
  async function createOne(createData: T) {
 | 
						|
    loading.value = true;
 | 
						|
    const { data } = await api.createOne(createData);
 | 
						|
    if (data && allRef?.value) {
 | 
						|
      allRef.value.push(data);
 | 
						|
    } else {
 | 
						|
      refresh();
 | 
						|
    }
 | 
						|
    loading.value = false;
 | 
						|
  }
 | 
						|
 | 
						|
  async function updateOne(updateData: T) {
 | 
						|
    if (!updateData.id) {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
 | 
						|
    loading.value = true;
 | 
						|
    const { data } = await api.updateOne(updateData.id, updateData);
 | 
						|
    if (data && allRef?.value) {
 | 
						|
      refresh();
 | 
						|
    }
 | 
						|
    loading.value = false;
 | 
						|
  }
 | 
						|
 | 
						|
  async function deleteOne(id: string | number) {
 | 
						|
    loading.value = true;
 | 
						|
    const { response } = await api.deleteOne(id);
 | 
						|
    if (response && allRef?.value) {
 | 
						|
      refresh();
 | 
						|
    }
 | 
						|
    loading.value = false;
 | 
						|
  }
 | 
						|
 | 
						|
  return {
 | 
						|
    getAll,
 | 
						|
    refresh,
 | 
						|
    createOne,
 | 
						|
    updateOne,
 | 
						|
    deleteOne,
 | 
						|
  };
 | 
						|
}
 |