Skip to content
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

WIP: Rename 'getAllUsersByEmail' to 'getUsersAndBotsByEmail' and type it #3332

Closed
wants to merge 4 commits into from

Conversation

borisyankov
Copy link
Contributor

I wonder what would be the most practical way to handle the:
Cannot get user.avatar_url because property avatar_url is missing in RealmBot [1].

We should not use the existing `getAllUsersByEmail` since it returns
all users and realm bots and messes up our strict typing.
(That selector can and should be renamed and typed better later)
The previous iteration of `PresenceStatusIndicator` used a single
user's `presence` entry to determine what to render. That was not
clearly better than having this component extract the data on its
own from the state.

Now though, we need to also have the `userStatus` data and manually
passing this becomes too much boilerplate.

This change only replaces our use of pre-extracted `presence` data
with getting an `email` of a user instead and doing the extraction
inside the component.

A lot of container components did change, but the change is
straightforward, covered by tests and simplifies our code.

Removed `exraData` prop in `UserList` as not needed (and misspelled)
Now `connect`s to the `userStatus` state and if `away` for the
given user exists and is set to `true`, we override the calculated
value and make it `offline` instead.

It is unfortunate that there is a (temporary) discrepancy between
our `presence` and `userStatus` key used for mapping (`email` vs
`user_id`) thus needing the `usersByEmail` state too.

We should be moving `presence` to 'id to presence mapping' and then
we would replace the `email` prop with `userId` prop. Later.
Renames 'getAllUsersByEmail' to better reflect the data it returns.
Also, add Flow types to the selector.
@gnprice gnprice added the review label Feb 8, 2019
@gnprice
Copy link
Member

gnprice commented Feb 11, 2019

Thanks @borisyankov !

Did you look at the history of this file? I mentioned in #3326 (comment) that there is some relevant background there:
git log --stat -p src/users/userSelectors.js

We can certainly change things, but the commit that makes the change has to point to the previous discussion and explain why we're doing something different.

@gnprice gnprice removed the review label Feb 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants