diff --git a/_locales/en/messages.json b/_locales/en/messages.json index c53111f4e..02ffdaa57 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -289,6 +289,9 @@ "incomingError": { "message": "Error handling incoming message" }, + "openGroupInvitation": { + "message": "Open group invitation" + }, "media": { "message": "Media", "description": "Header of the default pane in the media gallery, showing images and videos", diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index f4665b540..cbffe6901 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -87,11 +87,11 @@ display: inline-flex; flex-direction: column; - padding: 8px; + padding: 0px 12px; .group-name { - font-weight: lighter; - padding-bottom: 4px; + font-weight: bold; + font-size: 18px; } .group-address { @@ -99,19 +99,17 @@ } } - .join-btn { - background-color: #00f782; - color: white; - padding: 6px 10px; - margin-inline-start: 6px; - border-radius: 2px; - box-shadow: none; - user-select: none; - cursor: pointer; - transition: $session-transition-duration; - - &:hover { - background-color: #00d672; + .session-icon-button { + @include themify($themes) { + background-color: themed('accent'); + box-shadow: none; + } + svg path { + transition: $session-transition-duration; + opacity: 0.6; + @include themify($themes) { + fill: themed('textColorOpposite'); + } } } } diff --git a/ts/components/conversation/GroupInvitation.tsx b/ts/components/conversation/GroupInvitation.tsx index 0faa862a3..7e4246bce 100644 --- a/ts/components/conversation/GroupInvitation.tsx +++ b/ts/components/conversation/GroupInvitation.tsx @@ -1,41 +1,43 @@ import React from 'react'; import classNames from 'classnames'; +import { SessionButton, SessionButtonType } from '../session/SessionButton'; +import { SessionIconButton, SessionIconSize, SessionIconType } from '../session/icon'; +import { useTheme } from 'styled-components'; -interface Props { +type Props = { serverName: string; serverAddress: string; direction: string; - onClick: any; -} + onJoinClick: () => void; +}; -export class GroupInvitation extends React.Component { - public render() { - const classes = ['group-invitation']; +export const GroupInvitation = (props: Props) => { + const theme = useTheme(); + const classes = ['group-invitation']; - if (this.props.direction === 'outgoing') { - classes.push('invitation-outgoing'); - } + if (props.direction === 'outgoing') { + classes.push('invitation-outgoing'); + } + const openGroupInvitation = window.i18n('openGroupInvitation'); - return ( -
-
-
Group invitation
-
- group-avatar - - {this.props.serverName} - {this.props.serverAddress} - - - Join - -
+ return ( +
+
+
+ + + {props.serverName} + {openGroupInvitation} + {props.serverAddress} +
- ); - } -} +
+ ); +}; diff --git a/ts/models/message.ts b/ts/models/message.ts index 84324a536..dbcdc4239 100644 --- a/ts/models/message.ts +++ b/ts/models/message.ts @@ -281,15 +281,20 @@ export class MessageModel extends Backbone.Model { if (!direction) { direction = this.get('type') === 'outgoing' ? 'outgoing' : 'incoming'; } - const serverAddress = invitation.serverAddress?.length - ? `${invitation.serverAddress.slice(0, 30)}...` - : ''; + + let serverAddress = ''; + try { + const url = new URL(invitation.serverAddress); + serverAddress = url.origin; + } catch (e) { + window.log.warn('failed to get hostname from opengroupv2 invitation', invitation); + } return { serverName: invitation.serverName, serverAddress, direction, - onClick: () => { + onJoinClick: () => { void acceptOpenGroupInvitation(invitation.serverAddress); }, }; diff --git a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts index 912671ea4..04d4aade9 100644 --- a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts +++ b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts @@ -409,7 +409,6 @@ const handleCompactPollResults = async ( serverUrl: string, results: Array ) => { - // console.warn('compoll res', results); await Promise.all( results.map(async res => { const convoId = getOpenGroupV2ConversationId(serverUrl, res.roomId); diff --git a/ts/receiver/closedGroups.ts b/ts/receiver/closedGroups.ts index 2e146c304..8c8eb08c9 100644 --- a/ts/receiver/closedGroups.ts +++ b/ts/receiver/closedGroups.ts @@ -643,7 +643,6 @@ function addMemberToZombies( if (isAlreadyZombie) { return false; } - // console.warn('Marking user ', userToAdd.key, ' as a zombie'); convo.set('zombies', [...zombies, userToAdd.key]); return true; } diff --git a/ts/session/snode_api/onions.ts b/ts/session/snode_api/onions.ts index 030a89bca..944a38e3f 100644 --- a/ts/session/snode_api/onions.ts +++ b/ts/session/snode_api/onions.ts @@ -443,7 +443,6 @@ const sendOnionRequest = async ( const guardUrl = `https://${nodePath[0].ip}:${nodePath[0].port}${target}`; // no logs for that one as we do need to call insecureNodeFetch to our guardNode // window.log.info('insecureNodeFetch => plaintext for sendOnionRequest'); - // console.warn('sendViaOnion payload: ', payload.length); const response = await insecureNodeFetch(guardUrl, guardFetchOptions); return processOnionResponse(reqIdx, response, destCtx.symmetricKey, false, abortSignal); diff --git a/ts/session/utils/syncUtils.ts b/ts/session/utils/syncUtils.ts index 9d69a4181..a5d1674be 100644 --- a/ts/session/utils/syncUtils.ts +++ b/ts/session/utils/syncUtils.ts @@ -67,8 +67,6 @@ export const forceSyncConfigurationNowIfNeeded = async (waitForMessageSent = fal void getCurrentConfigurationMessage(allConvos) .then(configMessage => { - // console.warn('forceSyncConfigurationNowIfNeeded with', configMessage); - // this just adds the message to the sending queue. // if waitForMessageSent is set, we need to effectively wait until then // tslint:disable-next-line: no-void-expression @@ -195,8 +193,6 @@ export const getCurrentConfigurationMessage = async (convos: Array