From c5e0fe8503c6ac36692d9bea7018368e7d162c3d Mon Sep 17 00:00:00 2001 From: Vincent Date: Tue, 4 Feb 2020 18:07:31 +1100 Subject: [PATCH] Closed groups UI --- stylesheets/_session.scss | 56 +++++++ stylesheets/_session_left_pane.scss | 4 +- .../conversation/CreateGroupDialog.tsx | 6 + .../conversation/InviteFriendsDialog.tsx | 11 ++ ts/components/conversation/MemberList.tsx | 3 +- .../session/LeftPaneChannelSection.tsx | 14 +- .../session/SessionClosableOverlay.tsx | 148 +++++++++++++++--- ts/components/session/SessionIdEditable.tsx | 5 +- .../session/SessionMemberListItem.tsx | 123 +++++++++++++++ ts/global.d.ts | 2 + 10 files changed, 338 insertions(+), 34 deletions(-) create mode 100644 ts/components/session/SessionMemberListItem.tsx diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 1dc7e0a32..d7191ce6c 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -1675,3 +1675,59 @@ input { } } } + + +.group-member-list { + &__container { + padding: 2px 0px; + width: 100%; + max-height: 400px; + overflow-y: auto; + box-shadow: + inset 0px 14px 7px -15px $session-color-dark-grey, + inset 0px -14px 7px -15px $session-color-dark-grey; + } + + &__selection { + height: 100%; + display: flex; + flex-direction: column; + + } +} +.session-member-item { + font-family: "SF Pro Text"; + padding: 0px $session-margin-sm; + height: 50px; + display: flex; + justify-content: space-between; + transition: $session-transition-duration; + + &.selected { + background-color: $session-shade-4; + } + + + &__checkmark { + opacity: 0; + transition: $session-transition-duration; + + &.selected{ + opacity: 1; + } + } + + &__info, &__checkmark{ + display: flex; + align-items: center; + } + + &__name { + font-weight: bold; + margin-left: $session-margin-md; + } + &__pubkey { + margin-left: 5px; + opacity: 0.8; + } +} \ No newline at end of file diff --git a/stylesheets/_session_left_pane.scss b/stylesheets/_session_left_pane.scss index 04fed7709..3c5b70929 100644 --- a/stylesheets/_session_left_pane.scss +++ b/stylesheets/_session_left_pane.scss @@ -177,8 +177,8 @@ $session-compose-margin: 20px; &__header { display: flex; flex-direction: row; - margin: 15px 7px 14px 0px; - height: 33px; + padding: 15px 7px 14px 0px; + height: 63px; @at-root .light-theme #{&} { background-color: $session-color-white; diff --git a/ts/components/conversation/CreateGroupDialog.tsx b/ts/components/conversation/CreateGroupDialog.tsx index 6dd617bb3..6e59abf6a 100644 --- a/ts/components/conversation/CreateGroupDialog.tsx +++ b/ts/components/conversation/CreateGroupDialog.tsx @@ -39,6 +39,7 @@ export class CreateGroupDialog extends React.Component { this.onGroupNameChanged = this.onGroupNameChanged.bind(this); let friends = this.props.friendList; + friends = friends.map(d => { const lokiProfile = d.getLokiProfile(); const name = lokiProfile ? lokiProfile.displayName : 'Anonymous'; @@ -95,6 +96,8 @@ export class CreateGroupDialog extends React.Component { return ( null} onOk={() => null}> +
+

{this.state.errorMessage}

{ onMemberClicked={this.onMemberClicked} /> + +
+