mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* fix several state issues with explore page - update state when there are no query params - only call search if the query params actually changed - wait until ready to call API * store last search query in user prefs * restore chip tag click to anonymous user
		
			
				
	
	
		
			103 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Ref, useContext } from "@nuxtjs/composition-api";
 | 
						|
import { useLocalStorage } from "@vueuse/core";
 | 
						|
import { TimelineEventType } from "~/lib/api/types/recipe";
 | 
						|
 | 
						|
export interface UserPrintPreferences {
 | 
						|
  imagePosition: string;
 | 
						|
  showDescription: boolean;
 | 
						|
  showNotes: boolean;
 | 
						|
}
 | 
						|
 | 
						|
export enum ImagePosition {
 | 
						|
  hidden = "hidden",
 | 
						|
  left = "left",
 | 
						|
  right = "right",
 | 
						|
}
 | 
						|
 | 
						|
export interface UserRecipePreferences {
 | 
						|
  orderBy: string;
 | 
						|
  orderDirection: string;
 | 
						|
  filterNull: boolean;
 | 
						|
  sortIcon: string;
 | 
						|
  useMobileCards: boolean;
 | 
						|
  searchQuery: string;
 | 
						|
}
 | 
						|
 | 
						|
export interface UserShoppingListPreferences {
 | 
						|
  viewAllLists: boolean;
 | 
						|
  viewByLabel: boolean;
 | 
						|
}
 | 
						|
 | 
						|
export interface UserTimelinePreferences {
 | 
						|
  orderDirection: string;
 | 
						|
  types: TimelineEventType[];
 | 
						|
}
 | 
						|
 | 
						|
export function useUserPrintPreferences(): Ref<UserPrintPreferences> {
 | 
						|
  const fromStorage = useLocalStorage(
 | 
						|
    "recipe-print-preferences",
 | 
						|
    {
 | 
						|
      imagePosition: "left",
 | 
						|
      showDescription: true,
 | 
						|
      showNotes: true,
 | 
						|
    },
 | 
						|
    { mergeDefaults: true }
 | 
						|
    // we cast to a Ref because by default it will return an optional type ref
 | 
						|
    // but since we pass defaults we know all properties are set.
 | 
						|
  ) as unknown as Ref<UserPrintPreferences>;
 | 
						|
 | 
						|
  return fromStorage;
 | 
						|
}
 | 
						|
 | 
						|
export function useUserSortPreferences(): Ref<UserRecipePreferences> {
 | 
						|
  const { $globals } = useContext();
 | 
						|
 | 
						|
  const fromStorage = useLocalStorage(
 | 
						|
    "recipe-section-preferences",
 | 
						|
    {
 | 
						|
      orderBy: "name",
 | 
						|
      orderDirection: "asc",
 | 
						|
      filterNull: false,
 | 
						|
      sortIcon: $globals.icons.sortAlphabeticalAscending,
 | 
						|
      useMobileCards: false,
 | 
						|
      searchQuery: "",
 | 
						|
    },
 | 
						|
    { mergeDefaults: true }
 | 
						|
    // we cast to a Ref because by default it will return an optional type ref
 | 
						|
    // but since we pass defaults we know all properties are set.
 | 
						|
  ) as unknown as Ref<UserRecipePreferences>;
 | 
						|
 | 
						|
  return fromStorage;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
export function useShoppingListPreferences(): Ref<UserShoppingListPreferences> {
 | 
						|
  const fromStorage = useLocalStorage(
 | 
						|
    "shopping-list-preferences",
 | 
						|
    {
 | 
						|
      viewAllLists: false,
 | 
						|
      viewByLabel: false,
 | 
						|
    },
 | 
						|
    { mergeDefaults: true }
 | 
						|
    // we cast to a Ref because by default it will return an optional type ref
 | 
						|
    // but since we pass defaults we know all properties are set.
 | 
						|
  ) as unknown as Ref<UserShoppingListPreferences>;
 | 
						|
 | 
						|
  return fromStorage;
 | 
						|
}
 | 
						|
 | 
						|
export function useTimelinePreferences(): Ref<UserTimelinePreferences> {
 | 
						|
  const fromStorage = useLocalStorage(
 | 
						|
    "timeline-preferences",
 | 
						|
    {
 | 
						|
      orderDirection: "asc",
 | 
						|
      types: ["info", "system", "comment"] as TimelineEventType[],
 | 
						|
    },
 | 
						|
    { mergeDefaults: true }
 | 
						|
    // we cast to a Ref because by default it will return an optional type ref
 | 
						|
    // but since we pass defaults we know all properties are set.
 | 
						|
  ) as unknown as Ref<UserTimelinePreferences>;
 | 
						|
 | 
						|
  return fromStorage;
 | 
						|
}
 |