feat: post scheduling

This commit is contained in:
Cory Dransfeldt 2024-11-26 14:30:04 -08:00
parent d5a4f83f6f
commit 9e72e0436f
No known key found for this signature in database
3 changed files with 15 additions and 30 deletions

View file

@ -1,3 +1,4 @@
import { isBefore } from "date-fns";
import { createClient } from "@supabase/supabase-js"; import { createClient } from "@supabase/supabase-js";
import { CACHE_DURATION } from "@utils/constants/index.js"; import { CACHE_DURATION } from "@utils/constants/index.js";
@ -32,7 +33,11 @@ export async function fetchLinks() {
if (data.length < PAGE_SIZE) fetchMore = false; 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++; page++;
} }

View file

@ -1,3 +1,4 @@
import { isBefore } from "date-fns";
import { createClient } from "@supabase/supabase-js"; import { createClient } from "@supabase/supabase-js";
import { CACHE_DURATION } from "@utils/constants/index.js"; import { CACHE_DURATION } from "@utils/constants/index.js";
@ -29,7 +30,11 @@ export async function fetchAllPosts() {
if (data.length < PAGE_SIZE) fetchMore = false; 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++; page++;
} }
@ -38,31 +43,3 @@ export async function fetchAllPosts() {
return posts; 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];
}

View file

@ -950,6 +950,9 @@
{ {
"loc": "https://coryd.dev/posts/2018/fugazi-turnover-live-1991" "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" "loc": "https://coryd.dev/posts/2024/your-new-tool-will-be-used-in-the-worst-possible-way"
}, },