personal-site/pages/blog/index.tsx

162 lines
5.7 KiB
TypeScript
Raw Normal View History

2022-06-10 07:49:12 +00:00
/**
* ==============================================================================
* Imports
* ==============================================================================
*/
import React from "react";
import Head from "next/head";
2022-06-20 05:09:28 +00:00
2023-07-19 14:49:15 +00:00
import type { InferGetStaticPropsType, GetStaticProps, GetStaticPropsContext } from "next";
const datasquirel = require("datasquirel");
2022-06-10 07:49:12 +00:00
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */
import GeneralLayout from "../../layouts/general_layout/GeneralLayout";
import TextShuffler from "../../components/actions/TextShuffler";
2022-07-27 17:16:37 +00:00
// import httpFetch from "../../functions/backend/httpFetch";
2022-06-10 07:49:12 +00:00
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/**
* ==============================================================================
* Main Component { Functional }
* ==============================================================================
* @param {Object} props - Server props
*/
2023-07-19 14:49:15 +00:00
export default function BlogIndex(props: InferGetStaticPropsType<typeof getStaticProps>) {
2022-06-20 05:09:28 +00:00
/**
* Get Contexts
*
* @abstract { React.useContext }
*/
2022-06-10 07:49:12 +00:00
/** ********************************************** */
2022-06-20 05:09:28 +00:00
/**
* Javascript Variables
*
* @abstract Non hook variables and functions
*/
2022-06-10 07:49:12 +00:00
/** ********************************************** */
2022-06-20 05:09:28 +00:00
/**
* React Hooks
*
* @abstract { useState, useEffect, useRef, etc ... }
*/
2022-06-10 07:49:12 +00:00
/** ********************************************** */
2022-06-20 05:09:28 +00:00
/**
* Function Return
*
* @abstract Main Function Return
*/
2022-06-10 07:49:12 +00:00
return (
<React.Fragment>
<Head>
<title>Blog | Tben.me</title>
2023-07-19 14:49:15 +00:00
<meta
name="description"
content="Tech talks"
/>
2022-06-10 07:49:12 +00:00
</Head>
<GeneralLayout>
2023-07-19 14:49:15 +00:00
<div className="flex flex-col items-start max-w-6xl w-full">
<h1 className="mb-8">
<TextShuffler textInput="My Blog" />
</h1>
<div className="flex flex-col items-start w-full gap-4">
{props.blogPosts.map((post: { slug: string; title: string; excerpt: string; date_created: string }, index: number) => (
<a
key={index}
href={`/blog/${post.slug}`}
className="flex flex-col items-start gap-2 w-full hover:bg-blue-600 border border-solid border-white/20 p-8 transition-all bg-primary/10"
>
<h2 className="m-0">
<TextShuffler textInput={post.title} />
</h2>
<span className="opacity-80">
<TextShuffler textInput={post.excerpt} />
</span>
<span className="text-sm opacity-50">
<TextShuffler textInput={post.date_created.substring(0, 24)} />
</span>
</a>
))}
</div>
2022-06-10 07:49:12 +00:00
</div>
</GeneralLayout>
</React.Fragment>
);
2022-06-20 05:09:28 +00:00
2022-06-10 07:49:12 +00:00
/** ********************************************** */
2023-07-19 14:49:15 +00:00
}
2022-06-10 07:49:12 +00:00
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/**
* Server Side Props or Static Props
* ==============================================================================
*/
2023-07-19 14:49:15 +00:00
export const getStaticProps: GetStaticProps = async ({ params }: GetStaticPropsContext) => {
2022-06-20 05:09:28 +00:00
/**
* User Auth
*
* @abstract grab user
*/
2022-06-10 07:49:12 +00:00
/** ********************************************** */
2022-06-20 05:09:28 +00:00
/**
* Data fetching
*
* @abstract fetch date from the server or externnal source
*/
2023-07-19 14:49:15 +00:00
const postsResponse = await datasquirel.get({
key: process.env.DATASQUIREL_API_KEY,
db: "tbenme",
query: "select title,slug,excerpt,date_created from blog_posts limit 10",
2022-08-06 18:48:47 +00:00
});
if (!postsResponse.success) {
return {
redirect: {
destination: "/",
2023-07-19 14:49:15 +00:00
permanent: false,
},
};
2022-08-06 18:48:47 +00:00
}
const posts = postsResponse.payload;
2022-06-10 07:49:12 +00:00
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */
// ## Server Props Return
return {
props: {
2022-07-27 17:16:20 +00:00
blogPosts: posts,
2022-06-10 07:49:12 +00:00
},
2023-07-19 14:49:15 +00:00
revalidate: 3600,
2022-06-10 07:49:12 +00:00
};
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */
2023-07-19 14:49:15 +00:00
};