Adds a Russian version (data/resume.ru.json, default language) with an RU/EN switch stored under the key shared with the front page and the portfolio. The top bar becomes the site-wide one (brand, Resume, Portfolio, Gitea, Contact, language, theme) with a second row of anchors for this page's sections, and the fonts move to Unbounded and Onest so the three pages share one type system. Portfolio links now point at /portfolio/. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XtcZtnG4GQA1d6mW5PNrS9
69 lines
2.8 KiB
TypeScript
69 lines
2.8 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useState } from 'react'
|
|
import type { Live, Portfolio, Project, Resume } from '@/lib/types'
|
|
import Gizmo from './Gizmo'
|
|
import Hero from './Hero'
|
|
import Projects from './Projects'
|
|
import { Contact, Education, Experience, Skills } from './Sections'
|
|
import TitleSync from './TitleSync'
|
|
import TopBar from './TopBar'
|
|
|
|
// Deployed on shanaty.ru the build points at the same-origin file; elsewhere (dev, GitHub Pages) it uses the public URL.
|
|
const DATA_URL = process.env.NEXT_PUBLIC_DATA_URL ?? 'https://shanaty.ru/data/resume.json'
|
|
const GITEA_PROFILE = 'https://git.shanaty.ru/Emil_Shanaty'
|
|
// Used until (or unless) the live data supplies the link, so the portfolio button is always there.
|
|
const PORTFOLIO_FALLBACK: Portfolio = { href: `${process.env.NEXT_PUBLIC_SITE_ORIGIN ?? 'https://shanaty.ru'}/portfolio/` }
|
|
|
|
type Status = 'loading' | 'live' | 'offline'
|
|
|
|
export default function Site({ initialEn, initialRu }: Readonly<{ initialEn: Resume; initialRu: Resume }>) {
|
|
const [en, setEn] = useState<Resume>(initialEn)
|
|
const [ru, setRu] = useState<Resume>(initialRu)
|
|
const [projects, setProjects] = useState<Project[]>([])
|
|
const [portfolio, setPortfolio] = useState<Portfolio>(PORTFOLIO_FALLBACK)
|
|
const [generatedAt, setGeneratedAt] = useState<string>()
|
|
const [status, setStatus] = useState<Status>('loading')
|
|
|
|
useEffect(() => {
|
|
const controller = new AbortController()
|
|
fetch(DATA_URL, { cache: 'no-store', signal: controller.signal })
|
|
.then((response) => (response.ok ? response.json() : Promise.reject(new Error(`HTTP ${response.status}`))))
|
|
.then((data: Live) => {
|
|
if (!data?.resume || !Array.isArray(data.projects)) throw new Error('unexpected data')
|
|
setEn(data.resume)
|
|
if (data.resume_ru) setRu(data.resume_ru)
|
|
setProjects(data.projects)
|
|
if (data.portfolio?.href) setPortfolio(data.portfolio)
|
|
setGeneratedAt(data.generated_at)
|
|
setStatus('live')
|
|
})
|
|
.catch((error: Error) => {
|
|
if (error.name !== 'AbortError') setStatus('offline')
|
|
})
|
|
return () => controller.abort()
|
|
}, [])
|
|
|
|
// Once the list has loaded and is empty (no repository carries the `resume` topic yet) the section is left out.
|
|
const showProjects = status !== 'live' || projects.length > 0
|
|
const mailHref = en.contacts[0].href
|
|
|
|
return (
|
|
<>
|
|
<TitleSync />
|
|
<TopBar showProjects={showProjects} />
|
|
<Gizmo />
|
|
<main>
|
|
<Hero en={en} ru={ru} portfolio={portfolio} mailHref={mailHref} showProjects={showProjects} />
|
|
{showProjects && (
|
|
<Projects projects={projects} status={status} generatedAt={generatedAt} profileUrl={GITEA_PROFILE} portfolio={portfolio} />
|
|
)}
|
|
<Skills en={en} ru={ru} />
|
|
<Experience en={en} ru={ru} />
|
|
<Education en={en} ru={ru} />
|
|
</main>
|
|
<Contact en={en} ru={ru} />
|
|
</>
|
|
)
|
|
}
|