aboutsummaryrefslogtreecommitdiff
path: root/src/components/ToolCard.vue
blob: 7a05db97b4b8f08806c9f909679f337b8792a5bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<template>
  <router-link :to="tool.path">
    <n-card class="tool-card">
      <n-space justify="space-between" align="center">
        <n-icon class="icon" size="40" :component="tool.icon" />
        <n-tag
          v-if="tool.isNew"
          size="small"
          class="badge-new"
          round
          type="success"
          :bordered="false"
          :color="{ color: theme.primaryColor, textColor: theme.tagColor }"
        >
          New
        </n-tag>
      </n-space>
      <n-h3 class="title">
        <n-ellipsis>{{ tool.name }}</n-ellipsis>
      </n-h3>

      <div class="description">
        <n-ellipsis :line-clamp="2" :tooltip="false">
          {{ tool.description }}
        </n-ellipsis>
      </div>
    </n-card>
  </router-link>
</template>

<script setup lang="ts">
import type { ITool } from '@/tools/tool';
import { useThemeVars } from 'naive-ui';
import { toRefs } from 'vue';

const props = defineProps<{ tool: ITool & { category: string } }>();
const { tool } = toRefs(props);
const theme = useThemeVars();
</script>

<style lang="less" scoped>
a {
  text-decoration: none;
}

.tool-card {
  &:hover {
    border-color: var(--n-color-target);
  }

  .icon {
    opacity: 0.6;
    color: #ffffff;
  }

  .title {
    margin: 5px 0;
  }

  .description {
    opacity: 0.6;
    color: #ffffff;
    margin: 5px 0;
  }
}
</style>