chore: access pattern consistency
This commit is contained in:
parent
1c75acb37e
commit
6e206cdf47
6 changed files with 8 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.0.0",
|
"version": "21.0.1",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -19,8 +19,8 @@ const fetchAllBadges = async () => {
|
||||||
|
|
||||||
const transformedData = data.map(badge => ({
|
const transformedData = data.map(badge => ({
|
||||||
...badge,
|
...badge,
|
||||||
image: badge.image?.filename_disk || '',
|
image: badge.image?.['filename_disk'] || '',
|
||||||
})).sort((a, b) => a.sort - b.sort)
|
})).sort((a, b) => a['sort'] - b['sort'])
|
||||||
|
|
||||||
return transformedData
|
return transformedData
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ const fetchBlogroll = async () => {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
return data.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()))
|
return data.sort((a, b) => a['name'].toLowerCase().localeCompare(b['name'].toLowerCase()))
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function () {
|
export default async function () {
|
||||||
|
|
|
@ -69,7 +69,7 @@ const aggregateData = (data, groupByField, groupByType, genreMapping) => {
|
||||||
aggregation[key].plays++
|
aggregation[key].plays++
|
||||||
})
|
})
|
||||||
|
|
||||||
return Object.values(aggregation).sort((a, b) => b.plays - a.plays).map((item, index) => ({ ...item, rank: index + 1 }))
|
return Object.values(aggregation).sort((a, b) => b['plays'] - a['plays']).map((item, index) => ({ ...item, rank: index + 1 }))
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildRecents = (data) => {
|
const buildRecents = (data) => {
|
||||||
|
|
|
@ -3,7 +3,6 @@ import { createClient } from '@supabase/supabase-js'
|
||||||
const SUPABASE_URL = process.env.SUPABASE_URL
|
const SUPABASE_URL = process.env.SUPABASE_URL
|
||||||
const SUPABASE_KEY = process.env.SUPABASE_KEY
|
const SUPABASE_KEY = process.env.SUPABASE_KEY
|
||||||
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
||||||
|
|
||||||
const PAGE_SIZE = 100
|
const PAGE_SIZE = 100
|
||||||
|
|
||||||
const fetchAllRobots = async () => {
|
const fetchAllRobots = async () => {
|
||||||
|
@ -26,7 +25,7 @@ const fetchAllRobots = async () => {
|
||||||
from += PAGE_SIZE
|
from += PAGE_SIZE
|
||||||
}
|
}
|
||||||
|
|
||||||
return robots.map(robot => robot.user_agent).sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
|
return robots.map(robot => robot['user_agent']).sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function () {
|
export default async function () {
|
||||||
|
|
|
@ -129,7 +129,7 @@ export default async function () {
|
||||||
try {
|
try {
|
||||||
const rawShows = await fetchAllShows()
|
const rawShows = await fetchAllShows()
|
||||||
const shows = rawShows.map(prepareShowData)
|
const shows = rawShows.map(prepareShowData)
|
||||||
const episodes = shows.flatMap(prepareEpisodeData).sort((a, b) => new Date(b.last_watched_at) - new Date(a.last_watched_at))
|
const episodes = shows.flatMap(prepareEpisodeData).sort((a, b) => new Date(b['last_watched_at']) - new Date(a['last_watched_at']))
|
||||||
|
|
||||||
const favoriteShows = shows.filter(show => show.favorite)
|
const favoriteShows = shows.filter(show => show.favorite)
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@ export default async function () {
|
||||||
shows,
|
shows,
|
||||||
watchHistory: formatEpisodeData(episodes),
|
watchHistory: formatEpisodeData(episodes),
|
||||||
recentlyWatched: formatEpisodeData(episodes.slice(0, 225)),
|
recentlyWatched: formatEpisodeData(episodes.slice(0, 225)),
|
||||||
favorites: formatEpisodeData(favoriteShows.flatMap(prepareEpisodeData)).sort((a, b) => a.name.localeCompare(b.name)),
|
favorites: formatEpisodeData(favoriteShows.flatMap(prepareEpisodeData)).sort((a, b) => a['name'].localeCompare(b['name'])),
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error fetching and processing shows data:', error)
|
console.error('Error fetching and processing shows data:', error)
|
||||||
|
|
Reference in a new issue