-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(typing-indicator): restored indicator #4734
Conversation
Only 2 small things I found that I will create tickets for in the QA Jira board just wanted to share findings here as well, iOS typing indicator was appearing wrong and I noticed it didnt appear for Groupchats either but other than those 2 small things it worked extremely well! 🔥 |
Thanks @phillsatellite! The group thing is not a bug, it’s intended :) we ll look into the ios bug though!! Thanks ;) all good on android? |
) | ||
: false | ||
finalMask(): string { | ||
if (this.isTyping) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be redundant
thanks for testing @phillsatellite 💥 thanks for clarifying @molimauro 🔨 |
bd921ca
to
39545c5
Compare
(this.conversation.id && | ||
this.ephemeral.typing[this.conversation.id][this.user.did]) || | ||
false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i saw this error before on dev as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Thomas 👋
It's looking good, just one change I noticed that might be important
#4745 I opted for a conversationId prop to determine typing status render because the sidebarListItem component doesn't need to be aware of typing status. It was only calculating it to pass as a prop. In that case, I think it's better to handle everything in the child component. This will also work well with a new group member sidebar I have in progress here |
What this PR does 📖
Which issue(s) this PR fixes 🔨
Special notes for reviewers 🗒️
Additional comments 🎤