fix: dates are hard
This commit is contained in:
parent
9332b5ab2a
commit
eccf1027b8
2 changed files with 10 additions and 4 deletions
|
@ -141,7 +141,6 @@ export default {
|
||||||
// feeds
|
// feeds
|
||||||
normalizeEntries: (entries) => {
|
normalizeEntries: (entries) => {
|
||||||
const posts = []
|
const posts = []
|
||||||
if (!entries) return posts
|
|
||||||
entries.forEach((entry) => {
|
entries.forEach((entry) => {
|
||||||
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
|
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
|
||||||
const date = new Date(entry[dateKey])
|
const date = new Date(entry[dateKey])
|
||||||
|
|
|
@ -37,9 +37,6 @@ const formatData = (data) => {
|
||||||
export default async function() {
|
export default async function() {
|
||||||
try {
|
try {
|
||||||
const now = DateTime.now()
|
const now = DateTime.now()
|
||||||
|
|
||||||
if (now.weekday !== 1) return // only run on monday
|
|
||||||
|
|
||||||
const startOfWeek = now.minus({ days: now.weekday + 1 }).startOf('day')
|
const startOfWeek = now.minus({ days: now.weekday + 1 }).startOf('day')
|
||||||
const endOfWeek = now.minus({ days: now.weekday - 7 }).endOf('day')
|
const endOfWeek = now.minus({ days: now.weekday - 7 }).endOf('day')
|
||||||
const startOfWeekSeconds = startOfWeek.toSeconds()
|
const startOfWeekSeconds = startOfWeek.toSeconds()
|
||||||
|
@ -52,6 +49,16 @@ export default async function() {
|
||||||
.order('date', { ascending: false })
|
.order('date', { ascending: false })
|
||||||
.limit(10);
|
.limit(10);
|
||||||
|
|
||||||
|
if (now.weekday !== 1) return recentCharts.map(chart => {
|
||||||
|
const formattedData = formatData(JSON.parse(chart['data']))
|
||||||
|
return {
|
||||||
|
title: formattedData['content'],
|
||||||
|
description: formattedData['description'],
|
||||||
|
url: `https://coryd.dev/now?ts=${chart['week']}#artists`,
|
||||||
|
date: chart['date']
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
if (recentCharts.some(chart => chart['week'] === weekNumber)) {
|
if (recentCharts.some(chart => chart['week'] === weekNumber)) {
|
||||||
return recentCharts.map(chart => {
|
return recentCharts.map(chart => {
|
||||||
const formattedData = formatData(JSON.parse(chart['data']))
|
const formattedData = formatData(JSON.parse(chart['data']))
|
||||||
|
|
Reference in a new issue