mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-tooltip
 | 
						|
    location="bottom"
 | 
						|
    nudge-right="50"
 | 
						|
    :color="buttonStyle ? 'info' : 'secondary'"
 | 
						|
  >
 | 
						|
    <template #activator="{ props: tooltipProps }">
 | 
						|
      <v-btn
 | 
						|
        v-if="isFavorite || showAlways"
 | 
						|
        icon
 | 
						|
        :variant="buttonStyle ? 'flat' : undefined"
 | 
						|
        :rounded="buttonStyle ? 'circle' : undefined"
 | 
						|
        size="small"
 | 
						|
        :color="buttonStyle ? 'info' : 'secondary'"
 | 
						|
        :fab="buttonStyle"
 | 
						|
        v-bind="{ ...tooltipProps, ...$attrs }"
 | 
						|
        @click.prevent="toggleFavorite"
 | 
						|
      >
 | 
						|
        <v-icon
 | 
						|
          :size="!buttonStyle ? undefined : 'x-large'"
 | 
						|
          :color="buttonStyle ? 'white' : 'secondary'"
 | 
						|
        >
 | 
						|
          {{ isFavorite ? $globals.icons.heart : $globals.icons.heartOutline }}
 | 
						|
        </v-icon>
 | 
						|
      </v-btn>
 | 
						|
    </template>
 | 
						|
    <span>{{ isFavorite ? $t("recipe.remove-from-favorites") : $t("recipe.add-to-favorites") }}</span>
 | 
						|
  </v-tooltip>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup lang="ts">
 | 
						|
import { useUserSelfRatings } from "~/composables/use-users";
 | 
						|
import { useUserApi } from "~/composables/api";
 | 
						|
 | 
						|
interface Props {
 | 
						|
  recipeId?: string;
 | 
						|
  showAlways?: boolean;
 | 
						|
  buttonStyle?: boolean;
 | 
						|
}
 | 
						|
const props = withDefaults(defineProps<Props>(), {
 | 
						|
  recipeId: "",
 | 
						|
  showAlways: false,
 | 
						|
  buttonStyle: false,
 | 
						|
});
 | 
						|
 | 
						|
const api = useUserApi();
 | 
						|
const $auth = useMealieAuth();
 | 
						|
const { userRatings, refreshUserRatings } = useUserSelfRatings();
 | 
						|
 | 
						|
const isFavorite = computed(() => {
 | 
						|
  const rating = userRatings.value.find(r => r.recipeId === props.recipeId);
 | 
						|
  return rating?.isFavorite || false;
 | 
						|
});
 | 
						|
 | 
						|
async function toggleFavorite() {
 | 
						|
  if (!$auth.user.value) return;
 | 
						|
  if (!isFavorite.value) {
 | 
						|
    await api.users.addFavorite($auth.user.value?.id, props.recipeId);
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    await api.users.removeFavorite($auth.user.value?.id, props.recipeId);
 | 
						|
  }
 | 
						|
  await refreshUserRatings();
 | 
						|
}
 | 
						|
</script>
 |