feature:最新文章排序调整,适配夜间模式

This commit is contained in:
tangly1024
2021-11-03 16:24:58 +08:00
parent 3fcbb8a420
commit ab375a3cdc
3 changed files with 9 additions and 6 deletions

View File

@@ -48,10 +48,12 @@ async function getPostsFromNotionAPI ({ from }) {
for (let i = 0; i < pageIds.length; i++) {
const id = pageIds[i]
const properties = (await getPageProperties(id, block, schema)) || null
// Add fullwidth, createdtime to properties
properties.createdTime = new Date(
block[id].value?.created_time
).toString()
properties.lastEditedTime = new Date(
block[id].value?.last_edited_time
).toString()
properties.fullWidth = block[id].value?.format?.page_full_width ?? false
properties.page_cover = getPostCover(id, block, pageRecordMap) ?? getContentFirstImage(id, block, pageRecordMap)
properties.content = block[id].value?.content ?? []