fix(theme): 文件未添加到git时最后更新时间计算错误

This commit is contained in:
pengzhanbo 2024-03-29 02:41:40 +08:00
parent c2fc5ad7b1
commit c554001df3
2 changed files with 12 additions and 10 deletions

View File

@ -193,7 +193,7 @@ onContentUpdated(() => zoom?.refresh())
@media (min-width: 1440px) {
.plume-page:not(.has-sidebar) .content {
max-width: 784px;
max-width: 884px;
}
.plume-page:not(.has-sidebar) .container {

View File

@ -60,8 +60,8 @@ export function useLastUpdated() {
const frontmatter = usePageFrontmatter<PlumeThemePageFrontmatter>()
const lang = usePageLang()
const date = computed(() => new Date(page.value.git?.updatedTime ?? ''))
const isoDatetime = computed(() => date.value.toISOString())
const date = computed(() => page.value.git?.updatedTime ? new Date(page.value.git.updatedTime) : null)
const isoDatetime = computed(() => date.value?.toISOString())
const datetime = ref('')
@ -76,13 +76,15 @@ export function useLastUpdated() {
if (frontmatter.value.lastUpdated === false || theme.value.lastUpdated === false)
return
datetime.value = new Intl.DateTimeFormat(
theme.value.lastUpdated?.formatOptions?.forceLocale ? lang.value : undefined,
theme.value.lastUpdated?.formatOptions ?? {
dateStyle: 'short',
timeStyle: 'short',
},
).format(date.value)
datetime.value = date.value
? new Intl.DateTimeFormat(
theme.value.lastUpdated?.formatOptions?.forceLocale ? lang.value : undefined,
theme.value.lastUpdated?.formatOptions ?? {
dateStyle: 'short',
timeStyle: 'short',
},
).format(date.value)
: ''
})
})