-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
chore(explore): Migrate BigNumber to v1 api [ID-28][ID-55] #17587
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
4a935cc
chore(explore): Migrate BigNumber to v1 api
kgabryje fc3e98f
Move to echarts
kgabryje 00ae74c
Use Echarts trendline
kgabryje 6b38909
Fix imports
kgabryje 88270a0
Fix parsing dates as strings
kgabryje d75946a
Add from_dttm and to_dttm to v1 chart response
kgabryje 0916313
Fix post processing
kgabryje a70ab9d
Fix timeRangeFixed
kgabryje 00d76ec
Fix tests
kgabryje 2bde10f
Remove from and to dttm from cache
kgabryje dc7bf33
Cleanup date formatting
kgabryje caf6c7e
Fix storybook
kgabryje 6e7dbfc
Fix missing types
kgabryje 2c3cc66
Fix timestamp with timezone
kgabryje 2402221
Add types to demo's tsconfig
kgabryje 0545cca
bug fix
kgabryje 29bb524
fix import
kgabryje 41f30bc
Fix cypress tests
kgabryje 0196cda
add sort
villebro 3b7ed7b
add resample to handle missing values properly
villebro 28381df
Sync ChartDataResponseResult schema with ts interface
kgabryje add6d28
Lint fix
kgabryje 129df69
Add migration
kgabryje a75e398
Fix migration
kgabryje f04f2a6
Remove pass
kgabryje ad16153
Re-raise the exception in migration
kgabryje 26ed2c0
Typo fix
kgabryje 944ae17
Update revision
kgabryje File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,6 @@ | |
"storybook", | ||
"../**/src", | ||
"../../plugins/**/src", | ||
"../../plugins/**/types", | ||
] | ||
} |
67 changes: 0 additions & 67 deletions
67
superset-frontend/plugins/legacy-preset-chart-big-number/README.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It appears the
ChartDataResponseResult
schema is pretty badly out of sync with this. For example, the following appear to be missing or have an incorrect name:cache_dttm
, onChartDataResponseResult
we havecached_dttm
colnames
andcoltypes
are missing onChartDataResponseResult
.from_dttm
andto_dttm
should also be added toChartDataResponseResult
.Let's try to make sure these are in sync.