mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 01:51:45 +03:00
281 lines
12 KiB
JavaScript
281 lines
12 KiB
JavaScript
/*
|
|
Copyright 2019 New Vector Ltd
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
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';
|
|
import {_t} from "../../../../../languageHandler";
|
|
import SettingsStore, {SettingLevel} from "../../../../../settings/SettingsStore";
|
|
import * as sdk from "../../../../../index";
|
|
import {enumerateThemes, ThemeWatcher} from "../../../../../theme";
|
|
import Field from "../../../elements/Field";
|
|
import Slider from "../../../elements/Slider";
|
|
import AccessibleButton from "../../../elements/AccessibleButton";
|
|
import dis from "../../../../../dispatcher";
|
|
import { FontWatcher } from "../../../../../FontWatcher";
|
|
|
|
export default class AppearanceUserSettingsTab extends React.Component {
|
|
constructor() {
|
|
super();
|
|
|
|
this.state = {
|
|
fontSize: SettingsStore.getValue("fontSize", null),
|
|
...this._calculateThemeState(),
|
|
customThemeUrl: "",
|
|
customThemeMessage: {isError: false, text: ""},
|
|
useCustomFontSize: SettingsStore.getValue("useCustomFontSize"),
|
|
};
|
|
}
|
|
|
|
_calculateThemeState() {
|
|
// We have to mirror the logic from ThemeWatcher.getEffectiveTheme so we
|
|
// show the right values for things.
|
|
|
|
const themeChoice = SettingsStore.getValueAt(SettingLevel.ACCOUNT, "theme");
|
|
const systemThemeExplicit = SettingsStore.getValueAt(
|
|
SettingLevel.DEVICE, "use_system_theme", null, false, true);
|
|
const themeExplicit = SettingsStore.getValueAt(
|
|
SettingLevel.DEVICE, "theme", null, false, true);
|
|
|
|
// If the user has enabled system theme matching, use that.
|
|
if (systemThemeExplicit) {
|
|
return {
|
|
theme: themeChoice,
|
|
useSystemTheme: true,
|
|
};
|
|
}
|
|
|
|
// If the user has set a theme explicitly, use that (no system theme matching)
|
|
if (themeExplicit) {
|
|
return {
|
|
theme: themeChoice,
|
|
useSystemTheme: false,
|
|
};
|
|
}
|
|
|
|
// Otherwise assume the defaults for the settings
|
|
return {
|
|
theme: themeChoice,
|
|
useSystemTheme: SettingsStore.getValueAt(SettingLevel.DEVICE, "use_system_theme"),
|
|
};
|
|
}
|
|
|
|
_onThemeChange = (e) => {
|
|
const newTheme = e.target.value;
|
|
if (this.state.theme === newTheme) return;
|
|
|
|
// doing getValue in the .catch will still return the value we failed to set,
|
|
// so remember what the value was before we tried to set it so we can revert
|
|
const oldTheme = SettingsStore.getValue('theme');
|
|
SettingsStore.setValue("theme", null, SettingLevel.ACCOUNT, newTheme).catch(() => {
|
|
dis.dispatch({action: 'recheck_theme'});
|
|
this.setState({theme: oldTheme});
|
|
});
|
|
this.setState({theme: newTheme});
|
|
// The settings watcher doesn't fire until the echo comes back from the
|
|
// server, so to make the theme change immediately we need to manually
|
|
// do the dispatch now
|
|
// XXX: The local echoed value appears to be unreliable, in particular
|
|
// when settings custom themes(!) so adding forceTheme to override
|
|
// the value from settings.
|
|
dis.dispatch({action: 'recheck_theme', forceTheme: newTheme});
|
|
};
|
|
|
|
_onUseSystemThemeChanged = (checked) => {
|
|
this.setState({useSystemTheme: checked});
|
|
SettingsStore.setValue("use_system_theme", null, SettingLevel.DEVICE, checked);
|
|
dis.dispatch({action: 'recheck_theme'});
|
|
};
|
|
|
|
_onFontSizeChanged = (size) => {
|
|
this.setState({fontSize: size});
|
|
SettingsStore.setValue("fontSize", null, SettingLevel.DEVICE, size);
|
|
};
|
|
|
|
_onValidateFontSize = ({value}) => {
|
|
console.log({value});
|
|
|
|
const parsedSize = parseFloat(value);
|
|
const min = FontWatcher.minSize;
|
|
const max = FontWatcher.maxSize;
|
|
|
|
if (isNaN(parsedSize)) {
|
|
return {valid: false, feedback: _t("Size must be a number")};
|
|
}
|
|
|
|
if (!(min <= parsedSize && parsedSize <= max)) {
|
|
return {
|
|
valid: false,
|
|
feedback: _t('Custom font size can only be between %(min)s pt and %(max)s pt', {min, max}),
|
|
};
|
|
}
|
|
|
|
SettingsStore.setValue("fontSize", null, SettingLevel.DEVICE, value);
|
|
return {valid: true, feedback: _t('Use between %(min)s pt and %(max)s pt', {min, max})};
|
|
}
|
|
|
|
_onAddCustomTheme = async () => {
|
|
let currentThemes = SettingsStore.getValue("custom_themes");
|
|
if (!currentThemes) currentThemes = [];
|
|
currentThemes = currentThemes.map(c => c); // cheap clone
|
|
|
|
if (this._themeTimer) {
|
|
clearTimeout(this._themeTimer);
|
|
}
|
|
|
|
try {
|
|
const r = await fetch(this.state.customThemeUrl);
|
|
const themeInfo = await r.json();
|
|
if (!themeInfo || typeof(themeInfo['name']) !== 'string' || typeof(themeInfo['colors']) !== 'object') {
|
|
this.setState({customThemeMessage: {text: _t("Invalid theme schema."), isError: true}});
|
|
return;
|
|
}
|
|
currentThemes.push(themeInfo);
|
|
} catch (e) {
|
|
console.error(e);
|
|
this.setState({customThemeMessage: {text: _t("Error downloading theme information."), isError: true}});
|
|
return; // Don't continue on error
|
|
}
|
|
|
|
await SettingsStore.setValue("custom_themes", null, SettingLevel.ACCOUNT, currentThemes);
|
|
this.setState({customThemeUrl: "", customThemeMessage: {text: _t("Theme added!"), isError: false}});
|
|
|
|
this._themeTimer = setTimeout(() => {
|
|
this.setState({customThemeMessage: {text: "", isError: false}});
|
|
}, 3000);
|
|
};
|
|
|
|
_onCustomThemeChange = (e) => {
|
|
this.setState({customThemeUrl: e.target.value});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<div className="mx_SettingsTab">
|
|
<div className="mx_SettingsTab_heading">{_t("Appearance")}</div>
|
|
{this._renderThemeSection()}
|
|
{SettingsStore.isFeatureEnabled("feature_font_scaling") ? this._renderFontSection() : null}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
_renderThemeSection() {
|
|
const SettingsFlag = sdk.getComponent("views.elements.SettingsFlag");
|
|
const LabelledToggleSwitch = sdk.getComponent("views.elements.LabelledToggleSwitch");
|
|
|
|
const themeWatcher = new ThemeWatcher();
|
|
let systemThemeSection;
|
|
if (themeWatcher.isSystemThemeSupported()) {
|
|
systemThemeSection = <div>
|
|
<LabelledToggleSwitch
|
|
value={this.state.useSystemTheme}
|
|
label={SettingsStore.getDisplayName("use_system_theme")}
|
|
onChange={this._onUseSystemThemeChanged}
|
|
/>
|
|
</div>;
|
|
}
|
|
|
|
let customThemeForm;
|
|
if (SettingsStore.isFeatureEnabled("feature_custom_themes")) {
|
|
let messageElement = null;
|
|
if (this.state.customThemeMessage.text) {
|
|
if (this.state.customThemeMessage.isError) {
|
|
messageElement = <div className='text-error'>{this.state.customThemeMessage.text}</div>;
|
|
} else {
|
|
messageElement = <div className='text-success'>{this.state.customThemeMessage.text}</div>;
|
|
}
|
|
}
|
|
customThemeForm = (
|
|
<div className='mx_SettingsTab_section'>
|
|
<form onSubmit={this._onAddCustomTheme}>
|
|
<Field
|
|
label={_t("Custom theme URL")}
|
|
type='text'
|
|
id='mx_GeneralUserSettingsTab_customThemeInput'
|
|
autoComplete="off"
|
|
onChange={this._onCustomThemeChange}
|
|
value={this.state.customThemeUrl}
|
|
/>
|
|
<AccessibleButton
|
|
onClick={this._onAddCustomTheme}
|
|
type="submit" kind="primary_sm"
|
|
disabled={!this.state.customThemeUrl.trim()}
|
|
>{_t("Add theme")}</AccessibleButton>
|
|
{messageElement}
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const themes = Object.entries(enumerateThemes())
|
|
.map(p => ({id: p[0], name: p[1]})); // convert pairs to objects for code readability
|
|
const builtInThemes = themes.filter(p => !p.id.startsWith("custom-"));
|
|
const customThemes = themes.filter(p => !builtInThemes.includes(p))
|
|
.sort((a, b) => a.name.localeCompare(b.name));
|
|
const orderedThemes = [...builtInThemes, ...customThemes];
|
|
return (
|
|
<div className="mx_SettingsTab_section mx_AppearanceUserSettingsTab_themeSection">
|
|
<span className="mx_SettingsTab_subheading">{_t("Theme")}</span>
|
|
{systemThemeSection}
|
|
<Field
|
|
id="theme" label={_t("Theme")} element="select"
|
|
value={this.state.theme} onChange={this._onThemeChange}
|
|
disabled={this.state.useSystemTheme}
|
|
>
|
|
{orderedThemes.map(theme => {
|
|
return <option key={theme.id} value={theme.id}>{theme.name}</option>;
|
|
})}
|
|
</Field>
|
|
{customThemeForm}
|
|
<SettingsFlag name="useCompactLayout" level={SettingLevel.ACCOUNT} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
_renderFontSection() {
|
|
const SettingsFlag = sdk.getComponent("views.elements.SettingsFlag");
|
|
return <div className="mx_SettingsTab_section mx_AppearanceUserSettingsTab_fontScaling">
|
|
<span className="mx_SettingsTab_subheading">{_t("Font size")}</span>
|
|
<div className="mx_AppearanceUserSettingsTab_fontSlider">
|
|
<div className="mx_AppearanceUserSettingsTab_fontSlider_smallText">Aa</div>
|
|
<Slider
|
|
values={[13, 15, 16, 18, 20]}
|
|
value={this.state.fontSize}
|
|
onSelectionChange={this._onFontSizeChanged}
|
|
displayFunc={value => {}}
|
|
disabled={this.state.useCustomFontSize}
|
|
/>
|
|
<div className="mx_AppearanceUserSettingsTab_fontSlider_largeText">Aa</div>
|
|
</div>
|
|
<SettingsFlag
|
|
name="useCustomFontSize"
|
|
level={SettingLevel.ACCOUNT}
|
|
onChange={(checked)=> this.setState({useCustomFontSize: checked})}
|
|
/>
|
|
<Field
|
|
type="text"
|
|
label={_t("Font size")}
|
|
autoComplete="off"
|
|
placeholder={this.state.fontSize.toString()}
|
|
value={this.state.fontSize.toString()}
|
|
id="font_size_field"
|
|
onValidate={this._onValidateFontSize}
|
|
onChange={(value) => this.setState({fontSize: value.target.value})}
|
|
disabled={!this.state.useCustomFontSize}
|
|
/>
|
|
</div>;
|
|
}
|
|
}
|