add popup for disabling multi device

pull/1288/head
Audric Ackermann 5 years ago
parent a853d27b28
commit abc9456d14
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1319,16 +1319,20 @@
"description": "Title of the typing indicators setting" "description": "Title of the typing indicators setting"
}, },
"multiDeviceDisabledTemporary": { "multiDeviceDisabledTemporary": {
"message": "<FIXME placeholder>", "message": "MultiDevice disabled temporarily",
"description": "Description of why multi device is disabled" "description": "Description of why multi device is disabled"
}, },
"multiDeviceDisabledTemporaryToastMessage": { "multiDeviceDisabledTemporaryTitle": {
"message": "<FIXME placeholder>", "message": "Changes to Multi-device",
"description": "Description of why multi device is disabled on a toast on app start" "description": "Description of why multi device is disabled on app start"
}, },
"multiDeviceDisabledTemporaryToastDescription": { "multiDeviceDisabledTemporaryDescriptionPrimary": {
"message": "<FIXME placeholder> ", "message": "Youre seeing this because you have a secondary device linked to your Session ID. To improve reliability and stability, weve decided to temporarily disable Sessions multi-device functionality on <span style=\"color:#00f782\">August 6th</span>. Device linking has been disabled, and the next update will erase existing secondary devices. </br></br>To read more about this change, visit the Session FAQ at <a href=\"https://getsession.org/faq\">getsession.org/faq</a>",
"description": "Description of why multi device is disabled on a toast on app start" "description": "Description of why multi device is disabled on app start for a primary device"
},
"multiDeviceDisabledTemporaryDescriptionSecondary": {
"message": "Youre seeing this because this is a secondary device in a multi-device setup. To improve reliability and stability, weve decided to temporarily disable Sessions multi-device functionality on <span style=\"color:#00f782\">August 6th</span>. Device linking has been disabled, and the next update will erase existing secondary devices.</br>To read more about this change, visit the Session FAQ at <a href=\"https://getsession.org/faq\">getsession.org/faq</a>",
"description": "Description of why multi device is disabled on app start for a secondary device"
}, },
"messageTTL": { "messageTTL": {
"message": "Message TTL", "message": "Message TTL",

@ -90,12 +90,14 @@
type: 'success', type: 'success',
}); });
}, },
showConfirmationDialog({ title, message, onOk, onCancel }) { showConfirmationDialog({ title, message, messageSub, onOk, onCancel, hideCancel }) {
window.confirmationDialog({ window.confirmationDialog({
title, title,
message, message,
resolve: onOk, resolve: onOk,
reject: onCancel, reject: onCancel,
hideCancel,
messageSub,
}); });
}, },
}); });

@ -242,7 +242,7 @@ body.dark-theme {
} }
a { a {
color: $blue; color: $session-color-green;
} }
.file-input { .file-input {
@ -410,7 +410,7 @@ body.dark-theme {
} }
} }
a.link { a.link {
color: #2090ea; color: $session-color-green;
} }
.progress { .progress {

@ -2,6 +2,7 @@ import React from 'react';
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon'; import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
import { Avatar } from '../Avatar'; import { Avatar } from '../Avatar';
import { PropsData as ConversationListItemPropsType } from '../ConversationListItem'; import { PropsData as ConversationListItemPropsType } from '../ConversationListItem';
import { MultiDeviceProtocol } from '../../session/protocols';
export enum SectionType { export enum SectionType {
Profile, Profile,
@ -57,17 +58,24 @@ export class ActionsPanel extends React.Component<Props, State> {
'refreshAvatarCallback' 'refreshAvatarCallback'
); );
setTimeout( setTimeout(
() => async () => {
window.pushToast({ const hasMultipleDevices = (await MultiDeviceProtocol.getOurDevices()).length > 1;
title: window.i18n('multiDeviceDisabledTemporaryToastMessage'), const primaryWithSecondary = !window.textsecure.storage.get('isSecondaryDevice') && hasMultipleDevices;
description: window.i18n( const isSecondary = !!window.textsecure.storage.get('isSecondaryDevice');
'multiDeviceDisabledTemporaryToastMessage'
), if (!primaryWithSecondary && !isSecondary) {
type: 'warning', return;
id: 'multiDeviceDisabledTemporaryToastMessage', }
shouldFade: false,
}), const opts = {
4000 hideCancel: true,
title: window.i18n('multiDeviceDisabledTemporaryTitle'),
message: primaryWithSecondary ? window.i18n('multiDeviceDisabledTemporaryDescriptionPrimary') : window.i18n('multiDeviceDisabledTemporaryDescriptionSecondary')
,
};
window.Whisper.events.trigger('showConfirmationDialog', opts);
},
1000
); );
} }
); );

@ -557,7 +557,7 @@ export class RegistrationTabs extends React.Component<{}, State> {
SessionButtonType.BrandOutline, SessionButtonType.BrandOutline,
SessionButtonColor.Green SessionButtonColor.Green
)} )}
<h4>{or}</h4> {/*<h4>{or}</h4>*/}
{/* FIXME enable back to allow linking of device {/* FIXME enable back to allow linking of device
this.renderLinkDeviceToExistingAccountButton() */} this.renderLinkDeviceToExistingAccountButton() */}
</div> </div>
@ -584,7 +584,7 @@ export class RegistrationTabs extends React.Component<{}, State> {
return ( return (
<div> <div>
{this.renderContinueYourSessionButton()} {this.renderContinueYourSessionButton()}
<h4>{or}</h4> {/*<h4>{or}</h4>*/}
{/* FIXME enable back to allow linking of device {/* FIXME enable back to allow linking of device
this.renderLinkDeviceToExistingAccountButton()*/} this.renderLinkDeviceToExistingAccountButton()*/}
</div> </div>

@ -1,6 +1,7 @@
import React from 'react'; import React from 'react';
import { SessionModal } from './SessionModal'; import { SessionModal } from './SessionModal';
import { SessionButton, SessionButtonColor } from './SessionButton'; import { SessionButton, SessionButtonColor } from './SessionButton';
import { SessionHtmlRenderer } from './SessionHTMLRenderer';
interface Props { interface Props {
message: string; message: string;
@ -61,7 +62,7 @@ export class SessionConfirm extends React.Component<Props> {
{!showHeader && <div className="spacer-lg" />} {!showHeader && <div className="spacer-lg" />}
<div className="session-modal__centered"> <div className="session-modal__centered">
<span className={messageSubText}>{message}</span> <SessionHtmlRenderer tag="span" className={messageSubText} html={message} />
{messageSub && ( {messageSub && (
<span className="session-confirm-sub-message subtle"> <span className="session-confirm-sub-message subtle">
{messageSub} {messageSub}

@ -5,6 +5,7 @@ interface ReceivedProps {
html: string; html: string;
tag?: string; tag?: string;
key?: any; key?: any;
className?: string;
} }
// Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339 // Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339
@ -14,14 +15,16 @@ export const SessionHtmlRenderer: React.SFC<Props> = ({
tag = 'div', tag = 'div',
key, key,
html, html,
className,
}) => { }) => {
const clean = DOMPurify.sanitize(html, { const clean = DOMPurify.sanitize(html, {
USE_PROFILES: { html: true }, USE_PROFILES: { html: true },
FORBID_ATTR: ['style', 'script'], FORBID_ATTR: ['script'],
}); });
return React.createElement(tag, { return React.createElement(tag, {
key, key,
className,
dangerouslySetInnerHTML: { __html: clean }, dangerouslySetInnerHTML: { __html: clean },
}); });
}; };

Loading…
Cancel
Save