From 89145ceca8af095aa0a7335537b700c9fbd1a92e Mon Sep 17 00:00:00 2001 From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Date: Sun, 9 Mar 2025 15:32:18 +0000 Subject: [PATCH] refactor: auto format --- src/components/Article/Article.jsx | 2 +- src/components/Footer/Footer.jsx | 3 +- src/components/Resume/Resume.jsx | 16 +++++---- .../StaticContentList/StaticContentList.jsx | 36 +++++++++---------- src/layouts/DefaultLayout/DefaultLayout.jsx | 2 +- src/lib/content.js | 10 +++--- src/pages/_document.js | 2 +- src/pages/about/index.js | 6 ++-- src/pages/cv/index.js | 4 +-- src/pages/index.js | 6 ++-- src/pages/writing/index.js | 7 ++-- 11 files changed, 47 insertions(+), 47 deletions(-) diff --git a/src/components/Article/Article.jsx b/src/components/Article/Article.jsx index 7d19e4b..a04043f 100644 --- a/src/components/Article/Article.jsx +++ b/src/components/Article/Article.jsx @@ -3,7 +3,7 @@ import { NextSeo } from 'next-seo' import Link from 'next/link' import React from 'react' -function Article({ attributes, html }) { +function Article ({ attributes, html }) { return ( <>

{attributes.title}

diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index b16009c..22830f0 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -2,7 +2,7 @@ import React from 'react' import style from './Footer.module.css' -function Footer() { +function Footer () { return ( ) } diff --git a/src/components/Resume/Resume.jsx b/src/components/Resume/Resume.jsx index d499d47..0d157e8 100644 --- a/src/components/Resume/Resume.jsx +++ b/src/components/Resume/Resume.jsx @@ -2,7 +2,7 @@ import React from 'react' import style from './Resume.module.css' -function Resume({ +function Resume ({ competencies, education, certifications, @@ -17,14 +17,16 @@ function Resume({
  • {e.position}
  • - )} + )} + +
  • Competencies
  • Certifications
  • Languages
  • Education
  • -

    Professional experience

    +

    Professional experience

    {experience.map((exp, i) => (
    -

    Competencies

    +

    Competencies

      {competencies.sort().map((c, i) => (
    • {c}
    • ))}
    -

    Certifications

    +

    Certifications

      {certifications.sort().map((c, i) => (
    • {c}
    • @@ -70,9 +72,9 @@ function Resume({ ) } -export default Resume; +export default Resume -function WorkExperience({ position, employer, start, end, children }) { +function WorkExperience ({ position, employer, start, end, children }) { return (
      diff --git a/src/components/StaticContentList/StaticContentList.jsx b/src/components/StaticContentList/StaticContentList.jsx index b1dccd4..64d7ddd 100644 --- a/src/components/StaticContentList/StaticContentList.jsx +++ b/src/components/StaticContentList/StaticContentList.jsx @@ -1,19 +1,19 @@ -import { formatDate } from "@/lib/helpers"; -import Link from "next/link"; +import { formatDate } from '@/lib/helpers' +import Link from 'next/link' -export default function StaticContentList({ entries, urlPrefix }) { - return ( - - - {entries.map((e) => ( - - - - - ))} - -
      {!!e.attributes.pubdate && {formatDate(e.attributes.pubdate)}} - {e.attributes.title} -
      - ) -} \ No newline at end of file +export default function StaticContentList ({ entries, urlPrefix }) { + return ( + + + {entries.map((e) => ( + + + + + ))} + +
      {!!e.attributes.pubdate && {formatDate(e.attributes.pubdate)}} + {e.attributes.title} +
      + ) +} diff --git a/src/layouts/DefaultLayout/DefaultLayout.jsx b/src/layouts/DefaultLayout/DefaultLayout.jsx index 8800832..6ca6d73 100644 --- a/src/layouts/DefaultLayout/DefaultLayout.jsx +++ b/src/layouts/DefaultLayout/DefaultLayout.jsx @@ -10,7 +10,7 @@ function DefaultLayout ({ children }) {
      - +
      diff --git a/src/lib/content.js b/src/lib/content.js index 18d4ad3..fe61b97 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -52,11 +52,11 @@ export function getStaticEntryProps (contentPath, { params }) { return { props: { ...entry, attributes } } } -export function getStaticEntries(contentPath) { - const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true }); +export function getStaticEntries (contentPath) { + const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true }) return directoryItems.map((dirent) => getMarkdownEntry(`${dirent.path}/${dirent.name}`) - ).sort((a, b) => + ).sort((a, b) => new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime() - ); -} \ No newline at end of file + ) +} diff --git a/src/pages/_document.js b/src/pages/_document.js index 91f23cc..5a6677e 100644 --- a/src/pages/_document.js +++ b/src/pages/_document.js @@ -4,7 +4,7 @@ export default function Document () { return ( - +
      diff --git a/src/pages/about/index.js b/src/pages/about/index.js index 0374c96..c0dfdd3 100644 --- a/src/pages/about/index.js +++ b/src/pages/about/index.js @@ -1,7 +1,7 @@ -import ExternalLink from "@/components/ExternalLink/ExternalLink"; -import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout"; +import ExternalLink from '@/components/ExternalLink/ExternalLink' +import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' -export default function About() { +export default function About () { return (

      About me

      diff --git a/src/pages/cv/index.js b/src/pages/cv/index.js index 03dc443..412477c 100644 --- a/src/pages/cv/index.js +++ b/src/pages/cv/index.js @@ -20,11 +20,11 @@ function ResumePage ({ -

      {Title}

      +

      {Title}

      ({ props: { - postEntries: getStaticEntries("content/writing") + postEntries: getStaticEntries('content/writing') } }) -export default function Home({ postEntries }) { +export default function Home ({ postEntries }) { return ( @@ -33,7 +33,7 @@ export default function Home({ postEntries }) {

      Recent posts

      - +
      diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js index 63ad507..dc4957f 100644 --- a/src/pages/writing/index.js +++ b/src/pages/writing/index.js @@ -6,28 +6,27 @@ import StaticContentList from '@/components/StaticContentList/StaticContentList' export const getStaticProps = () => ({ props: { - postEntries: getStaticEntries("./content/writing") + postEntries: getStaticEntries('./content/writing') } }) export const Title = 'Writing' export default function Writing ({ postEntries }) { - return (

      {Title}

      - +
      )