2020-11-26 15:51:03 +03:00
|
|
|
/*
|
2021-02-18 21:41:19 +03:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
2020-11-26 15:51:03 +03:00
|
|
|
|
|
|
|
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 from 'react';
|
2020-12-01 18:59:21 +03:00
|
|
|
import SpellCheckLanguagesDropdown from "../../../components/views/elements/SpellCheckLanguagesDropdown";
|
2020-11-26 15:51:03 +03:00
|
|
|
import AccessibleButton from "../../../components/views/elements/AccessibleButton";
|
|
|
|
import {_t} from "../../../languageHandler";
|
2021-03-09 06:20:07 +03:00
|
|
|
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
2020-11-26 15:51:03 +03:00
|
|
|
|
|
|
|
interface ExistingSpellCheckLanguageIProps {
|
|
|
|
language: string,
|
|
|
|
onRemoved(language: string),
|
2020-12-01 22:36:25 +03:00
|
|
|
}
|
2020-11-26 15:51:03 +03:00
|
|
|
|
|
|
|
interface SpellCheckLanguagesIProps {
|
|
|
|
languages: Array<string>,
|
|
|
|
onLanguagesChange(languages: Array<string>),
|
2020-12-01 22:36:25 +03:00
|
|
|
}
|
2020-11-26 15:51:03 +03:00
|
|
|
|
|
|
|
interface SpellCheckLanguagesIState {
|
|
|
|
newLanguage: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ExistingSpellCheckLanguage extends React.Component<ExistingSpellCheckLanguageIProps> {
|
|
|
|
_onRemove = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
return this.props.onRemoved(this.props.language);
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-11-29 14:29:05 +03:00
|
|
|
<div className="mx_ExistingSpellCheckLanguage">
|
|
|
|
<span className="mx_ExistingSpellCheckLanguage_language">{this.props.language}</span>
|
2020-11-26 15:51:03 +03:00
|
|
|
<AccessibleButton onClick={this._onRemove} kind="danger_sm">
|
|
|
|
{_t("Remove")}
|
|
|
|
</AccessibleButton>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-09 06:20:07 +03:00
|
|
|
@replaceableComponent("views.settings.SpellCheckLanguages")
|
2020-11-26 15:51:03 +03:00
|
|
|
export default class SpellCheckLanguages extends React.Component<SpellCheckLanguagesIProps, SpellCheckLanguagesIState> {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
newLanguage: "",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRemoved = (language) => {
|
|
|
|
const languages = this.props.languages.filter((e) => e !== language);
|
|
|
|
this.props.onLanguagesChange(languages);
|
|
|
|
};
|
|
|
|
|
|
|
|
_onAddClick = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const language = this.state.newLanguage;
|
2020-12-01 22:36:25 +03:00
|
|
|
|
2020-11-26 15:51:03 +03:00
|
|
|
if (!language) return;
|
|
|
|
if (this.props.languages.includes(language)) return;
|
|
|
|
|
|
|
|
this.props.languages.push(language)
|
|
|
|
this.props.onLanguagesChange(this.props.languages);
|
|
|
|
};
|
|
|
|
|
|
|
|
_onNewLanguageChange = (language: string) => {
|
|
|
|
if (this.state.newLanguage === language) return;
|
|
|
|
this.setState({newLanguage: language});
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const existingSpellCheckLanguages = this.props.languages.map((e) => {
|
|
|
|
return <ExistingSpellCheckLanguage language={e} onRemoved={this._onRemoved} key={e} />;
|
|
|
|
});
|
|
|
|
|
2020-12-01 22:36:25 +03:00
|
|
|
const addButton = (
|
2020-11-26 15:51:03 +03:00
|
|
|
<AccessibleButton onClick={this._onAddClick} kind="primary">
|
|
|
|
{_t("Add")}
|
|
|
|
</AccessibleButton>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2020-11-29 14:29:05 +03:00
|
|
|
<div className="mx_SpellCheckLanguages">
|
2020-11-26 15:51:03 +03:00
|
|
|
{existingSpellCheckLanguages}
|
2020-11-29 14:29:05 +03:00
|
|
|
<form onSubmit={this._onAddClick} noValidate={true}>
|
2020-12-01 22:36:25 +03:00
|
|
|
<SpellCheckLanguagesDropdown
|
|
|
|
className="mx_GeneralUserSettingsTab_spellCheckLanguageInput"
|
|
|
|
value={this.state.newLanguage}
|
|
|
|
onOptionChange={this._onNewLanguageChange} />
|
2020-11-26 15:51:03 +03:00
|
|
|
{addButton}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
2020-12-01 22:36:25 +03:00
|
|
|
}
|
2020-11-26 15:51:03 +03:00
|
|
|
}
|