import { useTranslation } from "react-i18next"; import useSWR from "swr"; import { compareVersions } from "compare-versions"; import { MdNewReleases } from "react-icons/md"; export default function Version() { const { t, i18n } = useTranslation(); const buildTime = process.env.NEXT_PUBLIC_BUILDTIME ?? new Date().toISOString(); const revision = process.env.NEXT_PUBLIC_REVISION ?? "dev"; const version = process.env.NEXT_PUBLIC_VERSION ?? "dev"; const { data: releaseData } = useSWR("https://api.github.com/repos/benphelps/homepage/releases"); // use Intl.DateTimeFormat to format the date const formatDate = (date) => { const options = { year: "numeric", month: "short", day: "numeric", }; return new Intl.DateTimeFormat(i18n.language, options).format(new Date(date)); }; const latestRelease = releaseData?.[0]; return (
{version} ({revision.substring(0, 7)}, {formatDate(buildTime)}) {version === "main" || version === "dev" ? null : releaseData && compareVersions(latestRelease.tag_name, version) > 0 && ( {t("Update Available")} )}
); }