feat: post scheduling
This commit is contained in:
parent
d5a4f83f6f
commit
9e72e0436f
3 changed files with 15 additions and 30 deletions
|
@ -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++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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];
|
|
||||||
}
|
|
||||||
|
|
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue