|
|
|
@ -3,31 +3,64 @@ import ReactDOM from 'react-dom';
|
|
|
|
|
|
|
|
|
|
import { SessionSettingListItem, SessionSettingType } from './session/settings/SessionSettingListItem';
|
|
|
|
|
|
|
|
|
|
// interface State {
|
|
|
|
|
// }
|
|
|
|
|
import { SessionSettingCategory } from './session/LeftPaneSettingSection';
|
|
|
|
|
import { SessionButtonColor } from './session/SessionButton';
|
|
|
|
|
|
|
|
|
|
// interface Props {
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// export class LeftPane extends React.Component<Props, State> {
|
|
|
|
|
// public state = {
|
|
|
|
|
// };
|
|
|
|
|
// Grab initial values from database on startup
|
|
|
|
|
const localSettings = [
|
|
|
|
|
{
|
|
|
|
|
id: "typingIndicators",
|
|
|
|
|
title: "Typing Indicators",
|
|
|
|
|
description: "See and share when messages are being typed. This setting is optional and applies to all conversations.",
|
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
value: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "screenLock",
|
|
|
|
|
title: "Screen Lock",
|
|
|
|
|
description: "Unlock Loki Session using your password. Visit notification settings to customise.",
|
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
value: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "screenSecurity",
|
|
|
|
|
title: "Screen Security",
|
|
|
|
|
description: "Prevent Loki Session previews from appearing in desktop notifications.",
|
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
value: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "linkPreviews",
|
|
|
|
|
title: "Send Link Previews",
|
|
|
|
|
description: "Supported for imgur, Instagram, Pinterest, Reddit and YouTube.",
|
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
value: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "screenSecurity",
|
|
|
|
|
title: "Screen Security",
|
|
|
|
|
description: "Prevent Loki Session previews from appearing in desktop notifications.",
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
type: SessionSettingType.Toggle,
|
|
|
|
|
value: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "clearConversationHistory",
|
|
|
|
|
title: "Clear Conversation History",
|
|
|
|
|
category: SessionSettingCategory.Privacy,
|
|
|
|
|
type: SessionSettingType.Button,
|
|
|
|
|
value: false,
|
|
|
|
|
buttonText: 'Clear',
|
|
|
|
|
buttonColor: SessionButtonColor.Danger,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// public constructor(props: any) {
|
|
|
|
|
// super(props);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// public render(): JSX.Element {
|
|
|
|
|
// return (
|
|
|
|
|
// <div>
|
|
|
|
|
// Lorem ipsum dolor sit amet consectetur, adipisicing elit. Debitis, pariatur dicta placeat corporis similique modi quod veritatis voluptatum impedit tempore voluptas nostrum magni aspernatur iure, labore ipsam odit possimus exercitationem?
|
|
|
|
|
// </div>
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
export class MainViewController {
|
|
|
|
|
public static renderMessageView() {
|
|
|
|
@ -51,39 +84,42 @@ export class MainViewController {
|
|
|
|
|
public static renderSettingsView() {
|
|
|
|
|
const element = (
|
|
|
|
|
<div className="session-settings-list">
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = "Typing Indicators"
|
|
|
|
|
description = "See and share when messages are being typed. This setting is optional and applies to all conversations."
|
|
|
|
|
type = { SessionSettingType.Toggle }
|
|
|
|
|
value = { true }
|
|
|
|
|
/>
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = "Screen Lock"
|
|
|
|
|
description = "Unlock Loki Session using your password. Visit notification settings to customise."
|
|
|
|
|
type = { SessionSettingType.Toggle }
|
|
|
|
|
value = { false }
|
|
|
|
|
/>
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = "Enable Screen Security"
|
|
|
|
|
description = "Prevent Loki Session previews from appearing in the app switcher"
|
|
|
|
|
type = { SessionSettingType.Toggle }
|
|
|
|
|
value = { true }
|
|
|
|
|
/>
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = "Send Link Previews"
|
|
|
|
|
description = "Supported for imgur, Instagram, Pinterest, Reddit and YouTube."
|
|
|
|
|
type = { SessionSettingType.Toggle }
|
|
|
|
|
value = { true }
|
|
|
|
|
/>
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = "Clear Conversation History"
|
|
|
|
|
type = { SessionSettingType.Button }
|
|
|
|
|
value = { false }
|
|
|
|
|
onClick = { () => alert("Cleaaarred!") }
|
|
|
|
|
/>
|
|
|
|
|
{ localSettings.map(setting => {
|
|
|
|
|
return (
|
|
|
|
|
<SessionSettingListItem
|
|
|
|
|
title = { setting.title }
|
|
|
|
|
description = { setting.description }
|
|
|
|
|
type = { setting.type }
|
|
|
|
|
value = { setting.value }
|
|
|
|
|
onClick = { () => {
|
|
|
|
|
SettingsManager.updateSetting(setting);
|
|
|
|
|
}}
|
|
|
|
|
buttonText = { setting.buttonText || undefined }
|
|
|
|
|
buttonColor = { setting.buttonColor || undefined }
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}) }
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(element, document.getElementById('main-view'));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class SettingsManager {
|
|
|
|
|
public static updateSetting({ id, type, value } ) {
|
|
|
|
|
if (type === SessionSettingType.Toggle){
|
|
|
|
|
alert(`You clicked a toggle with ID: ${id}`);
|
|
|
|
|
|
|
|
|
|
// Manage toggle events
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alert('you clicked something else');
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|