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

feat(viz-gallery): add 'feature' tag and fuzzy search weighting #18662

Merged
merged 19 commits into from
Mar 11, 2022

Conversation

stephenLYZ
Copy link
Member

@stephenLYZ stephenLYZ commented Feb 10, 2022

SUMMARY

This PR add "verified" label to let the user know which chart types are more stable/tested/bug-free than others. And add search weight to effect search result.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

image

image

2022-02-11.12.33.52.mov

TESTING INSTRUCTIONS

ADDITIONAL INFORMATION

  • Has associated issue:
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

@stephenLYZ stephenLYZ marked this pull request as draft February 10, 2022 14:25
@codecov
Copy link

codecov bot commented Feb 10, 2022

Codecov Report

Merging #18662 (e65142c) into master (bc6aad0) will increase coverage by 0.00%.
The diff coverage is 55.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master   #18662   +/-   ##
=======================================
  Coverage   66.51%   66.51%           
=======================================
  Files        1644     1646    +2     
  Lines       63491    63530   +39     
  Branches     6458     6466    +8     
=======================================
+ Hits        42231    42258   +27     
- Misses      19590    19596    +6     
- Partials     1670     1676    +6     
Flag Coverage Δ
javascript 51.27% <55.00%> (+0.02%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...ponents/controls/VizTypeControl/VizTypeGallery.tsx 87.56% <47.05%> (-3.61%) ⬇️
...superset-ui-core/src/chart/models/ChartMetadata.ts 100.00% <100.00%> (ø)
.../packages/superset-ui-core/src/chart/types/Base.ts 100.00% <100.00%> (ø)
...-frontend/src/dashboard/reducers/dashboardState.js 73.33% <0.00%> (-3.42%) ⬇️
...frontend/src/components/TimezoneSelector/index.tsx 96.96% <0.00%> (-0.09%) ⬇️
...erset-frontend/src/components/EmptyState/index.tsx 61.53% <0.00%> (ø)
...plugin-chart-echarts/src/BoxPlot/transformProps.ts 54.23% <0.00%> (ø)
...gin-chart-echarts/src/Timeseries/transformProps.ts 58.06% <0.00%> (ø)
...d/components/DashboardBuilder/DashboardBuilder.tsx 72.72% <0.00%> (ø)
...hart-echarts/src/MixedTimeseries/transformProps.ts 0.00% <0.00%> (ø)
... and 5 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update bc6aad0...e65142c. Read the comment docs.

@stephenLYZ stephenLYZ marked this pull request as ready for review February 10, 2022 16:27
stephenLYZ and others added 4 commits February 11, 2022 11:33
…ol/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>
…ol/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>
…ol/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>
…ol/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>
@rusackas
Copy link
Member

Pinging @suddjian for a review since he's the SME for the fuzzy search aspect.

@rusackas
Copy link
Member

@stephenLYZ @yousoph @kasiazjc Let's test an ephemeral environment here (when CI is finished) and then we can probably remove the labels from the plugins here (just leaving the functionality for this PR). We want to leverage this mainly for Preset purposes, so we can configure it there.

@graceguo-supercat @amitmiran137 (or anyone looking at this):
Just FYI, we're planning to label our best-supported viz components using this feature. We're assuming others won't want these labels added on the repo... but if you think it's of general value, that makes our life easier! The list we intend to use is (correct me if I'm wrong, anyone):

  • Big Num w Trendline
  • Big Number
  • Table
  • Pivot Table v2
  • Time Series Line
  • Time Series Area
  • Time Series Bar v2
  • Time Series Scatter
  • Pie
  • Bar
  • World Map

@geido
Copy link
Member

geido commented Feb 11, 2022

/testenv up

@github-actions
Copy link
Contributor

@geido Ephemeral environment spinning up at http://34.217.75.91:8080. Credentials are admin/admin. Please allow several minutes for bootstrapping and startup.

Copy link
Member

@geido geido left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@rusackas
Copy link
Member

@stephenLYZ This is looking great! I know this sounds weird, but let's take the metadata out of the charts for now, so we can merge the feature code of this PR.

Then we at Preset (or any other org) can add the labels we want, and not press anything upon the community quite yet. We can bring this up for wider discussion as a feature, to gain broader consensus around which charts are worth highlighting for the OSS releases.

label: {
name: t('verified'),
description: t(
'This chart was tested and verified, so the overall experience should be stable.',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand that a label is very flexible, but do we actually want such high flexibility? If this were, say, an enum of VERIFIED, DEPRECATED, ... , it could be used for more programmatic things. For example, rather than using a searchWeight that has to be the same for all verified charts, the logic in the gallery's sort function could sort by the value of this enum. And having this text duplicated in every verified plugin doesn't really seem ideal to me.

We already have a boolean field deprecated, so if we did switch this to an enum we would probably want to... deprecate the deprecated field.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this inputs!This makes sense. @rusackas I think we can unify it into an enum and influence the search results based on the definition of this field.

@pull-request-size pull-request-size bot added size/M and removed size/L labels Feb 22, 2022
@rusackas
Copy link
Member

/testenv up

@github-actions
Copy link
Contributor

@rusackas Ephemeral environment spinning up at http://34.222.147.29:8080. Credentials are admin/admin. Please allow several minutes for bootstrapping and startup.

@rusackas
Copy link
Member

More screenshots and implementation examples to add to the thread for posterity:

Multiple species of labels:
image

Weighting seems to work:
image

And to implement:

  • Import ChartLabel from @superset-ui/core
  • within a chart's new ChartMetadata object add:
label: {
  name: ChartLabel.VERIFIED, // or others from the ChartLabel enum
  description: t(
    'This chart was tested and verified, so the overall experience should be stable.',
  ),
},
  • add to ChartLabelWeight any new label that should affect the sort order of search results

@rusackas
Copy link
Member

Future considerations:

  • We may want to apply these weights not just to the search results, but to the general category listings or "All charts" list. I'm actually a little confused about the order that these are currently in anyway, but it seems to be neither by alphabetical order or by popularity. @kasiazjc may want to provide input for a future iteration.
  • We could provide a default description (like you did with the weights) but still allow users to override this by populating the description.
    • We should to a little community outreach and see if there's alignment on which of these should have labels applied for all open source users

Copy link
Member

@rusackas rusackas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Left some feedback for follow-up considerations, and cleared out the example implementations so that we can merge this without making assumptions of what people will want to highlight (for now, anyway).

@stephenLYZ
Copy link
Member Author

stephenLYZ commented Mar 11, 2022

@rusackas Thanks for these suggestions! I agree to put this chat label into the weighted calculation of Fuse, which I tried but it did not succeed. The reason is that fuse calculates the score based on the key (https://github.com/krisk/Fuse/blob/master/src/core/computeScore.js), like 'name' or 'description', but in our scenario, it is based on the value, like 'verified' or 'feature'.

There is one approach I have in mind is to use: make this label as key, and value is the same as name

metadata: {
  name: t('Pie Chart'),
  verified: t('Pie Chart'),
  // or
  featured: t('Pie Chart')
}

So we can define the weights of keys:

new Fuse(chartMetadata, {
  ignoreLocation: true,
  threshold: 0.3,
  keys: [
    {
      name: 'value.verified',
      weight: 1.1
    },
    {
      name: 'value.featured',
      weight: 0.9
    },
    'value.name',
    'value.tags',
    'value.description'
  ],
}),
 

But this is not flexible. So there is a balance here.

@rusackas
Copy link
Member

Yeah, I can't think of a clear way to have these numeric weights influence the text-based weighted keys of fuse, either. Let's consider that for a follow-up, I think this PR moves the ball in the right direction far enough for now.

@rusackas rusackas merged commit 7524e1e into apache:master Mar 11, 2022
@github-actions
Copy link
Contributor

Ephemeral environment shutdown and build artifacts deleted.

sadpandajoe added a commit to preset-io/superset that referenced this pull request Mar 15, 2022
sadpandajoe pushed a commit to preset-io/superset that referenced this pull request Mar 18, 2022
…he#18662)

* feat(viz-gallery): add 'feature' tag and fuzzy search weighting

* add search weight

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* some improvements

* take metadata out

* use chartLabel enum to unify

* add test chart

* fix cache

* Resolving TS Lint issue

* Appeasing the linter

* Removing one example implementation

* Removing another example label implementation

* Removing the third example label implementation

Co-authored-by: Evan Rusackas <evan@preset.io>
(cherry picked from commit 7524e1e)
@sadpandajoe
Copy link
Contributor

🏷️ preset:2022.11

villebro pushed a commit that referenced this pull request Apr 3, 2022
* feat(viz-gallery): add 'feature' tag and fuzzy search weighting

* add search weight

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* Update superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx

Co-authored-by: Evan Rusackas <evan@preset.io>

* some improvements

* take metadata out

* use chartLabel enum to unify

* add test chart

* fix cache

* Resolving TS Lint issue

* Appeasing the linter

* Removing one example implementation

* Removing another example label implementation

* Removing the third example label implementation

Co-authored-by: Evan Rusackas <evan@preset.io>
(cherry picked from commit 7524e1e)
@mistercrunch mistercrunch added 🍒 1.5.0 🍒 1.5.1 🍒 1.5.2 🍒 1.5.3 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 2.0.0 labels Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels lts-v1 preset:2022.11 size/L 🍒 1.5.0 🍒 1.5.1 🍒 1.5.2 🍒 1.5.3 🚢 2.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants