We have two createBoundServerCallsSelectors currently: the original in call-keyserver-endpoint-provider.react.js (formerly in action-utils.js), and a second in lib/utils/keyserver-call.js`. The purpose of this diff is to set the groundwork to unify these two.
Currently, the original createBoundServerCallsSelector takes in the actionFunc first, and then returns a selector that takes an object of params that includes keyserverID. This makes it impossible to use in the second case, since in that case we want a separate selector for each keyserver.
This diff updates the original createBoundServerCallsSelector to make it possible to use in keyserver-call.js.
In later diffs, we'll further unify the logic in keyserver-call.js into call-keyserver-endpoint-provider.react.js.
Depends on D10681