umami/components/settings/LanguageButton.js

41 lines
1.0 KiB
JavaScript
Raw Normal View History

2020-09-21 06:31:53 +02:00
import React from 'react';
import Head from 'next/head';
2020-09-08 04:48:40 +02:00
import { menuOptions } from 'lib/lang';
import useLocale from 'hooks/useLocale';
2020-09-21 06:31:53 +02:00
import MenuButton from 'components/common/MenuButton';
import Globe from 'assets/globe.svg';
2020-09-07 10:22:16 +02:00
2020-09-21 06:31:53 +02:00
export default function LanguageButton() {
2020-09-09 05:46:31 +02:00
const [locale, setLocale] = useLocale();
2020-09-07 10:22:16 +02:00
function handleSelect(value) {
2020-09-09 05:46:31 +02:00
setLocale(value);
2020-09-07 10:22:16 +02:00
}
return (
<>
<Head>
{locale === 'zh-CN' && (
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap"
rel="stylesheet"
/>
)}
2020-09-13 10:26:54 +02:00
{locale === 'ja-JP' && (
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap"
rel="stylesheet"
/>
)}
</Head>
2020-09-21 06:31:53 +02:00
<MenuButton
icon={<Globe />}
options={menuOptions}
value={locale}
renderValue={option => option?.display}
onSelect={handleSelect}
/>
</>
2020-09-07 10:22:16 +02:00
);
}