[Maps] Add filter actions to tooltips#33635
Merged
thomasneirynck merged 29 commits intoelastic:masterfrom Apr 8, 2019
Merged
Conversation
Contributor
|
Pinging @elastic/kibana-gis |
Contributor
💔 Build Failed |
nreese
reviewed
Mar 28, 2019
nreese
reviewed
Mar 28, 2019
nreese
reviewed
Mar 28, 2019
Contributor
💚 Build Succeeded |
Contributor
💚 Build Succeeded |
nreese
reviewed
Apr 3, 2019
nreese
reviewed
Apr 3, 2019
Contributor
💔 Build Failed |
Contributor
💚 Build Succeeded |
nreese
reviewed
Apr 8, 2019
nreese
reviewed
Apr 8, 2019
nreese
reviewed
Apr 8, 2019
Contributor
💚 Build Succeeded |
nreese
reviewed
Apr 8, 2019
| for (let i = 0; i < this._joins.length; i++) { | ||
| const propsFromJoin = await this._joins[i].filterAndFormatPropertiesForTooltip(properties); | ||
| Object.assign(tooltipsFromSource, propsFromJoin); | ||
| allTooltips = [...allTooltips, ...propsFromJoin]; |
Contributor
There was a problem hiding this comment.
Instead of recreating the array on each iteration, how about something more like this?
async getPropertiesForTooltip(properties) {
const sourceTooltipProperties = await this._source.filterAndFormatPropertiesToHtml(properties);
this._addJoinsToSourceTooltips(sourceTooltipProperties);
// tooltip properties added by joins. For example, aggregation metrics
const joinTooltipProperties = [];
for (let i = 0; i < this._joins.length; i++) {
const propsFromJoin = await this._joins[i].filterAndFormatPropertiesForTooltip(properties);
joinTooltipProperties.push(...propsFromJoin);
}
return [...sourceTooltipProperties, ...joinTooltipProperties];
}
nreese
approved these changes
Apr 8, 2019
Contributor
nreese
left a comment
There was a problem hiding this comment.
lgtm
code review, tested in chrome
thomasneirynck
added a commit
to thomasneirynck/kibana
that referenced
this pull request
Apr 8, 2019
thomasneirynck
added a commit
that referenced
this pull request
Apr 8, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #32736
This PR contains:
Refactors
Changes/additions
Known issues:
Other todos:
add functional tests for tooltipsuse jest tests for contentsdetect presence of filter-bar iso using isReadOnlyembeddables are always filterable right nowDiscuss:
should the map take "ownership" of filters (similar to the input controls visualization) (?)NO. maybe in another phaseshould tooltips remain on the map after filtering (?) if so, what would be the best mechanism to introduce this (e.g. track doc-ids across data-updates. (?)NO. tackle this as separate improvement. right now, tooltips are removed after filtering