Files
artchat/app/components/tool/Weather.vue

69 lines
2.2 KiB
Vue

<script setup lang="ts">
import type { Weather } from '~~/types'
const { t } = useI18n()
const { data: weather } = await useAsyncData<Weather>('weather', () =>
$fetch('/api/weather'))
</script>
<template>
<UCard v-if="weather" variant="outline" class="md:max-w-2/3 m-1 shadow-sm bg-white dark:bg-neutral-900">
<template #header>
<div class="flex gap-4 items-center">
<UIcon name="i-ph-cloud-duotone" size="24" />
<h3 class="text-lg font-semibold">
{{ t('tool.weather.main') }}
</h3>
</div>
</template>
<template #default>
<h3 class="text-2xl font-bold">
{{ weather.location }}
</h3>
<div class="flex items-end gap-2">
<span class="text-5xl font-bold">{{ weather.temperature }}°C</span>
<span class="capitalize text-lg">{{ weather.description }}</span>
</div>
<div class="grid grid-cols-3 gap-2 mt-4">
<div class="bg-zinc-200 dark:bg-zinc-800 rounded-md p-2 text-center">
<p class="text-sm text-zinc-800 dark:text-zinc-400">
{{ t('tool.weather.high') }}
</p>
<p class="font-semibold">
{{ weather.temp_max }}°C
</p>
</div>
<div class="bg-zinc-200 dark:bg-zinc-800 rounded-md p-2 text-center">
<p class="text-sm text-zinc-800 dark:text-zinc-400">
{{ t('tool.weather.low') }}
</p>
<p class="font-semibold">
{{ weather.temp_min }}°C
</p>
</div>
<div class="bg-zinc-200 dark:bg-zinc-800 rounded-md p-2 text-center">
<p class="text-sm text-zinc-800 dark:text-zinc-400">
{{ t('tool.weather.humidity') }}
</p>
<p class="font-semibold">
{{ weather.humidity }}%
</p>
</div>
</div>
</template>
<template #footer>
<div class="flex items-center justify-between">
<p class="text-sm text-zinc-600 dark:text-zinc-400">
{{ t('tool.weather.wind') }}: {{ weather.wind }} km/h
</p>
<p class="text-sm text-zinc-600 dark:text-zinc-400">
{{ t('tool.weather.powered_by') }}
</p>
</div>
</template>
</UCard>
</template>