mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
import { VStack } from '@chakra-ui/react';
|
|
import IAIButton from 'common/components/IAIButton';
|
|
import IAIIconButton from 'common/components/IAIIconButton';
|
|
import IAIPopover from 'common/components/IAIPopover';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { FaLanguage } from 'react-icons/fa';
|
|
|
|
export default function LanguagePicker() {
|
|
const { t, i18n } = useTranslation();
|
|
const LANGUAGES = {
|
|
ar: t('common:langArabic'),
|
|
nl: t('common:langDutch'),
|
|
en: t('common:langEnglish'),
|
|
fr: t('common:langFrench'),
|
|
de: t('common:langGerman'),
|
|
it: t('common:langItalian'),
|
|
ja: t('common:langJapanese'),
|
|
pl: t('common:langPolish'),
|
|
pt_br: t('common:langBrPortuguese'),
|
|
ru: t('common:langRussian'),
|
|
zh_cn: t('common:langSimplifiedChinese'),
|
|
es: t('common:langSpanish'),
|
|
ua: t('common:langUkranian'),
|
|
};
|
|
|
|
const renderLanguagePicker = () => {
|
|
const languagesToRender: ReactNode[] = [];
|
|
Object.keys(LANGUAGES).forEach((lang) => {
|
|
languagesToRender.push(
|
|
<IAIButton
|
|
key={lang}
|
|
data-selected={localStorage.getItem('i18nextLng') === lang}
|
|
onClick={() => i18n.changeLanguage(lang)}
|
|
className="modal-close-btn lang-select-btn"
|
|
aria-label={LANGUAGES[lang as keyof typeof LANGUAGES]}
|
|
size="sm"
|
|
minWidth="200px"
|
|
>
|
|
{LANGUAGES[lang as keyof typeof LANGUAGES]}
|
|
</IAIButton>
|
|
);
|
|
});
|
|
|
|
return languagesToRender;
|
|
};
|
|
|
|
return (
|
|
<IAIPopover
|
|
trigger="hover"
|
|
triggerComponent={
|
|
<IAIIconButton
|
|
aria-label={t('common:languagePickerLabel')}
|
|
tooltip={t('common:languagePickerLabel')}
|
|
icon={<FaLanguage />}
|
|
size="sm"
|
|
variant="link"
|
|
data-variant="link"
|
|
fontSize={26}
|
|
/>
|
|
}
|
|
>
|
|
<VStack>{renderLanguagePicker()}</VStack>
|
|
</IAIPopover>
|
|
);
|
|
}
|