mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, watchEffect, onMounted } from 'vue'
|
|
import { useData } from '../composables/data'
|
|
|
|
const { theme, page, frontmatter, lang } = useData()
|
|
|
|
const date = computed(
|
|
() => new Date(frontmatter.value.lastUpdated ?? page.value.lastUpdated)
|
|
)
|
|
const isoDatetime = computed(() => date.value.toISOString())
|
|
const datetime = ref('')
|
|
|
|
// set time on mounted hook to avoid hydration mismatch due to
|
|
// potential differences in timezones of the server and clients
|
|
onMounted(() => {
|
|
watchEffect(() => {
|
|
datetime.value = new Intl.DateTimeFormat(
|
|
theme.value.lastUpdated?.formatOptions?.forceLocale ? lang.value : undefined,
|
|
theme.value.lastUpdated?.formatOptions ?? {
|
|
dateStyle: 'short',
|
|
timeStyle: 'short'
|
|
}
|
|
).format(date.value)
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<p class="VPLastUpdated">
|
|
{{ theme.lastUpdated?.text || theme.lastUpdatedText || 'Last updated' }}:
|
|
<time :datetime="isoDatetime">{{ datetime }}</time>
|
|
</p>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPLastUpdated {
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--vp-c-text-2);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.VPLastUpdated {
|
|
line-height: 32px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
</style>
|