diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 4ebee76d9..dc6d4183d 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -2260,13 +2260,11 @@ "message": "Editing Profile" }, - "editProfileModalTitle": { "message": "Edit Profile", "description": "Title for the Edit Profile modal" }, - "profileName": { "message": "Profile Name" }, diff --git a/background.html b/background.html index f3a7bc28c..0a03d5540 100644 --- a/background.html +++ b/background.html @@ -60,7 +60,6 @@
-
@@ -701,7 +700,6 @@ - diff --git a/js/background.js b/js/background.js index a826bdd99..94d98147b 100644 --- a/js/background.js +++ b/js/background.js @@ -802,17 +802,13 @@ appView.openConversation(groupId, {}); }; + // $(document).ready(() => { + // window.settingsView = new Whisper.SessionSettingsView({ + // el: $('#settings-container'), + // }); + // window.settingsView.render(); + // }); - - $(document).ready(() => { - window.settingsView = new Whisper.SessionSettingsView({ - el: $('#settings-container'), - }); - window.settingsView.render(); - }); - - - window.generateID = () => Math.random() .toString(36) diff --git a/js/modules/signal.js b/js/modules/signal.js index 960f3a64c..f13542db1 100644 --- a/js/modules/signal.js +++ b/js/modules/signal.js @@ -50,8 +50,9 @@ const { } = require('../../ts/components/conversation/CreateGroupDialog'); const { EditProfileDialog } = require('../../ts/components/EditProfileDialog'); const { UserDetailsDialog } = require('../../ts/components/UserDetailsDialog'); -const { DevicePairingDialog } = require('../../ts/components/DevicePairingDialog'); -const { SessionSettings } = require('../../ts/components/session/SessionSettings'); +const { + SessionSettings, +} = require('../../ts/components/session/SessionSettings'); const { SessionToast } = require('../../ts/components/session/SessionToast'); const { SessionToggle } = require('../../ts/components/session/SessionToggle'); const { SessionModal } = require('../../ts/components/session/SessionModal'); @@ -250,7 +251,6 @@ exports.setup = (options = {}) => { CreateGroupDialog, EditProfileDialog, UserDetailsDialog, - DevicePairingDialog, SessionRegistrationView, ConfirmDialog, UpdateGroupDialog, diff --git a/js/views/session_settings_view.js b/js/views/session_settings_view.js index 1a566c990..4d5dac9b2 100644 --- a/js/views/session_settings_view.js +++ b/js/views/session_settings_view.js @@ -2,30 +2,27 @@ // eslint-disable-next-line func-names (function() { - 'use strict'; - - window.Whisper = window.Whisper || {}; - - Whisper.SessionSettingsView = Whisper.View.extend({ - initialize(options) { - console.log(options); + 'use strict'; - this.render(); - }, - render() { - this.settingsView = new Whisper.ReactWrapperView({ - className: 'session-settings', - Component: window.Signal.Components.SessionSettings, - props: { - i18n, - }, - }); - - this.$el.append(this.settingsView.el); - }, - close() { - this.remove(); - }, - }); -})(); + window.Whisper = window.Whisper || {}; + + Whisper.SessionSettingsView = Whisper.View.extend({ + initialize() { + this.render(); + }, + render() { + this.settingsView = new Whisper.ReactWrapperView({ + className: 'session-settings', + Component: window.Signal.Components.SessionSettings, + props: { + i18n, + }, + }); + this.$el.append(this.settingsView.el); + }, + close() { + this.remove(); + }, + }); +})(); diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 0740db986..76bdcc0f2 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -529,7 +529,8 @@ label { font-size: 15px; font-weight: 700; - &__icons, &__close { + &__icons, + &__close { width: 60px; } &__icons { @@ -551,7 +552,7 @@ label { line-height: 16px; font-size: 13px; - .message{ + .message { text-align: center; } } @@ -560,14 +561,13 @@ label { display: flex; justify-content: flex-end; - &__center{ + &__center { align-items: center; } .session-button { margin-left: $session-margin-sm; } } - } .session-toggle { @@ -680,16 +680,8 @@ label { } } - - .edit-profile-dialog .image-upload-section { position: absolute; margin-top: 50px; margin-left: 75px; } - -#settings-container { - width: 100%; - height: 100%; - background-color: blue; -} \ No newline at end of file diff --git a/ts/components/ConfirmDialog.tsx b/ts/components/ConfirmDialog.tsx index ef02efaf0..77f902680 100644 --- a/ts/components/ConfirmDialog.tsx +++ b/ts/components/ConfirmDialog.tsx @@ -19,20 +19,24 @@ export class ConfirmDialog extends React.Component { public render() { return ( - null} onOk={() => null}> -
+ null} + onOk={() => null} + > +

{this.props.messageText}

-
+
- - -
diff --git a/ts/components/DevicePairingDialog.tsx b/ts/components/DevicePairingDialog.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/ts/components/EditProfileDialog.tsx b/ts/components/EditProfileDialog.tsx index 438d937a9..671dab958 100644 --- a/ts/components/EditProfileDialog.tsx +++ b/ts/components/EditProfileDialog.tsx @@ -2,10 +2,13 @@ import React from 'react'; import classNames from 'classnames'; import { Avatar } from './Avatar'; -import { SessionModal } from './session/SessionModal'; import { SessionButton, SessionButtonColor } from './session/SessionButton'; -import { SessionIconButton, SessionIconType, SessionIconSize } from './session/icon'; - +import { + SessionIconButton, + SessionIconSize, + SessionIconType, +} from './session/icon'; +import { SessionModal } from './session/SessionModal'; declare global { interface Window { @@ -85,23 +88,23 @@ export class EditProfileDialog extends React.Component { name="name" onChange={this.onFileSelected} /> - - { - const el = this.inputEl.current; - if (el) { - el.click(); - } - }} - /> + + { + const el = this.inputEl.current; + if (el) { + el.click(); + } + }} + />
-
- +
+ { />
{i18n('editProfileDisplayNameWarning')}
{this.state.errorMessage} - -
+ +
{ public render() { const i18n = this.props.i18n; - + return ( {
diff --git a/ts/components/conversation/CreateGroupDialog.tsx b/ts/components/conversation/CreateGroupDialog.tsx index 943ce22cc..6dd617bb3 100644 --- a/ts/components/conversation/CreateGroupDialog.tsx +++ b/ts/components/conversation/CreateGroupDialog.tsx @@ -2,6 +2,8 @@ import React from 'react'; import classNames from 'classnames'; import { Contact, MemberList } from './MemberList'; +import { SessionModal } from './../session/SessionModal'; + declare global { interface Window { Lodash: any; @@ -92,8 +94,7 @@ export class CreateGroupDialog extends React.Component { ); return ( -
-

{titleText}

+ null} onOk={() => null}>

{this.state.errorMessage}

{ {okText}
-
+ ); } diff --git a/ts/components/conversation/UpdateGroupDialog.tsx b/ts/components/conversation/UpdateGroupDialog.tsx index 0e0d2710b..15509adf8 100644 --- a/ts/components/conversation/UpdateGroupDialog.tsx +++ b/ts/components/conversation/UpdateGroupDialog.tsx @@ -2,6 +2,8 @@ import React from 'react'; import classNames from 'classnames'; import { Contact, MemberList } from './MemberList'; +import { SessionModal } from './../session/SessionModal'; + declare global { interface Window { SMALL_GROUP_SIZE_LIMIT: number; @@ -105,9 +107,11 @@ export class UpdateGroupDialog extends React.Component { ); return ( -
-

{titleText}

+ null} onOk={() => null}> +

{errorMsg}

+
+ { aria-required={true} autoFocus={true} /> +
{ {okText}
-
+ ); } diff --git a/ts/components/session/SessionModal.tsx b/ts/components/session/SessionModal.tsx index 9217568b3..9977046d7 100644 --- a/ts/components/session/SessionModal.tsx +++ b/ts/components/session/SessionModal.tsx @@ -19,7 +19,6 @@ interface State { } export class SessionModal extends React.PureComponent { - constructor(props: any) { super(props); this.state = { @@ -37,34 +36,34 @@ export class SessionModal extends React.PureComponent { const { isVisible } = this.state; return isVisible ? ( -
-
-
- -
-
{title}
-
- { headerIconButtons ? headerIconButtons.map((iconItem: any) => { - return ( - - ) - }) : null - } -
+
+
+
+
- -
- {this.props.children} +
{title}
+
+ {headerIconButtons + ? headerIconButtons.map((iconItem: any) => { + return ( + + ); + }) + : null}
- ) : null; + +
{this.props.children}
+
+ ) : null; } public close() { @@ -76,7 +75,7 @@ export class SessionModal extends React.PureComponent { this.props.onClose(); } - public onKeyUp(event: any){ + public onKeyUp(event: any) { switch (event.key) { case 'Enter': this.props.onOk(); diff --git a/ts/components/session/SessionSettings.tsx b/ts/components/session/SessionSettings.tsx index 0f70cd4d7..eacd69b4c 100644 --- a/ts/components/session/SessionSettings.tsx +++ b/ts/components/session/SessionSettings.tsx @@ -1,6 +1,5 @@ import React from 'react'; - interface Props { i18n: any; } @@ -12,17 +11,7 @@ export class SessionSettings extends React.Component { public render() { const i18n = this.props.i18n; - - return ( -
- gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! - gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! - gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! - gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! - gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! - gakslfadsnkjnbtbnl Lorem ipsum dolor sit amet consectetur, adipisicing elit. Earum sapiente adipisci molestias iusto aut harum vel, voluptas illo laboriosam, doloremque alias, ducimus tenetur ad! Saepe inventore at quas nulla ab! -
- ); - } + return
; + } }