Address more review comments

pull/645/head
Maxim Shishmarev 5 years ago
parent 56bb2ed792
commit 89e5e919f2

@ -2236,7 +2236,7 @@
"groupInvitation": { "groupInvitation": {
"message": "Group Invitation" "message": "Group Invitation"
}, },
"add-friends": { "addingFriends": {
"message": "Adding friends to" "message": "Adding friends to"
} }
} }

@ -835,7 +835,7 @@
}); });
Whisper.events.on( Whisper.events.on(
'invitationAccepted', 'publicChatInvitationAccepted',
async (serverAddress, channelId) => { async (serverAddress, channelId) => {
// To some degree this has been copy-pasted // To some degree this has been copy-pasted
// form connection_to_server_dialog_view.js: // form connection_to_server_dialog_view.js:

@ -1516,7 +1516,7 @@
} }
const attributes = { const attributes = {
...messageWithSchema, ...messageWithSchema,
group_invitation: groupInvitation, groupInvitation,
id: window.getGuid(), id: window.getGuid(),
}; };

@ -267,7 +267,7 @@
return this.get('type') === 'friend-request'; return this.get('type') === 'friend-request';
}, },
isGroupInvitation() { isGroupInvitation() {
return !!this.get('group_invitation'); return !!this.get('groupInvitation');
}, },
getNotificationText() { getNotificationText() {
const description = this.getDescription(); const description = this.getDescription();
@ -447,7 +447,7 @@
}; };
}, },
getPropsForGroupInvitation() { getPropsForGroupInvitation() {
const invitation = this.get('group_invitation'); const invitation = this.get('groupInvitation');
let direction = this.get('direction'); let direction = this.get('direction');
if (!direction) { if (!direction) {
@ -460,7 +460,7 @@
direction, direction,
onClick: () => { onClick: () => {
Whisper.events.trigger( Whisper.events.trigger(
'invitationAccepted', 'publicChatInvitationAccepted',
invitation.serverAddress, invitation.serverAddress,
invitation.channelId invitation.channelId
); );
@ -1938,6 +1938,7 @@
window.log.info( window.log.info(
`Starting handleDataMessage for message ${message.idForLogging()} in conversation ${conversation.idForLogging()}` `Starting handleDataMessage for message ${message.idForLogging()} in conversation ${conversation.idForLogging()}`
); );
const withQuoteReference = await this.copyFromQuotedMessage( const withQuoteReference = await this.copyFromQuotedMessage(
initialMessage initialMessage
); );
@ -2021,7 +2022,7 @@
} }
if (initialMessage.groupInvitation) { if (initialMessage.groupInvitation) {
message.set({ group_invitation: initialMessage.groupInvitation }); message.set({ groupInvitation: initialMessage.groupInvitation });
} }
const urls = window.Signal.LinkPreviews.findLinks(dataMessage.body); const urls = window.Signal.LinkPreviews.findLinks(dataMessage.body);

@ -202,7 +202,7 @@ message DataMessage {
message GroupInvitation { message GroupInvitation {
optional string serverAddress = 1; optional string serverAddress = 1;
optional string channelId = 2; optional uint32 channelId = 2;
optional string serverName = 3; optional string serverName = 3;
} }

@ -55,7 +55,7 @@ export class InviteFriendsDialog extends React.Component<Props, State> {
} }
public render() { public render() {
const titleText = `${window.i18n('add-friends')} ${this.props.chatName}`; const titleText = `${window.i18n('addingFriends')} ${this.props.chatName}`;
const cancelText = window.i18n('cancel'); const cancelText = window.i18n('cancel');
const okText = window.i18n('ok'); const okText = window.i18n('ok');

Loading…
Cancel
Save