2018-06-21 13:51:39 +01:00
|
|
|
/*
|
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-10-22 17:23:32 -05:00
|
|
|
import React from "react";
|
|
|
|
|
|
2018-06-21 13:51:39 +01:00
|
|
|
import SdkConfig from "../../../SdkConfig";
|
2021-06-29 13:11:58 +01:00
|
|
|
import { getCurrentLanguage } from "../../../languageHandler";
|
2020-07-28 11:53:43 -06:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
2018-06-21 13:51:39 +01:00
|
|
|
import PlatformPeg from "../../../PlatformPeg";
|
2021-06-29 13:11:58 +01:00
|
|
|
import { SettingLevel } from "../../../settings/SettingLevel";
|
2021-07-20 12:22:32 +02:00
|
|
|
import LanguageDropdown from "../elements/LanguageDropdown";
|
2018-06-21 13:51:39 +01:00
|
|
|
|
2021-07-15 15:44:44 +02:00
|
|
|
function onChange(newLang: string): void {
|
2018-06-21 13:51:39 +01:00
|
|
|
if (getCurrentLanguage() !== newLang) {
|
|
|
|
|
SettingsStore.setValue("language", null, SettingLevel.DEVICE, newLang);
|
2023-03-07 10:45:55 +00:00
|
|
|
PlatformPeg.get()?.reload();
|
2018-06-21 13:51:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 15:44:44 +02:00
|
|
|
interface IProps {
|
|
|
|
|
disabled?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-20 12:22:32 +02:00
|
|
|
export default function LanguageSelector({ disabled }: IProps): JSX.Element {
|
2022-03-18 10:12:36 -06:00
|
|
|
if (SdkConfig.get("disable_login_language_selector")) return <div />;
|
2020-04-15 14:19:47 +01:00
|
|
|
return (
|
|
|
|
|
<LanguageDropdown
|
|
|
|
|
className="mx_AuthBody_language"
|
2019-01-23 09:57:31 -06:00
|
|
|
onOptionChange={onChange}
|
|
|
|
|
value={getCurrentLanguage()}
|
2020-04-15 14:19:47 +01:00
|
|
|
disabled={disabled}
|
2019-01-23 09:57:31 -06:00
|
|
|
/>
|
|
|
|
|
);
|
2018-06-21 13:51:39 +01:00
|
|
|
}
|