2022-09-30 19:23:14 +02:00
|
|
|
import type { NextPage } from "next";
|
2022-10-16 00:05:44 +02:00
|
|
|
import Layout from "../components/Blog/Layout";
|
2022-10-18 17:38:11 +02:00
|
|
|
import type { ContentList, Project, Diary } from "../lib/content/types";
|
2022-09-30 19:23:14 +02:00
|
|
|
import ProjectCard from "../components/Blog/Card";
|
2022-10-08 13:37:28 +02:00
|
|
|
import { getContentList } from "../lib/content/generateBackend";
|
2022-10-07 23:03:39 +02:00
|
|
|
|
2022-10-01 14:04:21 +02:00
|
|
|
import styles from "../styles/Blog/Front.module.scss";
|
2021-11-30 23:48:54 +01:00
|
|
|
|
2022-10-18 17:38:11 +02:00
|
|
|
// https://stackoverflow.com/a/6274381
|
|
|
|
function shuffle(a: any[]) {
|
|
|
|
for (let i = a.length - 1; i > 0; i--) {
|
|
|
|
const j = Math.floor(Math.random() * (i + 1));
|
|
|
|
[a[i], a[j]] = [a[j], a[i]];
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2022-10-03 01:20:17 +02:00
|
|
|
const Blog: NextPage<{ content: ContentList }> = ({content}) => {
|
2022-10-18 17:38:11 +02:00
|
|
|
const clearDescription = (description: string) => {
|
|
|
|
const linkRegex = /#%\{([a-z0-9 \.-\/:]*)\|([a-z0-9 \/:\.-]*)\}/ig;
|
|
|
|
const cmdRegex = /%\{([a-z0-9 \.-\/:]*)}/ig;
|
|
|
|
|
|
|
|
return description.replace(linkRegex, "$1").replace(cmdRegex, "\"$1\"");
|
|
|
|
};
|
|
|
|
|
2022-09-30 19:38:25 +02:00
|
|
|
const generateCards = (type: string) => {
|
2022-10-18 17:38:11 +02:00
|
|
|
return <div className={styles.contentList}>{
|
|
|
|
(shuffle(content.filter(p => p.type === type)) as (Project|Diary)[])
|
|
|
|
.map(p =>
|
|
|
|
<ProjectCard key={p.name} title={p.title} description={clearDescription(p.desc.join(" "))} type={p.type} name={p.name} />
|
|
|
|
)}
|
|
|
|
</div>;
|
2022-09-30 19:38:25 +02:00
|
|
|
};
|
|
|
|
|
2022-10-18 23:40:09 +02:00
|
|
|
return <Layout>
|
|
|
|
<h1>Hello there!</h1>
|
|
|
|
<p>Miaumiau Lorem ipsum</p>
|
|
|
|
<h2>Projects</h2>
|
|
|
|
{ generateCards("project") }
|
|
|
|
<h2>Diaries</h2>
|
|
|
|
{ generateCards("diary") }
|
|
|
|
</Layout>;
|
2022-09-30 19:23:14 +02:00
|
|
|
|
2022-06-14 19:07:21 +02:00
|
|
|
};
|
|
|
|
|
2022-10-03 01:20:17 +02:00
|
|
|
export async function getServerSideProps() {
|
2022-10-08 13:37:28 +02:00
|
|
|
return { props: { content: await getContentList() } };
|
2022-10-03 01:20:17 +02:00
|
|
|
}
|
|
|
|
|
2022-09-30 19:23:14 +02:00
|
|
|
export default Blog;
|