mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-05 17:22:28 +08:00
44 lines
1.3 KiB
Vue
44 lines
1.3 KiB
Vue
|
|
<template>
|
||
|
|
<Card class="p-4 !overflow-visible">
|
||
|
|
<div class="flex items-center justify-between mb-3">
|
||
|
|
<p class="text-sm font-semibold">{{ title }}</p>
|
||
|
|
<div v-if="hasData" class="flex items-center gap-1 text-[11px] text-muted-foreground flex-shrink-0">
|
||
|
|
<span class="flex-shrink-0">少</span>
|
||
|
|
<div
|
||
|
|
v-for="(level, index) in legendLevels"
|
||
|
|
:key="index"
|
||
|
|
class="w-3 h-3 rounded-[3px] flex-shrink-0"
|
||
|
|
:style="{ backgroundColor: `rgba(var(--color-primary-rgb), ${level})` }"
|
||
|
|
/>
|
||
|
|
<span class="flex-shrink-0">多</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<ActivityHeatmap
|
||
|
|
v-if="hasData"
|
||
|
|
:data="data"
|
||
|
|
:show-header="false"
|
||
|
|
/>
|
||
|
|
<div v-else class="h-full min-h-[160px] flex items-center justify-center text-sm text-muted-foreground">
|
||
|
|
暂无活跃数据
|
||
|
|
</div>
|
||
|
|
</Card>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { computed } from 'vue'
|
||
|
|
import Card from '@/components/ui/card.vue'
|
||
|
|
import ActivityHeatmap from '@/components/stats/ActivityHeatmap.vue'
|
||
|
|
import type { ActivityHeatmap as ActivityHeatmapData } from '@/types/activity'
|
||
|
|
|
||
|
|
const props = defineProps<{
|
||
|
|
data: ActivityHeatmapData | null
|
||
|
|
title: string
|
||
|
|
}>()
|
||
|
|
|
||
|
|
const legendLevels = [0.08, 0.25, 0.45, 0.65, 0.85]
|
||
|
|
|
||
|
|
const hasData = computed(() =>
|
||
|
|
props.data && props.data.days && props.data.days.length > 0
|
||
|
|
)
|
||
|
|
</script>
|