|
|
|
@ -11,10 +11,10 @@ import { SettingsCategoryPrivacy } from './section/CategoryPrivacy';
|
|
|
|
|
import { SettingsCategoryAppearance } from './section/CategoryAppearance';
|
|
|
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
|
|
|
|
|
import { Data } from '../../data/data';
|
|
|
|
|
import { LocalizerKeys } from '../../types/LocalizerKeys';
|
|
|
|
|
import { matchesHash } from '../../util/passwordUtils';
|
|
|
|
|
import { SettingsCategoryPermissions } from './section/CategoryPermissions';
|
|
|
|
|
import { SettingsCategoryHelp } from './section/CategoryHelp';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
|
|
export function getMediaPermissionsSettings() {
|
|
|
|
|
return window.getSettingValue('media-permissions');
|
|
|
|
@ -50,22 +50,62 @@ interface State {
|
|
|
|
|
shouldLockSettings: boolean | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const StyledVersionInfo = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
padding: var(--margins-sm) var(--margins-md);
|
|
|
|
|
background: none;
|
|
|
|
|
font-size: var(--font-size-xs);
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const StyledSpanSessionInfo = styled.span`
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
transition: var(--default-duration);
|
|
|
|
|
user-select: text;
|
|
|
|
|
|
|
|
|
|
:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const SessionInfo = () => {
|
|
|
|
|
const openOxenWebsite = () => {
|
|
|
|
|
void shell.openExternal('https://oxen.io/');
|
|
|
|
|
};
|
|
|
|
|
return (
|
|
|
|
|
<div className="session-settings__version-info">
|
|
|
|
|
<span className="text-selectable">v{window.versionInfo.version}</span>
|
|
|
|
|
<span>
|
|
|
|
|
<StyledVersionInfo>
|
|
|
|
|
<StyledSpanSessionInfo>v{window.versionInfo.version}</StyledSpanSessionInfo>
|
|
|
|
|
<StyledSpanSessionInfo>
|
|
|
|
|
<SessionIconButton iconSize="medium" iconType="oxen" onClick={openOxenWebsite} />
|
|
|
|
|
</span>
|
|
|
|
|
<span className="text-selectable">{window.versionInfo.commitHash}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</StyledSpanSessionInfo>
|
|
|
|
|
<StyledSpanSessionInfo>{window.versionInfo.commitHash}</StyledSpanSessionInfo>
|
|
|
|
|
</StyledVersionInfo>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const PasswordLock = ({
|
|
|
|
|
const StyledPasswordInput = styled.input`
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: var(--color-input-background);
|
|
|
|
|
color: var(--color-text);
|
|
|
|
|
|
|
|
|
|
padding: var(--margins-xs) var(--margins-md);
|
|
|
|
|
margin-bottom: var(--margins-lg);
|
|
|
|
|
outline: none;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
letter-spacing: 5px;
|
|
|
|
|
font-family: var(--font-default);
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const StyledH3 = styled.h3`
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin-bottom: var(--margins-lg);
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const PasswordLock = ({
|
|
|
|
|
pwdLockError,
|
|
|
|
|
validatePasswordLock,
|
|
|
|
|
}: {
|
|
|
|
@ -75,13 +115,14 @@ export const PasswordLock = ({
|
|
|
|
|
return (
|
|
|
|
|
<div className="session-settings__password-lock">
|
|
|
|
|
<div className="session-settings__password-lock-box">
|
|
|
|
|
<h3>{window.i18n('password')}</h3>
|
|
|
|
|
<input
|
|
|
|
|
<StyledH3>{window.i18n('password')}</StyledH3>
|
|
|
|
|
<StyledPasswordInput
|
|
|
|
|
type="password"
|
|
|
|
|
id="password-lock-input"
|
|
|
|
|
defaultValue=""
|
|
|
|
|
placeholder="Password"
|
|
|
|
|
data-testid="password-lock-input"
|
|
|
|
|
autoFocus={true}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{pwdLockError && <div className="session-label warning">{pwdLockError}</div>}
|
|
|
|
@ -97,6 +138,42 @@ export const PasswordLock = ({
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SettingInCategory = (props: {
|
|
|
|
|
category: SessionSettingCategory;
|
|
|
|
|
hasPassword: boolean;
|
|
|
|
|
onPasswordUpdated: (action: string) => void;
|
|
|
|
|
}) => {
|
|
|
|
|
const { category, hasPassword, onPasswordUpdated } = props;
|
|
|
|
|
|
|
|
|
|
if (hasPassword === null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
switch (category) {
|
|
|
|
|
// special case for blocked user
|
|
|
|
|
case SessionSettingCategory.Conversations:
|
|
|
|
|
return <CategoryConversations />;
|
|
|
|
|
case SessionSettingCategory.Appearance:
|
|
|
|
|
return <SettingsCategoryAppearance hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Notifications:
|
|
|
|
|
return <SessionNotificationGroupSettings hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Privacy:
|
|
|
|
|
return (
|
|
|
|
|
<SettingsCategoryPrivacy onPasswordUpdated={onPasswordUpdated} hasPassword={hasPassword} />
|
|
|
|
|
);
|
|
|
|
|
case SessionSettingCategory.Help:
|
|
|
|
|
return <SettingsCategoryHelp hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Permissions:
|
|
|
|
|
return <SettingsCategoryPermissions hasPassword={hasPassword} />;
|
|
|
|
|
|
|
|
|
|
// those three down there have no options, they are just a button
|
|
|
|
|
case SessionSettingCategory.ClearData:
|
|
|
|
|
case SessionSettingCategory.MessageRequests:
|
|
|
|
|
case SessionSettingCategory.RecoveryPhrase:
|
|
|
|
|
default:
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export class SessionSettingsView extends React.Component<SettingsViewProps, State> {
|
|
|
|
|
public settingsViewRef: React.RefObject<HTMLDivElement>;
|
|
|
|
|
|
|
|
|
@ -114,7 +191,11 @@ export class SessionSettingsView extends React.Component<SettingsViewProps, Stat
|
|
|
|
|
this.settingsViewRef = React.createRef();
|
|
|
|
|
autoBind(this);
|
|
|
|
|
|
|
|
|
|
void this.hasPassword();
|
|
|
|
|
void Data.getPasswordHash().then(hash => {
|
|
|
|
|
this.setState({
|
|
|
|
|
hasPassword: !!hash,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public componentDidMount() {
|
|
|
|
@ -123,51 +204,12 @@ export class SessionSettingsView extends React.Component<SettingsViewProps, Stat
|
|
|
|
|
const mediaSetting = getMediaPermissionsSettings();
|
|
|
|
|
const callMediaSetting = getCallMediaPermissionsSettings();
|
|
|
|
|
this.setState({ mediaSetting, callMediaSetting });
|
|
|
|
|
|
|
|
|
|
setTimeout(() => document.getElementById('password-lock-input')?.focus(), 100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
|
|
|
|
window.removeEventListener('keyup', this.onKeyUp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* tslint:disable-next-line:max-func-body-length */
|
|
|
|
|
public renderSettingInCategory() {
|
|
|
|
|
const { category } = this.props;
|
|
|
|
|
|
|
|
|
|
if (this.state.hasPassword === null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
const hasPassword = this.state.hasPassword;
|
|
|
|
|
switch (category) {
|
|
|
|
|
// special case for blocked user
|
|
|
|
|
case SessionSettingCategory.Conversations:
|
|
|
|
|
return <CategoryConversations />;
|
|
|
|
|
case SessionSettingCategory.Appearance:
|
|
|
|
|
return <SettingsCategoryAppearance hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Notifications:
|
|
|
|
|
return <SessionNotificationGroupSettings hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Privacy:
|
|
|
|
|
return (
|
|
|
|
|
<SettingsCategoryPrivacy
|
|
|
|
|
onPasswordUpdated={this.onPasswordUpdated}
|
|
|
|
|
hasPassword={hasPassword}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
case SessionSettingCategory.Help:
|
|
|
|
|
return <SettingsCategoryHelp hasPassword={hasPassword} />;
|
|
|
|
|
case SessionSettingCategory.Permissions:
|
|
|
|
|
return <SettingsCategoryPermissions hasPassword={hasPassword} />;
|
|
|
|
|
|
|
|
|
|
// those three down there have no options, they are just a button
|
|
|
|
|
case SessionSettingCategory.ClearData:
|
|
|
|
|
case SessionSettingCategory.MessageRequests:
|
|
|
|
|
case SessionSettingCategory.RecoveryPhrase:
|
|
|
|
|
default:
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async validatePasswordLock() {
|
|
|
|
|
const enteredPassword = String(
|
|
|
|
|
(document.getElementById('password-lock-input') as HTMLInputElement)?.value
|
|
|
|
@ -203,18 +245,10 @@ export class SessionSettingsView extends React.Component<SettingsViewProps, Stat
|
|
|
|
|
public render() {
|
|
|
|
|
const { category } = this.props;
|
|
|
|
|
const shouldRenderPasswordLock = this.state.shouldLockSettings && this.state.hasPassword;
|
|
|
|
|
const categoryLocalized: LocalizerKeys =
|
|
|
|
|
category === SessionSettingCategory.Appearance
|
|
|
|
|
? 'appearanceSettingsTitle'
|
|
|
|
|
: category === SessionSettingCategory.Conversations
|
|
|
|
|
? 'blockedSettingsTitle'
|
|
|
|
|
: category === SessionSettingCategory.Notifications
|
|
|
|
|
? 'notificationsSettingsTitle'
|
|
|
|
|
: 'privacySettingsTitle';
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="session-settings">
|
|
|
|
|
<SettingsHeader category={category} categoryTitle={window.i18n(categoryLocalized)} />
|
|
|
|
|
<SettingsHeader category={category} />
|
|
|
|
|
|
|
|
|
|
<div className="session-settings-view">
|
|
|
|
|
{shouldRenderPasswordLock ? (
|
|
|
|
@ -224,7 +258,11 @@ export class SessionSettingsView extends React.Component<SettingsViewProps, Stat
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<div ref={this.settingsViewRef} className="session-settings-list">
|
|
|
|
|
{this.renderSettingInCategory()}
|
|
|
|
|
<SettingInCategory
|
|
|
|
|
category={category}
|
|
|
|
|
onPasswordUpdated={this.onPasswordUpdated}
|
|
|
|
|
hasPassword={Boolean(this.state.hasPassword)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<SessionInfo />
|
|
|
|
@ -233,14 +271,6 @@ export class SessionSettingsView extends React.Component<SettingsViewProps, Stat
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async hasPassword() {
|
|
|
|
|
const hash = await Data.getPasswordHash();
|
|
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
hasPassword: !!hash,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public onPasswordUpdated(action: string) {
|
|
|
|
|
if (action === 'set' || action === 'change') {
|
|
|
|
|
this.setState({
|
|
|
|
|