2018-10-07 04:06:17 +02:00
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import read from '../../common/read-messaging-message';
|
|
|
|
import Channel from '../channel';
|
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 16:01:57 +02:00
|
|
|
public readonly chName = 'messaging';
|
2018-10-11 16:07:20 +02:00
|
|
|
public static shouldShare = false;
|
2018-10-11 16:01:57 +02:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
private otherpartyId: string;
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
this.otherpartyId = params.otherparty as string;
|
|
|
|
|
|
|
|
// Subscribe messaging stream
|
|
|
|
this.subscriber.on(`messagingStream:${this.user._id}-${this.otherpartyId}`, data => {
|
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public onMessage(type: string, body: any) {
|
|
|
|
switch (type) {
|
|
|
|
case 'read':
|
|
|
|
read(this.user._id, this.otherpartyId, body.id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|