Refactor job data handling and improve component structure
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good

This commit is contained in:
Roman Jaroš 2025-01-11 19:50:59 +00:00
parent 17f94d44f7
commit 48c74074df
7 changed files with 30 additions and 24 deletions

View file

@ -2,7 +2,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
}
module.exports = nextConfig

View file

@ -1,4 +1,4 @@
import {Card} from "../../components/Skills";
import {Card} from "../../components/Card";
export const AboutMe = () => {
const age = Math.floor(

View file

@ -1,24 +1,18 @@
import {MapPinIcon, MoveRightIcon} from "lucide-react";
import {notNil} from "../../utils";
import {Job} from "../type";
import {FC} from "react";
type Job = {
name: string,
started: string,
ended: string,
description: string,
tags: string[],
link?: string
type JobsProps = {
jobs: Job[] | undefined
}
export const Jobs = async () => {
const res = await fetch("http://localhost:3000/jobs.json")
const data: Job[] | undefined = await res?.json();
export const Jobs: FC<JobsProps> = ({jobs}) => {
return (
<>
<section className="px-4">
<ol className="relative border-s border-gray-200 dark:border-gray-700">
{data?.filter(notNil).map(({name, started, ended, description, tags, link}, index) => (
{jobs?.filter(notNil).map(({name, started, ended, description, tags, link}, index) => (
<li key={index} className="mb-10 ms-6">
<span
className="absolute flex items-center justify-center w-6 h-6 bg-white rounded-full -start-3 ring-8 ring-white dark:ring-slate-800 dark:bg-slate-800">
@ -39,7 +33,7 @@ export const Jobs = async () => {
target="_blank"
className="inline-flex gap-2 mb-4 items-center px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg hover:bg-gray-100 hover:text-blue-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700">
Visit website
<MoveRightIcon />
<MoveRightIcon/>
</a>
</p>
}

View file

@ -1,15 +1,15 @@
import {notNil} from "../../utils";
import {StarIcon} from "lucide-react";
import {FC} from "react";
import {Job} from "../type";
type Job = {
tags: string[]
type SkillsProps = {
jobs: Job[] | undefined
}
export const Skills = async () => {
const res = await fetch("http://localhost:3000/jobs.json")
const data: Job[] | undefined = await res?.json();
export const Skills: FC<SkillsProps> = ({jobs}) => {
const skills = new Set(data?.filter(notNil).flatMap(({tags}) => tags).sort());
const skills = new Set(jobs?.filter(notNil).flatMap(({tags}) => tags).sort());
return (
<>

View file

@ -4,16 +4,21 @@ import {Contact} from "./components/Contact";
import {Footer} from "./components/Footer";
import {Jobs} from "./components/Jobs";
import {Skills} from "./components/Skills";
import {Job} from "./type";
export default async function Page() {
const res = await fetch("http://localhost:3000/jobs.json", {cache: "no-store"})
const data: Job[] | undefined = await res?.json();
export default function Page() {
return (
<>
<div className="flex flex-col gap-y-16 md:w-3/4 lg:w-2/3 mx-auto p-4 mb-20">
<Title />
<AboutMe />
<Contact />
<Skills />
<Jobs />
<Skills jobs={data} />
<Jobs jobs={data} />
<Footer />
</div>
</>

8
src/app/type.ts Normal file
View file

@ -0,0 +1,8 @@
export type Job = {
name: string;
started: string;
ended: string;
description: string;
tags: string[];
link?: string;
}