import { getRecommendedDownload, RecommendedDownload } from "../download-helper.js"; import "./DownloadButton.css"; import Button from "./Button.js"; import downloadIcon from "../assets/boxicons/bx-arrow-in-down-square-half.svg?raw"; import packageJson from "../../../../package.json" with { type: "json" }; import { useContext, useEffect, useState } from "preact/hooks"; import { useTranslation } from "react-i18next"; import { LocaleContext } from "../index.js"; interface DownloadButtonProps { big?: boolean; } export default function DownloadButton({ big }: DownloadButtonProps) { const locale = useContext(LocaleContext); const { t } = useTranslation(); const [ recommendedDownload, setRecommendedDownload ] = useState(); useEffect(() => { getRecommendedDownload(t)?.then(setRecommendedDownload); }, [ t ]); return (recommendedDownload && <> {recommendedDownload.platform !== "linux" ? (