Wrap polling function in try finally for safety, fix issue with empty array check and lint

pull/473/head
Beaudan Brown 6 years ago
parent 14f5fc53be
commit 0dd180d4f4

@ -411,6 +411,16 @@ class LokiPublicChannelAPI {
// get channel messages // get channel messages
async pollForMessages() { async pollForMessages() {
try {
await this.pollOnceForMessages();
} finally {
setTimeout(() => {
this.pollForMessages();
}, GROUPCHAT_POLL_EVERY);
}
}
async pollOnceForMessages() {
const params = { const params = {
include_annotations: 1, include_annotations: 1,
count: -20, count: -20,
@ -437,7 +447,10 @@ class LokiPublicChannelAPI {
if (adnMessage.is_deleted) { if (adnMessage.is_deleted) {
return; return;
} }
if (adnMessage.annotations !== []) { if (
Array.isArray(adnMessage.annotations) &&
adnMessage.annotations.length !== 0
) {
const noteValue = adnMessage.annotations[0].value; const noteValue = adnMessage.annotations[0].value;
({ from, timestamp, source } = noteValue); ({ from, timestamp, source } = noteValue);
} }
@ -493,10 +506,6 @@ class LokiPublicChannelAPI {
}); });
conversation.setLastRetrievedMessage(this.lastGot); conversation.setLastRetrievedMessage(this.lastGot);
} }
setTimeout(() => {
this.pollForMessages();
}, GROUPCHAT_POLL_EVERY);
} }
// create a message in the channel // create a message in the channel

@ -56,18 +56,16 @@ export class MessageDetail extends React.Component<Props> {
public renderDeleteButton() { public renderDeleteButton() {
const { i18n, message } = this.props; const { i18n, message } = this.props;
return ( return message.isDeletable ? (
message.isDeletable ? ( <div className="module-message-detail__delete-button-container">
<div className="module-message-detail__delete-button-container"> <button
<button onClick={message.onDelete}
onClick={message.onDelete} className="module-message-detail__delete-button"
className="module-message-detail__delete-button" >
> {i18n('deleteThisMessage')}
{i18n('deleteThisMessage')} </button>
</button> </div>
</div> ) : null;
) : null
);
} }
public renderContact(contact: Contact) { public renderContact(contact: Contact) {

Loading…
Cancel
Save