mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
|
|
import { Group, Image, Select, Stack, Text } from '@mantine/core';
|
||
|
|
import { showNotification } from '@mantine/notifications';
|
||
|
|
import { IconLanguage } from '@tabler/icons';
|
||
|
|
|
||
|
|
import { forwardRef, useState } from 'react';
|
||
|
|
import { useTranslation } from 'react-i18next';
|
||
|
|
import { convertCodeToName } from '../../translations/i18n';
|
||
|
|
|
||
|
|
export default function LanguageSwitch() {
|
||
|
|
const { t, i18n } = useTranslation();
|
||
|
|
const { language, languages, changeLanguage } = i18n;
|
||
|
|
|
||
|
|
const [selectedLanguage, setSelectedLanguage] = useState<string | null>(language);
|
||
|
|
|
||
|
|
const data = languages.map((language) => ({
|
||
|
|
image: `https://countryflagsapi.com/png/${language.split('-').pop()}`,
|
||
|
|
label: convertCodeToName(language),
|
||
|
|
value: language,
|
||
|
|
}));
|
||
|
|
|
||
|
|
const onChangeSelect = (value: string) => {
|
||
|
|
setSelectedLanguage(value);
|
||
|
|
|
||
|
|
const languageName = convertCodeToName(value);
|
||
|
|
|
||
|
|
changeLanguage(value)
|
||
|
|
.then(() => {
|
||
|
|
showNotification({
|
||
|
|
title: 'Language changed',
|
||
|
|
message: `You changed the language to '${languageName}'`,
|
||
|
|
color: 'green',
|
||
|
|
autoClose: 5000,
|
||
|
|
});
|
||
|
|
})
|
||
|
|
.catch((err) => {
|
||
|
|
showNotification({
|
||
|
|
title: 'Failed to change language',
|
||
|
|
message: `Failed to change to '${languageName}', Error:'${err}`,
|
||
|
|
color: 'red',
|
||
|
|
autoClose: 5000,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Stack>
|
||
|
|
<Select
|
||
|
|
icon={<IconLanguage size={18} />}
|
||
|
|
label={t('settings.tabs.common.settings.language.title')}
|
||
|
|
data={data}
|
||
|
|
itemComponent={SelectItem}
|
||
|
|
nothingFound="Nothing found"
|
||
|
|
onChange={onChangeSelect}
|
||
|
|
value={selectedLanguage}
|
||
|
|
defaultValue={language}
|
||
|
|
/>
|
||
|
|
</Stack>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ItemProps extends React.ComponentPropsWithoutRef<'div'> {
|
||
|
|
image: string;
|
||
|
|
label: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const SelectItem = forwardRef<HTMLDivElement, ItemProps>(
|
||
|
|
({ image, label, ...others }: ItemProps, ref) => (
|
||
|
|
<div ref={ref} {...others}>
|
||
|
|
<Group noWrap>
|
||
|
|
<Image src={image} width={30} height={20} radius="xs" />
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<Text size="sm">{label}</Text>
|
||
|
|
</div>
|
||
|
|
</Group>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
);
|