mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
474 lines
15 KiB
TypeScript
474 lines
15 KiB
TypeScript
import * as React from 'react';
|
|
import Sidebar from './Sidebar';
|
|
import ButtonBar from './ButtonBar';
|
|
import Button, { ButtonLevel } from '../Button/Button';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import bridge from '../../services/bridge';
|
|
import Setting, { AppType, SettingValueType, SyncStartupOperation } from '@joplin/lib/models/Setting';
|
|
import EncryptionConfigScreen from '../EncryptionConfigScreen/EncryptionConfigScreen';
|
|
import { reg } from '@joplin/lib/registry';
|
|
const { connect } = require('react-redux');
|
|
import { themeStyle } from '@joplin/lib/theme';
|
|
import SyncTargetRegistry from '@joplin/lib/SyncTargetRegistry';
|
|
import * as shared from '@joplin/lib/components/shared/config/config-shared.js';
|
|
import ClipperConfigScreen from '../ClipperConfigScreen';
|
|
import restart from '../../services/restart';
|
|
import JoplinCloudConfigScreen from '../JoplinCloudConfigScreen';
|
|
import ToggleAdvancedSettingsButton from './controls/ToggleAdvancedSettingsButton';
|
|
import shouldShowMissingPasswordWarning from '@joplin/lib/components/shared/config/shouldShowMissingPasswordWarning';
|
|
import MacOSMissingPasswordHelpLink from './controls/MissingPasswordHelpLink';
|
|
const { KeymapConfigScreen } = require('../KeymapConfig/KeymapConfigScreen');
|
|
import SettingComponent, { UpdateSettingValueEvent } from './controls/SettingComponent';
|
|
|
|
|
|
interface Font {
|
|
family: string;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
queryLocalFonts(): Promise<Font[]>;
|
|
openChangelogLink: ()=> void;
|
|
}
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
class ConfigScreenComponent extends React.Component<any, any> {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
private rowStyle_: any = null;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
public constructor(props: any) {
|
|
super(props);
|
|
|
|
shared.init(reg);
|
|
|
|
this.state = {
|
|
...shared.defaultScreenState,
|
|
selectedSectionName: 'general',
|
|
screenName: '',
|
|
changedSettingKeys: [],
|
|
needRestart: false,
|
|
fonts: [],
|
|
};
|
|
|
|
this.rowStyle_ = {
|
|
marginBottom: 10,
|
|
};
|
|
|
|
this.sidebar_selectionChange = this.sidebar_selectionChange.bind(this);
|
|
this.checkSyncConfig_ = this.checkSyncConfig_.bind(this);
|
|
this.onCancelClick = this.onCancelClick.bind(this);
|
|
this.onSaveClick = this.onSaveClick.bind(this);
|
|
this.onApplyClick = this.onApplyClick.bind(this);
|
|
this.handleSettingButton = this.handleSettingButton.bind(this);
|
|
}
|
|
|
|
private async checkSyncConfig_() {
|
|
if (this.state.settings['sync.target'] === SyncTargetRegistry.nameToId('joplinCloud')) {
|
|
const isAuthenticated = await reg.syncTarget().isAuthenticated();
|
|
if (!isAuthenticated) {
|
|
return this.props.dispatch({
|
|
type: 'NAV_GO',
|
|
routeName: 'JoplinCloudLogin',
|
|
});
|
|
}
|
|
}
|
|
await shared.checkSyncConfig(this, this.state.settings);
|
|
}
|
|
|
|
public UNSAFE_componentWillMount() {
|
|
this.setState({ settings: this.props.settings });
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
if (this.props.defaultSection) {
|
|
this.setState({ selectedSectionName: this.props.defaultSection }, () => {
|
|
void this.switchSection(this.props.defaultSection);
|
|
});
|
|
}
|
|
|
|
const fonts = (await window.queryLocalFonts()).map((font: Font) => font.family);
|
|
const uniqueFonts = [...new Set(fonts)];
|
|
this.setState({ fonts: uniqueFonts });
|
|
}
|
|
|
|
private async handleSettingButton(key: string) {
|
|
if (key === 'sync.clearLocalSyncStateButton') {
|
|
if (!confirm('This cannot be undone. Do you want to continue?')) return;
|
|
Setting.setValue('sync.startupOperation', SyncStartupOperation.ClearLocalSyncState);
|
|
await Setting.saveAll();
|
|
await restart();
|
|
} else if (key === 'sync.clearLocalDataButton') {
|
|
if (!confirm('This cannot be undone. Do you want to continue?')) return;
|
|
Setting.setValue('sync.startupOperation', SyncStartupOperation.ClearLocalData);
|
|
await Setting.saveAll();
|
|
await restart();
|
|
} else if (key === 'ocr.clearLanguageDataCacheButton') {
|
|
if (!confirm(this.restartMessage())) return;
|
|
Setting.setValue('ocr.clearLanguageDataCache', true);
|
|
await restart();
|
|
} else if (key === 'sync.openSyncWizard') {
|
|
this.props.dispatch({
|
|
type: 'DIALOG_OPEN',
|
|
name: 'syncWizard',
|
|
});
|
|
} else {
|
|
throw new Error(`Unhandled key: ${key}`);
|
|
}
|
|
}
|
|
|
|
public sectionByName(name: string) {
|
|
const sections = shared.settingsSections({ device: AppType.Desktop, settings: this.state.settings });
|
|
for (const section of sections) {
|
|
if (section.name === name) return section;
|
|
}
|
|
|
|
throw new Error(`Invalid section name: ${name}`);
|
|
}
|
|
|
|
public screenFromName(screenName: string) {
|
|
if (screenName === 'encryption') return <EncryptionConfigScreen/>;
|
|
if (screenName === 'server') return <ClipperConfigScreen themeId={this.props.themeId}/>;
|
|
if (screenName === 'keymap') return <KeymapConfigScreen themeId={this.props.themeId}/>;
|
|
if (screenName === 'joplinCloud') return <JoplinCloudConfigScreen />;
|
|
|
|
throw new Error(`Invalid screen name: ${screenName}`);
|
|
}
|
|
|
|
public async switchSection(name: string) {
|
|
const section = this.sectionByName(name);
|
|
let screenName = '';
|
|
if (section.isScreen) {
|
|
screenName = section.name;
|
|
|
|
if (this.hasChanges()) {
|
|
const ok = confirm(_('This will open a new screen. Save your current changes?'));
|
|
if (ok) {
|
|
await shared.saveSettings(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
this.setState({ selectedSectionName: section.name, screenName: screenName });
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
private sidebar_selectionChange(event: any) {
|
|
void this.switchSection(event.section.name);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
public renderSectionDescription(section: any) {
|
|
const description = Setting.sectionDescription(section.name, AppType.Desktop);
|
|
if (!description) return null;
|
|
|
|
const theme = themeStyle(this.props.themeId);
|
|
return (
|
|
<div style={{ ...theme.textStyle, marginBottom: 15 }}>
|
|
{description}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
public sectionToComponent(key: string, section: any, settings: any, selected: boolean) {
|
|
const theme = themeStyle(this.props.themeId);
|
|
|
|
const createSettingComponents = (advanced: boolean) => {
|
|
const output = [];
|
|
|
|
for (let i = 0; i < section.metadatas.length; i++) {
|
|
const md = section.metadatas[i];
|
|
if (!!md.advanced !== advanced) continue;
|
|
const settingComp = this.settingToComponent(md.key, settings[md.key]);
|
|
output.push(settingComp);
|
|
}
|
|
return output;
|
|
};
|
|
|
|
const settingComps = createSettingComponents(false);
|
|
const advancedSettingComps = createSettingComponents(true);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
const sectionWidths: Record<string, any> = {
|
|
plugins: '100%',
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
const sectionStyle: any = {
|
|
marginTop: 20,
|
|
marginBottom: 20,
|
|
maxWidth: sectionWidths[section.name] ? sectionWidths[section.name] : 640,
|
|
};
|
|
|
|
if (!selected) sectionStyle.display = 'none';
|
|
|
|
if (section.name === 'general') {
|
|
sectionStyle.borderTopWidth = 0;
|
|
}
|
|
|
|
if (section.name === 'sync') {
|
|
const syncTargetMd = SyncTargetRegistry.idToMetadata(settings['sync.target']);
|
|
const statusStyle = { ...theme.textStyle, marginTop: 10 };
|
|
const warningStyle = { ...theme.textStyle, color: theme.colorWarn };
|
|
|
|
// Don't show the missing password warning if the user just changed the sync target (but hasn't
|
|
// saved yet).
|
|
const matchesSavedTarget = settings['sync.target'] === this.props.settings['sync.target'];
|
|
if (matchesSavedTarget && shouldShowMissingPasswordWarning(settings['sync.target'], settings)) {
|
|
settingComps.push(
|
|
<p key='missing-password-warning' style={warningStyle}>
|
|
{_('%s: Missing password.', _('Warning'))}
|
|
{' '}
|
|
<MacOSMissingPasswordHelpLink
|
|
theme={theme}
|
|
text={_('Help')}
|
|
/>
|
|
</p>,
|
|
);
|
|
}
|
|
|
|
if (syncTargetMd.supportsConfigCheck) {
|
|
const messages = shared.checkSyncConfigMessages(this);
|
|
const statusComp = !messages.length ? null : (
|
|
<div style={statusStyle} aria-live='polite'>
|
|
{messages[0]}
|
|
{messages.length >= 1 ? <p>{messages[1]}</p> : null}
|
|
</div>
|
|
);
|
|
|
|
if (settings['sync.target'] === SyncTargetRegistry.nameToId('joplinCloud')) {
|
|
const goToJoplinCloudLogin = () => {
|
|
this.props.dispatch({
|
|
type: 'NAV_GO',
|
|
routeName: 'JoplinCloudLogin',
|
|
});
|
|
};
|
|
settingComps.push(
|
|
<div key="connect_to_joplin_cloud_button" style={this.rowStyle_}>
|
|
<Button
|
|
title={_('Connect to Joplin Cloud')}
|
|
level={ButtonLevel.Primary}
|
|
onClick={goToJoplinCloudLogin}
|
|
/>
|
|
</div>,
|
|
);
|
|
}
|
|
|
|
settingComps.push(
|
|
<div key="check_sync_config_button" style={this.rowStyle_}>
|
|
<Button
|
|
title={_('Check synchronisation configuration')}
|
|
level={ButtonLevel.Secondary}
|
|
disabled={this.state.checkSyncConfigResult === 'checking'}
|
|
onClick={this.checkSyncConfig_}
|
|
/>
|
|
{statusComp}
|
|
</div>,
|
|
);
|
|
}
|
|
}
|
|
|
|
let advancedSettingsButton = null;
|
|
const advancedSettingsSectionStyle = { display: 'none' };
|
|
const advancedSettingsGroupId = `advanced_settings_${key}`;
|
|
|
|
if (advancedSettingComps.length) {
|
|
advancedSettingsButton = (
|
|
<ToggleAdvancedSettingsButton
|
|
onClick={() => shared.advancedSettingsButton_click(this)}
|
|
advancedSettingsVisible={this.state.showAdvancedSettings}
|
|
aria-controls={advancedSettingsGroupId}
|
|
/>
|
|
);
|
|
advancedSettingsSectionStyle.display = this.state.showAdvancedSettings ? 'block' : 'none';
|
|
}
|
|
|
|
return (
|
|
<div key={key} style={sectionStyle}>
|
|
{this.renderSectionDescription(section)}
|
|
<div>{settingComps}</div>
|
|
{advancedSettingsButton}
|
|
<div
|
|
style={advancedSettingsSectionStyle}
|
|
id={advancedSettingsGroupId}
|
|
role='group'
|
|
>{advancedSettingComps}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
private onUpdateSettingValue = ({ key, value }: UpdateSettingValueEvent) => {
|
|
const md = Setting.settingMetadata(key);
|
|
if (md.needRestart) {
|
|
this.setState({ needRestart: true });
|
|
}
|
|
shared.updateSettingValue(this, key, value);
|
|
};
|
|
|
|
public settingToComponent<T extends string>(key: T, value: SettingValueType<T>) {
|
|
return (
|
|
<SettingComponent
|
|
themeId={this.props.themeId}
|
|
key={key}
|
|
settingKey={key}
|
|
value={value}
|
|
fonts={this.state.fonts}
|
|
onUpdateSettingValue={this.onUpdateSettingValue}
|
|
onSettingButtonClick={this.handleSettingButton}
|
|
/>
|
|
);
|
|
}
|
|
|
|
private restartMessage() {
|
|
return _('The application must be restarted for these changes to take effect.');
|
|
}
|
|
|
|
private async restartApp() {
|
|
await Setting.saveAll();
|
|
await restart();
|
|
}
|
|
|
|
private async checkNeedRestart() {
|
|
if (this.state.needRestart) {
|
|
const doItNow = await bridge().showConfirmMessageBox(this.restartMessage(), {
|
|
buttons: [_('Do it now'), _('Later')],
|
|
});
|
|
|
|
if (doItNow) await this.restartApp();
|
|
}
|
|
}
|
|
|
|
public async onApplyClick() {
|
|
const done = await shared.saveSettings(this);
|
|
if (!done) return;
|
|
|
|
await this.checkNeedRestart();
|
|
}
|
|
|
|
public async onSaveClick() {
|
|
const done = await shared.saveSettings(this);
|
|
if (!done) return;
|
|
await this.checkNeedRestart();
|
|
this.props.dispatch({ type: 'NAV_BACK' });
|
|
}
|
|
|
|
public onCancelClick() {
|
|
this.props.dispatch({ type: 'NAV_BACK' });
|
|
}
|
|
|
|
public hasChanges() {
|
|
return !!this.state.changedSettingKeys.length;
|
|
}
|
|
|
|
public render() {
|
|
const theme = themeStyle(this.props.themeId);
|
|
|
|
const style = {
|
|
...this.props.style,
|
|
overflow: 'hidden',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
backgroundColor: theme.backgroundColor3,
|
|
};
|
|
|
|
const settings = this.state.settings;
|
|
|
|
const containerStyle: React.CSSProperties = {
|
|
overflow: 'auto',
|
|
padding: theme.configScreenPadding,
|
|
paddingTop: 0,
|
|
display: 'flex',
|
|
flex: 1,
|
|
};
|
|
|
|
const hasChanges = this.hasChanges();
|
|
|
|
const settingComps = shared.settingsToComponents2(this, AppType.Desktop, settings, this.state.selectedSectionName);
|
|
|
|
// screenComp is a custom config screen, such as the encryption config screen or keymap config screen.
|
|
// These screens handle their own loading/saving of settings and have bespoke rendering.
|
|
// When screenComp is null, it means we are viewing the regular settings.
|
|
const screenComp = this.state.screenName ? <div className="config-screen-content-wrapper" style={{ overflow: 'scroll', flex: 1 }}>{this.screenFromName(this.state.screenName)}</div> : null;
|
|
|
|
if (screenComp) containerStyle.display = 'none';
|
|
|
|
const sections = shared.settingsSections({ device: AppType.Desktop, settings });
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
const needRestartComp: any = this.state.needRestart ? (
|
|
<div style={{ ...theme.textStyle, padding: 10, paddingLeft: 24, backgroundColor: theme.warningBackgroundColor, color: theme.color }}>
|
|
{this.restartMessage()}
|
|
<a style={{ ...theme.urlStyle, marginLeft: 10 }} href="#" onClick={() => { void this.restartApp(); }}>{_('Restart now')}</a>
|
|
</div>
|
|
) : null;
|
|
|
|
const rightStyle = { ...style, flex: 1 };
|
|
delete style.width;
|
|
|
|
const tabComponents: React.ReactNode[] = [];
|
|
for (const section of sections) {
|
|
const sectionId = `setting-section-${section.name}`;
|
|
let content = null;
|
|
const visible = section.name === this.state.selectedSectionName;
|
|
if (visible) {
|
|
content = (
|
|
<>
|
|
{screenComp}
|
|
<div style={containerStyle}>{settingComps}</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
tabComponents.push(
|
|
<div
|
|
key={sectionId}
|
|
id={sectionId}
|
|
className={`setting-tab-panel ${!visible ? '-hidden' : ''}`}
|
|
hidden={!visible}
|
|
aria-labelledby={`setting-tab-${section.name}`}
|
|
tabIndex={0}
|
|
role='tabpanel'
|
|
>
|
|
{content}
|
|
</div>,
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="config-screen" style={{ display: 'flex', flexDirection: 'row', height: this.props.style.height }}>
|
|
<Sidebar
|
|
selection={this.state.selectedSectionName}
|
|
onSelectionChange={this.sidebar_selectionChange}
|
|
sections={sections}
|
|
/>
|
|
<div style={rightStyle}>
|
|
{needRestartComp}
|
|
{tabComponents}
|
|
<ButtonBar
|
|
hasChanges={hasChanges}
|
|
backButtonTitle={hasChanges && !screenComp ? _('Cancel') : _('Back')}
|
|
onCancelClick={this.onCancelClick}
|
|
onSaveClick={screenComp ? null : this.onSaveClick}
|
|
onApplyClick={screenComp ? null : this.onApplyClick}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
const mapStateToProps = (state: any) => {
|
|
return {
|
|
themeId: state.settings.theme,
|
|
settings: state.settings,
|
|
locale: state.settings.locale,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(ConfigScreenComponent);
|
|
|