* Apply `strictNullChecks` to `src/components/views/elements/*` * Iterate * Iterate * Iterate * Apply `strictNullChecks` to `src/components/views/elements/*` * Iterate * Iterate * Iterate * Update snapshot
138 lines
4.7 KiB
TypeScript
138 lines
4.7 KiB
TypeScript
/*
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
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.
|
|
*/
|
|
|
|
import React, { ReactElement } from "react";
|
|
|
|
import Dropdown from "../../views/elements/Dropdown";
|
|
import PlatformPeg from "../../../PlatformPeg";
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
import { _t } from "../../../languageHandler";
|
|
import Spinner from "./Spinner";
|
|
import * as languageHandler from "../../../languageHandler";
|
|
import { NonEmptyArray } from "../../../@types/common";
|
|
|
|
type Languages = Awaited<ReturnType<typeof languageHandler.getAllLanguagesFromJson>>;
|
|
function languageMatchesSearchQuery(query: string, language: Languages[0]): boolean {
|
|
if (language.label.toUpperCase().includes(query.toUpperCase())) return true;
|
|
if (language.value.toUpperCase() === query.toUpperCase()) return true;
|
|
return false;
|
|
}
|
|
|
|
interface SpellCheckLanguagesDropdownIProps {
|
|
className: string;
|
|
value: string;
|
|
onOptionChange(language: string): void;
|
|
}
|
|
|
|
interface SpellCheckLanguagesDropdownIState {
|
|
searchQuery: string;
|
|
languages?: Languages;
|
|
}
|
|
|
|
export default class SpellCheckLanguagesDropdown extends React.Component<
|
|
SpellCheckLanguagesDropdownIProps,
|
|
SpellCheckLanguagesDropdownIState
|
|
> {
|
|
public constructor(props: SpellCheckLanguagesDropdownIProps) {
|
|
super(props);
|
|
this.onSearchChange = this.onSearchChange.bind(this);
|
|
|
|
this.state = {
|
|
searchQuery: "",
|
|
};
|
|
}
|
|
|
|
public componentDidMount(): void {
|
|
const plaf = PlatformPeg.get();
|
|
if (plaf) {
|
|
plaf.getAvailableSpellCheckLanguages()
|
|
?.then((languages) => {
|
|
languages.sort(function (a, b) {
|
|
if (a < b) return -1;
|
|
if (a > b) return 1;
|
|
return 0;
|
|
});
|
|
const langs: Languages = [];
|
|
languages.forEach((language) => {
|
|
langs.push({
|
|
label: language,
|
|
value: language,
|
|
});
|
|
});
|
|
this.setState({ languages: langs });
|
|
})
|
|
.catch((e) => {
|
|
this.setState({
|
|
languages: [
|
|
{
|
|
value: "en",
|
|
label: "English",
|
|
},
|
|
],
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
private onSearchChange(searchQuery: string): void {
|
|
this.setState({ searchQuery });
|
|
}
|
|
|
|
public render(): React.ReactNode {
|
|
if (!this.state.languages) {
|
|
return <Spinner />;
|
|
}
|
|
|
|
let displayedLanguages: Languages;
|
|
if (this.state.searchQuery) {
|
|
displayedLanguages = this.state.languages.filter((lang) => {
|
|
return languageMatchesSearchQuery(this.state.searchQuery, lang);
|
|
});
|
|
} else {
|
|
displayedLanguages = this.state.languages;
|
|
}
|
|
|
|
const options = displayedLanguages.map((language) => {
|
|
return <div key={language.value}>{language.label}</div>;
|
|
}) as NonEmptyArray<ReactElement & { key: string }>;
|
|
|
|
// default value here too, otherwise we need to handle null / undefined;
|
|
// values between mounting and the initial value propagating
|
|
let language = SettingsStore.getValue<string | undefined>("language", null, /*excludeDefault:*/ true);
|
|
let value: string | undefined;
|
|
if (language) {
|
|
value = this.props.value || language;
|
|
} else {
|
|
language = navigator.language || navigator.userLanguage;
|
|
value = this.props.value || language;
|
|
}
|
|
|
|
return (
|
|
<Dropdown
|
|
id="mx_LanguageDropdown"
|
|
className={this.props.className}
|
|
onOptionChange={this.props.onOptionChange}
|
|
onSearchChange={this.onSearchChange}
|
|
searchEnabled={true}
|
|
value={value}
|
|
label={_t("Language Dropdown")}
|
|
placeholder={_t("Choose a locale")}
|
|
>
|
|
{options}
|
|
</Dropdown>
|
|
);
|
|
}
|
|
}
|