diff options
author | 2022-12-17 01:30:02 +0100 | |
---|---|---|
committer | 2022-12-17 01:30:02 +0100 | |
commit | 4cd809bd0c94836532f58a2ec6aa131694cce10d (patch) | |
tree | 7a2f5f61c3101a3c0761cc32b67a7f9ad67222e5 /src/components/FavoriteButton.vue | |
parent | 8d09086e78b6de1eb7108b8d3ba08fcca2c5d577 (diff) | |
download | it-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.tar.gz it-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.tar.zst it-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.zip |
feat(tools): added favorite tool handling
Diffstat (limited to 'src/components/FavoriteButton.vue')
-rw-r--r-- | src/components/FavoriteButton.vue | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/components/FavoriteButton.vue b/src/components/FavoriteButton.vue new file mode 100644 index 0000000..26791f3 --- /dev/null +++ b/src/components/FavoriteButton.vue @@ -0,0 +1,40 @@ +<template> + <n-tooltip trigger="hover"> + <template #trigger> + <n-button circle quaternary :type="buttonType" :style="{ opacity: isFavorite ? 1 : 0.2 }" @click="toggleFavorite"> + <template #icon> + <n-icon :component="FavoriteFilled" /> + </template> + </n-button> + </template> + {{ isFavorite ? 'Remove from favorites' : 'Add to favorites' }} + </n-tooltip> +</template> + +<script setup lang="ts"> +import { FavoriteFilled } from '@vicons/material'; +import { useToolStore } from '@/tools/tools.store'; +import type { Tool } from '@/tools/tools.types'; +import { computed, toRefs } from 'vue'; + +const toolStore = useToolStore(); + +const props = defineProps<{ tool: Tool }>(); +const { tool } = toRefs(props); + +const isFavorite = computed(() => toolStore.isToolFavorite({ tool })); +const buttonType = computed(() => (isFavorite.value ? 'primary' : 'default')); + +function toggleFavorite(event: MouseEvent) { + event.preventDefault(); + + if (toolStore.isToolFavorite({ tool })) { + toolStore.removeToolFromFavorites({ tool }); + return; + } + + toolStore.addToolToFavorites({ tool }); +} +</script> + +<style scoped></style> |