initial commit
This commit is contained in:
+121
@@ -0,0 +1,121 @@
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import matter from 'gray-matter';
|
||||
|
||||
const contentDirectory = path.join(process.cwd(), 'content');
|
||||
|
||||
export interface BlogPost {
|
||||
slug: string;
|
||||
title: string;
|
||||
date: string;
|
||||
excerpt: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export interface Project {
|
||||
slug: string;
|
||||
title: string;
|
||||
description: string;
|
||||
links?: {
|
||||
github?: string;
|
||||
live?: string;
|
||||
gitea?: string;
|
||||
};
|
||||
content: string;
|
||||
}
|
||||
|
||||
export function getBlogPosts(): BlogPost[] {
|
||||
const blogDirectory = path.join(contentDirectory, 'blog');
|
||||
|
||||
if (!fs.existsSync(blogDirectory)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const fileNames = fs.readdirSync(blogDirectory);
|
||||
const allPosts = fileNames
|
||||
.filter((fileName) => fileName.endsWith('.md'))
|
||||
.map((fileName) => {
|
||||
const slug = fileName.replace(/\.md$/, '');
|
||||
const fullPath = path.join(blogDirectory, fileName);
|
||||
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
||||
const { data, content } = matter(fileContents);
|
||||
|
||||
return {
|
||||
slug,
|
||||
title: data.title || '',
|
||||
date: data.date || '',
|
||||
excerpt: data.excerpt || '',
|
||||
content,
|
||||
};
|
||||
});
|
||||
|
||||
return allPosts.sort((a, b) => (a.date > b.date ? -1 : 1));
|
||||
}
|
||||
|
||||
export function getBlogPost(slug: string): BlogPost | null {
|
||||
const blogDirectory = path.join(contentDirectory, 'blog');
|
||||
const fullPath = path.join(blogDirectory, `${slug}.md`);
|
||||
|
||||
if (!fs.existsSync(fullPath)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
||||
const { data, content } = matter(fileContents);
|
||||
|
||||
return {
|
||||
slug,
|
||||
title: data.title || '',
|
||||
date: data.date || '',
|
||||
excerpt: data.excerpt || '',
|
||||
content,
|
||||
};
|
||||
}
|
||||
|
||||
export function getProjects(): Project[] {
|
||||
const projectsDirectory = path.join(contentDirectory, 'projects');
|
||||
|
||||
if (!fs.existsSync(projectsDirectory)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const fileNames = fs.readdirSync(projectsDirectory);
|
||||
const allProjects = fileNames
|
||||
.filter((fileName) => fileName.endsWith('.md'))
|
||||
.map((fileName) => {
|
||||
const slug = fileName.replace(/\.md$/, '');
|
||||
const fullPath = path.join(projectsDirectory, fileName);
|
||||
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
||||
const { data, content } = matter(fileContents);
|
||||
|
||||
return {
|
||||
slug,
|
||||
title: data.title || '',
|
||||
description: data.description || '',
|
||||
links: data.links,
|
||||
content,
|
||||
};
|
||||
});
|
||||
|
||||
return allProjects;
|
||||
}
|
||||
|
||||
export function getProject(slug: string): Project | null {
|
||||
const projectsDirectory = path.join(contentDirectory, 'projects');
|
||||
const fullPath = path.join(projectsDirectory, `${slug}.md`);
|
||||
|
||||
if (!fs.existsSync(fullPath)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const fileContents = fs.readFileSync(fullPath, 'utf8');
|
||||
const { data, content } = matter(fileContents);
|
||||
|
||||
return {
|
||||
slug,
|
||||
title: data.title || '',
|
||||
description: data.description || '',
|
||||
links: data.links,
|
||||
content,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user