mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
* feat: update prettier configuration for print width * chore: apply code formatting to entire repository * fix: remove build files * fix: format issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Combobox, Group, InputBase, Text, useCombobox } from "@mantine/core";
|
|
import { IconCheck } from "@tabler/icons-react";
|
|
|
|
import type { SupportedLanguage } from "@homarr/translation";
|
|
import { localeAttributes, supportedLanguages } from "@homarr/translation";
|
|
import { useChangeLocale, useCurrentLocale } from "@homarr/translation/client";
|
|
|
|
import classes from "./language-combobox.module.css";
|
|
|
|
export const LanguageCombobox = () => {
|
|
const combobox = useCombobox({
|
|
onDropdownClose: () => combobox.resetSelectedOption(),
|
|
});
|
|
const currentLocale = useCurrentLocale();
|
|
const changeLocale = useChangeLocale();
|
|
|
|
const handleOnOptionSubmit = React.useCallback(
|
|
(value: string) => {
|
|
if (!value) {
|
|
return;
|
|
}
|
|
changeLocale(value as SupportedLanguage);
|
|
combobox.closeDropdown();
|
|
},
|
|
[changeLocale, combobox],
|
|
);
|
|
|
|
const handleOnClick = React.useCallback(() => {
|
|
combobox.toggleDropdown();
|
|
}, [combobox]);
|
|
|
|
return (
|
|
<Combobox store={combobox} onOptionSubmit={handleOnOptionSubmit}>
|
|
<Combobox.Target>
|
|
<InputBase
|
|
component="button"
|
|
type="button"
|
|
pointer
|
|
rightSection={<Combobox.Chevron />}
|
|
rightSectionPointerEvents="none"
|
|
onClick={handleOnClick}
|
|
variant="filled"
|
|
>
|
|
<OptionItem currentLocale={currentLocale} localeKey={currentLocale} />
|
|
</InputBase>
|
|
</Combobox.Target>
|
|
<Combobox.Dropdown>
|
|
<Combobox.Options>
|
|
{supportedLanguages.map((languageKey) => (
|
|
<Combobox.Option value={languageKey} key={languageKey}>
|
|
<OptionItem currentLocale={currentLocale} localeKey={languageKey} showCheck />
|
|
</Combobox.Option>
|
|
))}
|
|
</Combobox.Options>
|
|
</Combobox.Dropdown>
|
|
</Combobox>
|
|
);
|
|
};
|
|
|
|
const OptionItem = ({
|
|
currentLocale,
|
|
localeKey,
|
|
showCheck,
|
|
}: {
|
|
currentLocale: SupportedLanguage;
|
|
localeKey: SupportedLanguage;
|
|
showCheck?: boolean;
|
|
}) => {
|
|
return (
|
|
<Group wrap="nowrap" justify="space-between">
|
|
<Group wrap="nowrap">
|
|
<span className={`fi fi-${localeAttributes[localeKey].flagIcon} ${classes.flagIcon}`}></span>
|
|
<Group wrap="nowrap" gap="xs">
|
|
<Text>{localeAttributes[localeKey].name}</Text>
|
|
<Text size="xs" c="dimmed" inherit>
|
|
({localeAttributes[localeKey].translatedName})
|
|
</Text>
|
|
</Group>
|
|
</Group>
|
|
{showCheck && localeKey === currentLocale && <IconCheck color="currentColor" size={16} />}
|
|
</Group>
|
|
);
|
|
};
|