The term "Selector" sounds quite confusing to me.
In official doc Computing Derived Data. It makes sense to name the mapping procedure "select" cuz you are indeed filtering something. kinda "select a different piece of the redux store".
But theoretically, you can do any kinda computation within the MapThingsToProps
functions, like transforming a flatten data structure to a nested one that your UI component need, or compute some temp data.
Are names such as "Adaptor", "Data Transformer", or even "Mapper" are better than "Selector"?
Or if I misunderstand the meaning of "select" or the "selecting process"?
Thank you!