|
|
@ -1,76 +1,93 @@
|
|
|
|
import React from 'react';
|
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
|
|
|
|
|
|
|
import { SessionSettingListItem, SessionSettingType } from './session/settings/SessionSettingListItem';
|
|
|
|
import {
|
|
|
|
|
|
|
|
SessionSettingListItem,
|
|
|
|
|
|
|
|
SessionSettingType,
|
|
|
|
|
|
|
|
} from './session/settings/SessionSettingListItem';
|
|
|
|
|
|
|
|
|
|
|
|
import { SessionSettingCategory } from './session/LeftPaneSettingSection';
|
|
|
|
import { SessionSettingCategory } from './session/LeftPaneSettingSection';
|
|
|
|
import { SessionButtonColor } from './session/SessionButton';
|
|
|
|
import { SessionButtonColor } from './session/SessionButton';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Grab initial values from database on startup
|
|
|
|
// Grab initial values from database on startup
|
|
|
|
const localSettings = [
|
|
|
|
const localSettings = [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "typingIndicators",
|
|
|
|
id: 'typingIndicators',
|
|
|
|
title: "Typing Indicators",
|
|
|
|
title: 'Typing Indicators',
|
|
|
|
description: "See and share when messages are being typed. This setting is optional and applies to all conversations.",
|
|
|
|
description:
|
|
|
|
|
|
|
|
'See and share when messages are being typed. This setting is optional and applies to all conversations.',
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
value: false,
|
|
|
|
value: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "screenLock",
|
|
|
|
id: 'screenLock',
|
|
|
|
title: "Screen Lock",
|
|
|
|
title: 'Screen Lock',
|
|
|
|
description: "Unlock Loki Session using your password. Visit notification settings to customise.",
|
|
|
|
description:
|
|
|
|
|
|
|
|
'Unlock Loki Session using your password. Visit notification settings to customise.',
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
value: true,
|
|
|
|
value: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "screenSecurity",
|
|
|
|
id: 'screenSecurity',
|
|
|
|
title: "Screen Security",
|
|
|
|
title: 'Screen Security',
|
|
|
|
description: "Prevent Loki Session previews from appearing in desktop notifications.",
|
|
|
|
description:
|
|
|
|
|
|
|
|
'Prevent Loki Session previews from appearing in desktop notifications.',
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
value: false,
|
|
|
|
value: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "linkPreviews",
|
|
|
|
id: 'linkPreviews',
|
|
|
|
title: "Send Link Previews",
|
|
|
|
title: 'Send Link Previews',
|
|
|
|
description: "Supported for imgur, Instagram, Pinterest, Reddit and YouTube.",
|
|
|
|
description:
|
|
|
|
|
|
|
|
'Supported for Imgur, Instagram, Pinterest, Reddit and YouTube.',
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
value: true,
|
|
|
|
value: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "screenSecurity",
|
|
|
|
id: 'clearConversationHistory',
|
|
|
|
title: "Screen Security",
|
|
|
|
title: 'Clear Conversation History',
|
|
|
|
description: "Prevent Loki Session previews from appearing in desktop notifications.",
|
|
|
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
type: SessionSettingType.Button,
|
|
|
|
value: false,
|
|
|
|
value: false,
|
|
|
|
|
|
|
|
buttonText: 'Clear',
|
|
|
|
|
|
|
|
buttonColor: SessionButtonColor.Danger,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: "clearConversationHistory",
|
|
|
|
id: 'changePassword',
|
|
|
|
title: "Clear Conversation History",
|
|
|
|
title: 'Change Password',
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
category: SessionSettingCategory.Account,
|
|
|
|
type: SessionSettingType.Button,
|
|
|
|
type: SessionSettingType.Button,
|
|
|
|
value: false,
|
|
|
|
value: false,
|
|
|
|
buttonText: 'Clear',
|
|
|
|
buttonText: 'Change',
|
|
|
|
|
|
|
|
buttonColor: SessionButtonColor.Primary,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 'removePassword',
|
|
|
|
|
|
|
|
title: 'Remove Password',
|
|
|
|
|
|
|
|
category: SessionSettingCategory.Account,
|
|
|
|
|
|
|
|
type: SessionSettingType.Button,
|
|
|
|
|
|
|
|
value: false,
|
|
|
|
|
|
|
|
buttonText: 'Remove',
|
|
|
|
buttonColor: SessionButtonColor.Danger,
|
|
|
|
buttonColor: SessionButtonColor.Danger,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class MainViewController {
|
|
|
|
export class MainViewController {
|
|
|
|
public static renderMessageView() {
|
|
|
|
public static renderMessageView() {
|
|
|
|
const element = (
|
|
|
|
const element = (
|
|
|
|
<div className="conversation-stack">
|
|
|
|
<div className="conversation-stack">
|
|
|
|
<div className="conversation placeholder">
|
|
|
|
<div className="conversation placeholder">
|
|
|
|
<div className="conversation-header"></div>
|
|
|
|
<div className="conversation-header" />
|
|
|
|
<div className="container">
|
|
|
|
<div className="container">
|
|
|
|
<div className="content">
|
|
|
|
<div className="content">
|
|
|
|
<img src="images/session/brand.svg" className="session-filter-color-green session-logo-128"/>
|
|
|
|
<img
|
|
|
|
|
|
|
|
src="images/session/brand.svg"
|
|
|
|
|
|
|
|
className="session-filter-color-green session-logo-128"
|
|
|
|
|
|
|
|
/>
|
|
|
|
<p className="session-logo-text">SESSION</p>
|
|
|
|
<p className="session-logo-text">SESSION</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -81,11 +98,13 @@ export class MainViewController {
|
|
|
|
ReactDOM.render(element, document.getElementById('main-view'));
|
|
|
|
ReactDOM.render(element, document.getElementById('main-view'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static renderSettingsView() {
|
|
|
|
public static renderSettingsView(category: SessionSettingCategory) {
|
|
|
|
const element = (
|
|
|
|
const element = (
|
|
|
|
<div className="session-settings-list">
|
|
|
|
<div className="session-settings-list">
|
|
|
|
{localSettings.map(setting => {
|
|
|
|
{localSettings.map(setting => {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
|
|
|
|
<div key={setting.id}>
|
|
|
|
|
|
|
|
{setting.category === category && (
|
|
|
|
<SessionSettingListItem
|
|
|
|
<SessionSettingListItem
|
|
|
|
title={setting.title}
|
|
|
|
title={setting.title}
|
|
|
|
description={setting.description}
|
|
|
|
description={setting.description}
|
|
|
@ -97,6 +116,8 @@ export class MainViewController {
|
|
|
|
buttonText={setting.buttonText || undefined}
|
|
|
|
buttonText={setting.buttonText || undefined}
|
|
|
|
buttonColor={setting.buttonColor || undefined}
|
|
|
|
buttonColor={setting.buttonColor || undefined}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -106,7 +127,6 @@ export class MainViewController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class SettingsManager {
|
|
|
|
export class SettingsManager {
|
|
|
|
public static updateSetting({ id, type, value }) {
|
|
|
|
public static updateSetting({ id, type, value }) {
|
|
|
|
if (type === SessionSettingType.Toggle) {
|
|
|
|
if (type === SessionSettingType.Toggle) {
|
|
|
@ -114,7 +134,6 @@ export class SettingsManager {
|
|
|
|
|
|
|
|
|
|
|
|
// Manage toggle events
|
|
|
|
// Manage toggle events
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|