/** * ============================================================================== * Imports * ============================================================================== */ import React from "react"; import Head from "next/head"; // const contentful = require('contentful'); /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ import GeneralLayout from "../../layouts/general_layout/GeneralLayout"; import TextShuffler from "../../components/actions/TextShuffler"; import httpFetch from "../../functions/backend/httpFetch"; /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * ============================================================================== * Main Component { Functional } * ============================================================================== * @param {Object} props - Server props */ export default function BlogIndex(props) { /** * Get Contexts * * @abstract { React.useContext } */ /** ********************************************** */ /** * Javascript Variables * * @abstract Non hook variables and functions */ /** ********************************************** */ /** * React Hooks * * @abstract { useState, useEffect, useRef, etc ... } */ /** ********************************************** */ /** * Function Return * * @abstract Main Function Return */ return ( Blog | Tben.me

{ props.blogPosts.map(post =>

) }
); /** ********************************************** */ }; /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * ============================================================================== * Server Side Props or Static Props * ============================================================================== * @param {Object} req - http incoming request object * @param {Object} res - http response object * @param {Object} query - queries attached to the url */ export async function getStaticProps({ req, res, query }) { /** * User Auth * * @abstract grab user */ // const contentfulClient = contentful.createClient({ // space: process.env.CONTENTFUL_SPACE_ID, // accessToken: process.env.CONTENTFUL_API_KEY, // }); // const posts = await contentfulClient.getEntries() // console.log(posts); /** ********************************************** */ /** * Data fetching * * @abstract fetch date from the server or externnal source */ // let blogPosts = await httpFetch({ // options: { // method:"DELETE", // path: "/api/tben-blogs" // }, // paradigm:"https" // }) // console.log(blogPosts.data); /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ // ## Server Props Return return { props: { blogPosts: [], }, }; /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ }