Added FriendRequest message

pull/28/head
Mikunj 6 years ago
parent c77df8e304
commit 5626cfe47d

@ -565,6 +565,50 @@
})
);
},
// This will add a message which will allow the user to reply to a friend request
// TODO: Maybe add callbacks for accept and decline?
async addFriendRequest() {
if (this.isMe()) {
window.log.info(
'refusing to send friend request to ourselves'
);
return;
}
const lastMessage = this.get('timestamp') || Date.now();
window.log.info(
'adding friend request for',
this.ourNumber,
this.idForLogging(),
lastMessage
);
const timestamp = Date.now();
const message = {
conversationId: this.id,
type: 'friend-request',
sent_at: lastMessage,
received_at: timestamp,
unread: 1,
source: this.id,
target: this.ourNumber,
status: 'pending',
type: 'incoming',
};
const id = await window.Signal.Data.saveMessage(message, {
Message: Whisper.Message,
});
this.trigger(
'newmessage',
new Whisper.Message({
...message,
id,
})
);
},
async addVerifiedChange(verifiedChangeId, verified, providedOptions) {
const options = providedOptions || {};
_.defaults(options, { local: true });

@ -187,6 +187,9 @@
isKeyChange() {
return this.get('type') === 'keychange';
},
isFriendRequest() {
return this.get('type') === 'friend-request';
},
getNotificationText() {
const description = this.getDescription();
if (description) {
@ -292,6 +295,19 @@
// It doesn't need anything right now!
return {};
},
getPropsForFriendRequest() {
const source = this.get('source');
const target = this.get('target');
const status = this.get('status') || 'pending';
const type = this.get('requestType') || 'incoming';
return {
source: this.findAndFormatContact(source),
target: this.findAndFormatContact(target),
status,
type,
}
},
findContact(phoneNumber) {
return ConversationController.get(phoneNumber);
},

@ -28,6 +28,9 @@ const {
EmbeddedContact,
} = require('../../ts/components/conversation/EmbeddedContact');
const { Emojify } = require('../../ts/components/conversation/Emojify');
const {
FriendRequest,
} = require('../../ts/components/conversation/FriendRequest');
const {
GroupNotification,
} = require('../../ts/components/conversation/GroupNotification');
@ -176,6 +179,7 @@ exports.setup = (options = {}) => {
ConversationListItem,
EmbeddedContact,
Emojify,
FriendRequest,
GroupNotification,
Lightbox,
LightboxGallery,

@ -69,6 +69,11 @@
Component: Components.GroupNotification,
props: this.model.getPropsForGroupNotification(),
};
} else if (this.model.isFriendRequest()) {
return {
Component: Components.FriendRequest,
props: this.model.getPropsForFriendRequest(),
};
}
return {

@ -0,0 +1,75 @@
import React from 'react';
// import classNames from 'classnames';
import { ContactName } from './ContactName';
import { Intl } from '../Intl';
import { Localizer } from '../../types/Util';
interface Contact {
phoneNumber: string;
profileName?: string;
name?: string;
}
interface Props {
type: 'incoming' | 'outgoing';
source: Contact;
target: Contact;
i18n: Localizer;
status: 'pending' | 'accepted' | 'declined';
}
export class FriendRequest extends React.Component<Props> {
public getStringId() {
const { status } = this.props;
return 'youMarkedAsNotVerified';
switch (status) {
case 'pending':
return 'friendRequestPending';
case 'accepted':
return 'friendRequestAccepted';
case 'declined':
return 'friendRequestDeclined'
default:
// throw missingCaseError(status);
}
}
public renderContents() {
const { source, i18n } = this.props;
const id = this.getStringId();
return (
<Intl
id={id}
components={[
<ContactName
i18n={i18n}
key="external-1"
name={source.name}
profileName={source.profileName}
phoneNumber={source.phoneNumber}
module="module-friend-request__contact"
/>,
]}
i18n={i18n}
/>
);
}
public render() {
const { type } = this.props;
return (
<div className={`module-message module-message--${type}`}>
<div className={`module-message__container module-message__container--${type}`}>
<div className={`module-message__text module-message__text--${type}`}>
{this.renderContents()}
</div>
</div>
</div>
);
}
}
Loading…
Cancel
Save