import { useState } from 'react'; import { useTranslation } from 'react-i18next'; import useTheme from '../../../hooks/use-theme'; import packageJson from '../../../../package.json'; import styles from './interface-settings.module.css'; import capitalize from 'lodash/capitalize'; import useExpandedMediaStore from '../../../stores/use-expanded-media-store'; import useSpecialThemeStore from '../../../stores/use-special-theme-store'; import { isChristmas } from '../../../lib/utils/time-utils'; import Version from '../../version'; const commitRef = process.env.VITE_COMMIT_REF; const isElectron = window.electronApi?.isElectron === true; const CheckForUpdates = () => { const { t } = useTranslation(); const [loading, setLoading] = useState(false); const checkForUpdates = async () => { try { setLoading(true); const packageRes = await fetch('https://raw.githubusercontent.com/bitsocialhq/5chan/master/package.json', { cache: 'no-cache' }); const packageData = await packageRes.json(); let updateAvailable = false; if (packageJson.version !== packageData.version) { const newVersionText = t('new_stable_version', { newVersion: packageData.version, oldVersion: packageJson.version }); const updateActionText = isElectron ? t('download_latest_desktop', { link: 'https://github.com/bitsocialhq/5chan/releases/latest', interpolation: { escapeValue: false } }) : t('refresh_to_update'); alert(newVersionText + ' ' + updateActionText); updateAvailable = true; } if (commitRef && commitRef.length > 0) { const commitRes = await fetch('https://api.github.com/repos/bitsocialhq/5chan/commits?per_page=1&sha=development', { cache: 'no-cache' }); const commitData = await commitRes.json(); const latestCommitHash = commitData[0].sha; if (latestCommitHash.trim() !== commitRef.trim()) { const newVersionText = t('new_development_version', { newCommit: latestCommitHash.slice(0, 7), oldCommit: commitRef.slice(0, 7) }) + ' ' + t('refresh_to_update'); alert(newVersionText); updateAvailable = true; } } if (!updateAvailable) { alert( commitRef ? `${t('latest_development_version', { commit: commitRef.slice(0, 7), link: 'https://5chan.app/#/', interpolation: { escapeValue: false } })}` : `${t('latest_stable_version', { version: packageJson.version })}`, ); } } catch (error) { alert('Failed to fetch latest version info: ' + error); } finally { setLoading(false); } }; return ( ); }; const Style = () => { const [theme, setTheme] = useTheme(); const { isEnabled, setIsEnabled } = useSpecialThemeStore(); const isChristmasTime = isChristmas(); const handleThemeChange = (e: React.ChangeEvent) => { const newTheme = e.target.value; if (newTheme === 'special') { setIsEnabled(true); setTheme('tomorrow'); } else { setIsEnabled(false); setTheme(newTheme); } }; return ( ); }; // prettier-ignore const availableLanguages = ['ar', 'bn', 'cs', 'da', 'de', 'el', 'en', 'es', 'fa', 'fi', 'fil', 'fr', 'he', 'hi', 'hu', 'id', 'it', 'ja', 'ko', 'mr', 'nl', 'no', 'pl', 'pt', 'ro', 'ru', 'sq', 'sv', 'te', 'th', 'tr', 'uk', 'ur', 'vi', 'zh']; const InterfaceLanguage = () => { const { i18n } = useTranslation(); const { changeLanguage, language } = i18n; const onSelectLanguage = (e: React.ChangeEvent) => { changeLanguage(e.target.value); }; return (
); }; const InterfaceSettings = () => { const { t } = useTranslation(); const { fitExpandedImagesToScreen, setFitExpandedImagesToScreen } = useExpandedMediaStore(); return (
{capitalize(t('version'))}:
{capitalize(t('update'))}:
{capitalize(t('style'))}: