diff --git a/src/utils/data/links.js b/src/utils/data/links.js index 151d146..ede00a2 100644 --- a/src/utils/data/links.js +++ b/src/utils/data/links.js @@ -1,3 +1,4 @@ +import { isBefore } from "date-fns"; import { createClient } from "@supabase/supabase-js"; import { CACHE_DURATION } from "@utils/constants/index.js"; @@ -32,7 +33,11 @@ export async function fetchLinks() { if (data.length < PAGE_SIZE) fetchMore = false; - links = links.concat(data); + const filteredData = data.filter((link) => + isBefore(new Date(link.date), now) + ); + + links = links.concat(filteredData); page++; } diff --git a/src/utils/data/posts.js b/src/utils/data/posts.js index 00fc93c..4caccdf 100644 --- a/src/utils/data/posts.js +++ b/src/utils/data/posts.js @@ -1,3 +1,4 @@ +import { isBefore } from "date-fns"; import { createClient } from "@supabase/supabase-js"; import { CACHE_DURATION } from "@utils/constants/index.js"; @@ -29,7 +30,11 @@ export async function fetchAllPosts() { if (data.length < PAGE_SIZE) fetchMore = false; - posts = posts.concat(data); + const filteredData = data.filter((post) => + isBefore(new Date(post.date), now) + ); + + posts = posts.concat(filteredData); page++; } @@ -38,31 +43,3 @@ export async function fetchAllPosts() { return posts; } - -let cachedPostByUrl = {}; -let lastFetchTimeByUrl = {}; - -export async function fetchPostByUrl(url) { - const now = Date.now(); - - if ( - cachedPostByUrl[url] && - lastFetchTimeByUrl[url] && - now - lastFetchTimeByUrl[url] < CACHE_DURATION - ) { - return cachedPostByUrl[url]; - } - - const { data: post, error } = await supabase - .from("optimized_posts") - .select("*") - .eq("url", url) - .limit(1); - - if (error || !post.length) return null; - - cachedPostByUrl[url] = post[0]; - lastFetchTimeByUrl[url] = now; - - return post[0]; -} diff --git a/src/utils/data/static/sitemapData.json b/src/utils/data/static/sitemapData.json index 54133da..6cbd3c1 100644 --- a/src/utils/data/static/sitemapData.json +++ b/src/utils/data/static/sitemapData.json @@ -950,6 +950,9 @@ { "loc": "https://coryd.dev/posts/2018/fugazi-turnover-live-1991" }, + { + "loc": "https://coryd.dev/posts/2024/moving-my-frontend-to-astro" + }, { "loc": "https://coryd.dev/posts/2024/your-new-tool-will-be-used-in-the-worst-possible-way" },