Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions app/views/RoomView/Header/RightButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ class RightButtonsContainer extends React.PureComponent {
}

async componentDidMount() {
const { tmid, userId } = this.props;
const { tmid } = this.props;
if (tmid) {
const db = database.active;
const threadObservable = await db.collections.get('messages').findAndObserve(tmid);
this.threadSubscription = threadObservable.subscribe((thread) => {
this.setState({
isFollowingThread: thread.replies && !!thread.replies.find(t => t === userId)
});
});
try {
const threadRecord = await db.collections.get('messages').find(tmid);
this.observeThead(threadRecord);
} catch (e) {
console.log('Can\'t find message to observe.');
}
}
}

Expand All @@ -57,10 +57,16 @@ class RightButtonsContainer extends React.PureComponent {
}
}

updateThread = () => {
observeThead = (threadRecord) => {
const threadObservable = threadRecord.observe();
this.threadSubscription = threadObservable
.subscribe(thread => this.updateThread(thread));
}

updateThread = (thread) => {
const { userId } = this.props;
this.setState({
isFollowingThread: this.thread.replies && !!this.thread.replies.find(t => t === userId)
isFollowingThread: thread.replies && !!thread.replies.find(t => t === userId)
});
}

Expand Down