You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
228 lines
5.9 KiB
TypeScript
228 lines
5.9 KiB
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { LeftPane } from '../LeftPane';
|
|
|
|
import { MainViewController } from '../MainViewController';
|
|
|
|
import {
|
|
SessionButton,
|
|
SessionButtonColor,
|
|
SessionButtonType,
|
|
} from './SessionButton';
|
|
|
|
import { SessionIcon, SessionIconSize, SessionIconType } from './icon';
|
|
import { SessionSearchInput } from './SessionSearchInput';
|
|
import { SessionSettingCategory } from './settings/SessionSettings';
|
|
|
|
export interface State {
|
|
settingCategory: SessionSettingCategory;
|
|
searchQuery: string;
|
|
}
|
|
|
|
export class LeftPaneSettingSection extends React.Component<any, State> {
|
|
public constructor(props: any) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
settingCategory: SessionSettingCategory.General,
|
|
searchQuery: '',
|
|
};
|
|
|
|
this.setCategory = this.setCategory.bind(this);
|
|
this.renderRows = this.renderRows.bind(this);
|
|
|
|
//this.updateSearchBound = this.updateSearch.bind(this);
|
|
}
|
|
|
|
public render(): JSX.Element {
|
|
MainViewController.renderSettingsView(this.state.settingCategory);
|
|
|
|
return (
|
|
<div className="left-pane-setting-section">
|
|
{this.renderHeader()}
|
|
{this.renderSettings()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public renderHeader(): JSX.Element | undefined {
|
|
const labels = [window.i18n('settingsHeader')];
|
|
|
|
return LeftPane.RENDER_HEADER(
|
|
labels,
|
|
null,
|
|
undefined,
|
|
undefined,
|
|
undefined
|
|
);
|
|
}
|
|
|
|
public renderRows(): JSX.Element {
|
|
const categories = this.getCategories();
|
|
|
|
return (
|
|
<>
|
|
{categories.map(item => (
|
|
<div
|
|
key={item.id}
|
|
className={classNames(
|
|
'left-pane-setting-category-list-item',
|
|
item.id === this.state.settingCategory ? 'active' : ''
|
|
)}
|
|
role="link"
|
|
onClick={(): void => this.setCategory(item.id)}
|
|
>
|
|
<div>
|
|
<strong>{item.title}</strong>
|
|
<br />
|
|
<span className="text-subtle">{item.description}</span>
|
|
</div>
|
|
|
|
<div>
|
|
{item.id === this.state.settingCategory && (
|
|
<SessionIcon
|
|
iconSize={SessionIconSize.Medium}
|
|
iconType={SessionIconType.Chevron}
|
|
iconRotation={270}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
}
|
|
|
|
public renderCategories(): JSX.Element {
|
|
return (
|
|
<div className="module-left-pane__list" key={0}>
|
|
<div className="left-pane-setting-category-list">
|
|
{this.renderRows()}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public renderSettings(): JSX.Element {
|
|
return (
|
|
<div className="left-pane-setting-content">
|
|
<div className="left-pane-setting-input-group">
|
|
<SessionSearchInput
|
|
searchString={this.state.searchQuery}
|
|
onChange={() => null}
|
|
placeholder=""
|
|
/>
|
|
<div className="left-pane-setting-input-button">
|
|
<SessionButton
|
|
buttonType={SessionButtonType.Square}
|
|
buttonColor={SessionButtonColor.Green}
|
|
>
|
|
<SessionIcon
|
|
iconType={SessionIconType.Caret}
|
|
iconSize={SessionIconSize.Large}
|
|
/>
|
|
</SessionButton>
|
|
</div>
|
|
</div>
|
|
{this.renderCategories()}
|
|
{this.renderBottomButtons()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public renderBottomButtons(): JSX.Element {
|
|
const deleteAccount = window.i18n('deleteAccount');
|
|
const showSeed = window.i18n('showSeed');
|
|
|
|
return (
|
|
<div className="left-pane-setting-bottom-buttons">
|
|
<SessionButton
|
|
text={deleteAccount}
|
|
buttonType={SessionButtonType.SquareOutline}
|
|
buttonColor={SessionButtonColor.Danger}
|
|
onClick={this.onDeleteAccount}
|
|
/>
|
|
<SessionButton
|
|
text={showSeed}
|
|
buttonType={SessionButtonType.SquareOutline}
|
|
buttonColor={SessionButtonColor.White}
|
|
onClick={window.showSeedDialog}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public onDeleteAccount() {
|
|
const params = {
|
|
title: window.i18n('deleteAccount'),
|
|
message: window.i18n('deleteAccountWarning'),
|
|
messageSub: window.i18n('deleteAccountWarningSub'),
|
|
resolve: window.deleteAccount,
|
|
okTheme: 'danger',
|
|
};
|
|
|
|
window.confirmationDialog(params);
|
|
}
|
|
|
|
public getCategories() {
|
|
return [
|
|
{
|
|
id: SessionSettingCategory.General,
|
|
title: window.i18n('generalSettingsTitle'),
|
|
description: window.i18n('generalSettingsDescription'),
|
|
},
|
|
{
|
|
id: SessionSettingCategory.Privacy,
|
|
title: window.i18n('privacySettingsTitle'),
|
|
description: window.i18n('privacySettingsDescription'),
|
|
},
|
|
{
|
|
id: SessionSettingCategory.Permissions,
|
|
title: window.i18n('permissionSettingsTitle'),
|
|
description: window.i18n('permissionSettingsDescription'),
|
|
},
|
|
{
|
|
id: SessionSettingCategory.Notifications,
|
|
title: window.i18n('notificationSettingsTitle'),
|
|
description: window.i18n('notificationSettingsDescription'),
|
|
},
|
|
];
|
|
}
|
|
|
|
public setCategory(category: SessionSettingCategory) {
|
|
this.setState({
|
|
settingCategory: category,
|
|
});
|
|
}
|
|
|
|
// public updateSearch(searchTerm: string) {
|
|
// const { updateSearchTerm, clearSearch } = this.props;
|
|
|
|
// if (!searchTerm) {
|
|
// clearSearch();
|
|
|
|
// return;
|
|
// }
|
|
// // reset our pubKeyPasted, we can either have a pasted sessionID or a sessionID got from a search
|
|
// this.setState({ pubKeyPasted: '' }, () => {
|
|
// window.Session.emptyContentEditableDivs();
|
|
// });
|
|
|
|
// if (updateSearchTerm) {
|
|
// updateSearchTerm(searchTerm);
|
|
// }
|
|
|
|
// if (searchTerm.length < 2) {
|
|
// return;
|
|
// }
|
|
|
|
// const cleanedTerm = cleanSearchTerm(searchTerm);
|
|
// if (!cleanedTerm) {
|
|
// return;
|
|
// }
|
|
|
|
// this.debouncedSearch(cleanedTerm);
|
|
// }
|
|
}
|