|
|
|
@ -4,8 +4,10 @@ import { SessionIconButton, SessionIconSize, SessionIconType } from '../session/
|
|
|
|
|
import { useTheme } from 'styled-components';
|
|
|
|
|
import { PropsForGroupInvitation } from '../../state/ducks/conversations';
|
|
|
|
|
import { acceptOpenGroupInvitation } from '../../interactions/messageInteractions';
|
|
|
|
|
import { ReadableMessage } from './ReadableMessage';
|
|
|
|
|
|
|
|
|
|
export const GroupInvitation = (props: PropsForGroupInvitation) => {
|
|
|
|
|
const { messageId, receivedAt, isUnread } = props;
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const classes = ['group-invitation'];
|
|
|
|
|
|
|
|
|
@ -15,25 +17,32 @@ export const GroupInvitation = (props: PropsForGroupInvitation) => {
|
|
|
|
|
const openGroupInvitation = window.i18n('openGroupInvitation');
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="group-invitation-container" id={`msg-${props.messageId}`}>
|
|
|
|
|
<div className={classNames(classes)}>
|
|
|
|
|
<div className="contents">
|
|
|
|
|
<SessionIconButton
|
|
|
|
|
iconType={SessionIconType.Plus}
|
|
|
|
|
iconColor={theme.colors.accent}
|
|
|
|
|
theme={theme}
|
|
|
|
|
iconSize={SessionIconSize.Large}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
acceptOpenGroupInvitation(props.acceptUrl, props.serverName);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<span className="group-details">
|
|
|
|
|
<span className="group-name">{props.serverName}</span>
|
|
|
|
|
<span className="group-type">{openGroupInvitation}</span>
|
|
|
|
|
<span className="group-address">{props.url}</span>
|
|
|
|
|
</span>
|
|
|
|
|
<ReadableMessage
|
|
|
|
|
messageId={messageId}
|
|
|
|
|
receivedAt={receivedAt}
|
|
|
|
|
isUnread={isUnread}
|
|
|
|
|
key={`readable-message-${messageId}`}
|
|
|
|
|
>
|
|
|
|
|
<div className="group-invitation-container" id={`msg-${props.messageId}`}>
|
|
|
|
|
<div className={classNames(classes)}>
|
|
|
|
|
<div className="contents">
|
|
|
|
|
<SessionIconButton
|
|
|
|
|
iconType={SessionIconType.Plus}
|
|
|
|
|
iconColor={theme.colors.accent}
|
|
|
|
|
theme={theme}
|
|
|
|
|
iconSize={SessionIconSize.Large}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
acceptOpenGroupInvitation(props.acceptUrl, props.serverName);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<span className="group-details">
|
|
|
|
|
<span className="group-name">{props.serverName}</span>
|
|
|
|
|
<span className="group-type">{openGroupInvitation}</span>
|
|
|
|
|
<span className="group-address">{props.url}</span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ReadableMessage>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|