-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
refactor: sqleditorleftbar to functional #17807
refactor: sqleditorleftbar to functional #17807
Conversation
@@ -205,6 +205,7 @@ export default function DatabaseSelector({ | |||
[formMode, getDbList, handleError, sqlLabMode], | |||
); | |||
|
|||
console.log(db, schema, 'INSIDE DATABASE SELECTOR'); |
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.
Make sure this is deleted in the final :)
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.
Of course, I apologize, I was trying to find them all and evidently missed one
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.
I told him it'd be okay to leave the code a little messy if he's just pushing it up to a draft PR for us to help debug, that's on me 😁
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.
No worries! And its just in draft form so its all good. Just something to keep in mind for when it goes into review (I am guilty of this one 0_0 )
@@ -33,6 +33,7 @@ import DatabaseSelector, { | |||
import RefreshLabel from 'src/components/RefreshLabel'; | |||
import CertifiedBadge from 'src/components/CertifiedBadge'; | |||
import WarningIconWithTooltip from 'src/components/WarningIconWithTooltip'; | |||
import { ConsoleSqlOutlined } from '@ant-design/icons'; |
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.
Why is this change in here?
63fb3f8
to
0689ee3
Compare
0689ee3
to
1bdbe36
Compare
const tableMetaDataHeight = props.height - 130; // 130 is the height of the selects above | ||
const qe = props.queryEditor; | ||
|
||
// console.log(props.database, 'DATABASE IN EDITOR LEFT'); |
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.
please remove these console logs.
1bdbe36
to
d9bb646
Compare
Codecov Report
@@ Coverage Diff @@
## master #17807 +/- ##
=======================================
Coverage 66.36% 66.36%
=======================================
Files 1570 1570
Lines 61767 61751 -16
Branches 6243 6242 -1
=======================================
- Hits 40990 40981 -9
+ Misses 19178 19170 -8
- Partials 1599 1600 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
/testenv up |
@AAfghahi Ephemeral environment spinning up at http://54.202.40.124:8080. Credentials are |
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
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.
This is great @JosueLugaro, thank you! I left some feedback, but lmk if you have any questions.
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
onSchemaChange={onSchemaChange} | ||
onSchemasLoad={() => onSchemasLoad} | ||
onTableChange={onTableChange} | ||
onTablesLoad={() => onTablesLoad} |
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.
same here.. don't need the extra function wrapper. Actually this line and the above will just return the function and not instantiate it. Let me know if the above recommendation doesn't work.
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.jsx
Outdated
Show resolved
Hide resolved
Thank you! I will get right on those changes. |
d9bb646
to
e11563b
Compare
/testenv up |
@AAfghahi Ephemeral environment spinning up at http://35.160.28.49:8080. Credentials are |
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.
Thanks @JosueLugaro looks great!
e11563b
to
f8f91fa
Compare
Thank you! |
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.
Looks great, thanks for working on this! ✨
Ephemeral environment shutdown and build artifacts deleted. |
Thank you! |
* fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * Update superset-e2e.yml (#18041) * Revert "Update superset-e2e.yml (#18041)" (#18051) This reverts commit b565273. * feat: Trino Authentications (#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (#18058) * chore(plugin-chart-echarts): add types to controls (#18059) * fix(generator): more cleanup to plugin framework (#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (#18045) * fix(dashboard): scope of nativefilter not update (#18048) * fix(generator): add lockfile and fix styling issues (#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (#18086) * chore: split CLI into multiple files (#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (#18097) * refactor: sqleditorleftbar to functional (#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (#18089) * Migrate Checkbox story to tsx - see #18100 (#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (#18083) * feat: Adds a key-value endpoint to store charts form data (#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (#18021) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (#18081) * chore: migrating storybook jsx to typescript #18100 (#18133) * Migrating storybook jsx to typescript #18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (#18116) * feat(dashboard): add toast feedback to dashboard actions (#18114) * feat(explore): more toast feedback on user actions in Explore (#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (#18125) * fix: undefined error when adding extra sequential color scheme (#18152) * feat: allow assets to be managed externally (#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (#18130) * refactor: Moves the Explore form_data endpoint (#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (#18115) * Port community page (#18128) * chore: add seo redirects for Docs v@ (#18092) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * Update superset-e2e.yml (#18041) * Revert "Update superset-e2e.yml (#18041)" (#18051) This reverts commit b565273. * feat: Trino Authentications (#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (#18058) * chore(plugin-chart-echarts): add types to controls (#18059) * fix(generator): more cleanup to plugin framework (#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (#18045) * fix(dashboard): scope of nativefilter not update (#18048) * fix(generator): add lockfile and fix styling issues (#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (#18086) * chore: split CLI into multiple files (#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (#18097) * refactor: sqleditorleftbar to functional (#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (#18089) * Migrate Checkbox story to tsx - see #18100 (#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (#18083) * feat: Adds a key-value endpoint to store charts form data (#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (#18021) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (#18081) * chore: migrating storybook jsx to typescript #18100 (#18133) * Migrating storybook jsx to typescript #18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (#18116) * feat(dashboard): add toast feedback to dashboard actions (#18114) * feat(explore): more toast feedback on user actions in Explore (#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (#18125) * fix: undefined error when adding extra sequential color scheme (#18152) * feat: allow assets to be managed externally (#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (#18130) * refactor: Moves the Explore form_data endpoint (#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * remove unneeded requirement Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Geido <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (#18115) * Port community page (#18128) * chore: add seo redirects for Docs v@ (#18092) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * Update superset-e2e.yml (#18041) * Revert "Update superset-e2e.yml (#18041)" (#18051) This reverts commit b565273. * feat: Trino Authentications (#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (#18058) * chore(plugin-chart-echarts): add types to controls (#18059) * fix(generator): more cleanup to plugin framework (#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (#18045) * fix(dashboard): scope of nativefilter not update (#18048) * fix(generator): add lockfile and fix styling issues (#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (#18086) * chore: split CLI into multiple files (#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (#18097) * refactor: sqleditorleftbar to functional (#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (#18089) * Migrate Checkbox story to tsx - see #18100 (#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (#18083) * feat: Adds a key-value endpoint to store charts form data (#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (#18021) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (#18081) * chore: migrating storybook jsx to typescript #18100 (#18133) * Migrating storybook jsx to typescript #18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (#18116) * feat(dashboard): add toast feedback to dashboard actions (#18114) * feat(explore): more toast feedback on user actions in Explore (#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (#18125) * fix: undefined error when adding extra sequential color scheme (#18152) * feat: allow assets to be managed externally (#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (#18130) * refactor: Moves the Explore form_data endpoint (#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * fix up links * Fix whitespace * Remove unwanted change * Add apache links Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (#18115) * Port community page (#18128) * chore: add seo redirects for Docs v@ (#18092) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * Update superset-e2e.yml (#18041) * Revert "Update superset-e2e.yml (#18041)" (#18051) This reverts commit b565273. * feat: Trino Authentications (#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (#18058) * chore(plugin-chart-echarts): add types to controls (#18059) * fix(generator): more cleanup to plugin framework (#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (#18045) * fix(dashboard): scope of nativefilter not update (#18048) * fix(generator): add lockfile and fix styling issues (#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (#18086) * chore: split CLI into multiple files (#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (#18097) * refactor: sqleditorleftbar to functional (#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (#18089) * Migrate Checkbox story to tsx - see #18100 (#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (#18083) * feat: Adds a key-value endpoint to store charts form data (#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (#18021) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (#18081) * chore: migrating storybook jsx to typescript #18100 (#18133) * Migrating storybook jsx to typescript #18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (#18116) * feat(dashboard): add toast feedback to dashboard actions (#18114) * feat(explore): more toast feedback on user actions in Explore (#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (#18125) * fix: undefined error when adding extra sequential color scheme (#18152) * feat: allow assets to be managed externally (#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (#18130) * refactor: Moves the Explore form_data endpoint (#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * Fix broken build * Revert unwanted change Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * remove unneeded requirement Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Geido <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * fix up links * Fix whitespace * Remove unwanted change * Add apache links Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * Fix broken build * Revert unwanted change Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * remove unneeded requirement Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Geido <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * fix up links * Fix whitespace * Remove unwanted change * Add apache links Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * Fix broken build * Revert unwanted change Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * remove unneeded requirement Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Geido <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * fix up links * Fix whitespace * Remove unwanted change * Add apache links Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
* setup docusaurus * rename * add introduction content * chore(docsV2): move content from docs to docsV2 (apache#17714) * add FAQs and contribution pages * chore: add api, security, and roadmap pages, include swaggerui in dependency for api page * chore: move api page header below imports * chore: change API page info alert to use built in Infima class instead of custom class Co-authored-by: Corbin Robb <[email protected]> * chore(docs-v2): moving more markdown content to new documentation site (apache#17736) * chore: move markdown content and images for docs installation directory to docs-v2 * chore: move docs miscellaneous directory content to docs-v2 * chore(docs-v2): move over connecting to databases content and rename some files to .mdx Co-authored-by: Corbin Robb <[email protected]> * Update styling and logo (apache#17990) * update styling * update colors * chore(docs-v2): remove blog and tutorial and update some styling (apache#17929) * add superset logo and favicon, change styles to better match current docs, add prettierrc * change file types to mdx * Add simple superset dark mode freindly logo * clean up default pages - blog and tutorial docs Co-authored-by: Corbin Robb <[email protected]> * Chore: moving charts and dashboard to docusaurus (apache#18036) * add contributing add creating charts and dashboards * delete extra images * update rat-excludes * Port homepage (apache#18115) * Port community page (apache#18128) * chore: add seo redirects for Docs v@ (apache#18092) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * Update superset-e2e.yml (apache#18041) * Revert "Update superset-e2e.yml (apache#18041)" (apache#18051) This reverts commit b565273. * feat: Trino Authentications (apache#17593) * feat: support Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * docs: Trino Authentications Signed-off-by: Đặng Minh Dũng <[email protected]> * chore(supeset.utils.core): move all database utils to database utils module (apache#18058) * chore(plugin-chart-echarts): add types to controls (apache#18059) * fix(generator): more cleanup to plugin framework (apache#18027) * fix(generator): more cleanup to plugin framework * fix typo and package name * add docs * fix typo * Update superset-frontend/webpack.config.js Co-authored-by: Kamil Gabryjelski <[email protected]> * fix generator reference * add steps to tutorial and fix package version * refine docs/readme Co-authored-by: Kamil Gabryjelski <[email protected]> * feat(advanced analytics): support groupby in resample (apache#18045) * fix(dashboard): scope of nativefilter not update (apache#18048) * fix(generator): add lockfile and fix styling issues (apache#18073) * fix(generator): add lockfile and fix styling issues * fix margins and remove redundant scroll * update tutorial * refactor(sql_lab): SQL Lab Persistent Saved State (apache#17771) * a lot of console logs * testing * test * added saved_query to remoteId * created useEffect so that title properly changes in modal * Update superset-frontend/src/SqlLab/actions/sqlLab.js Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> * refactor(example_data): replace the way the birth_names data is loaded to DB (apache#18060) * refactor: replace the way the birth_names data is loaded to DB * fix failed unit test * fix failed unit test * fix failed tests * fix pass wrong flag of support datetime type * remove unused fixture * feat: add chart description in info tooltip (apache#17207) * feat: add chart list description * fix: text overflow * fix: text-overflow with line-height * Correction of proper names format in README (apache#18087) * chore: added SEO routes * fix can't use examples helpers on non app context based environment (apache#18086) * chore: split CLI into multiple files (apache#18082) * chore: split CLI into multiple files * Update tests * Who fixes the fixtures? * Add subcommands dynamically * Rebase * fix misspelling (apache#18097) * refactor: sqleditorleftbar to functional (apache#17807) * Working on converting sqleditorleftbar to functional component * Creating draft PR to address bug * Still working on solving re rendering bug * infinite rerender fix * Creating draft PR to address bug * Cleaning up in preparation for push * Made changes suggested by Elizabeth * Fixed issues as per Lindsey's comment Co-authored-by: Arash <[email protected]> * fix rat excludes and headers * fix(docs): fix path of image for "Create New Chart" (apache#18089) * Migrate Checkbox story to tsx - see apache#18100 (apache#18101) Looks good! * refactor: migrate RowCountLabel to TypeScript & added story (apache#18105) * enable superbook for explore component * migrate RowCountLabel to TypeScript * add storybook for RowCountLabel * fix: logging warning on dataframe (don't use python's warnings) (apache#18111) * fix: logging warning on dataframe (don't use python's warnings) * lint * update changelog and updating for 1.4.0 (apache#18083) * feat: Adds a key-value endpoint to store charts form data (apache#17882) * feat: Adds a key-value endpoint to store charts form data * Fixes linting problems * Removes the query_params from the endpoints * Refactors the commands * Removes unused imports * Changes the parameters to use dataclass * Adds more access tests * Gets the first dataset while testing * Adds unit tests for the check_access function * Changes the can_access check * Always check for dataset access * fix(explore): fix chart embed code modal glitch (apache#17843) * feat(plugin-chart-echarts): support non-timeseries x-axis (apache#17917) * feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (apache#18021) * fix: handle null values in time-series table (apache#18039) * cleanup column_type_mappings (apache#17569) Signed-off-by: Đặng Minh Dũng <[email protected]> * important change to MakeFile (apache#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> * feat(country-map): added new countries in country-chart-map (apache#18081) * chore: migrating storybook jsx to typescript apache#18100 (apache#18133) * Migrating storybook jsx to typescript apache#18100 * Migrating storybook jsx to typescript Co-authored-by: Jayakrishnan Karolil <[email protected]> * feat(annotation): add toast feedback to annotation templates (apache#18116) * feat(dashboard): add toast feedback to dashboard actions (apache#18114) * feat(explore): more toast feedback on user actions in Explore (apache#18108) * feat(explore): add toasts feedback when user copies chart url * Show toast message when updating chart properties * Change toast type to success when saving chart * Use success toast from props * Fix tests * Use withToasts instead of dispatch * Use PropertiesModalProps instead of any * Docs: fix typo (apache#18125) * fix: undefined error when adding extra sequential color scheme (apache#18152) * feat: allow assets to be managed externally (apache#18093) * feat: allow assets to be managed externally * Use server_default * chore: use pkg_resources for cleaner config (apache#18130) * refactor: Moves the Explore form_data endpoint (apache#18151) * refactor: Moves the Explore form_data endpoint * Removes unused imports * Fixes openapi schema error * Fixes typo * Renames and UPDATING.md Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: Hugh A. Miles II <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]> * Fix broken build * Revert unwanted change Co-authored-by: hughhhh <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Corbin Robb <[email protected]> Co-authored-by: Daniel W <[email protected]> Co-authored-by: Srini Kadamati <[email protected]> Co-authored-by: Grace Guo <[email protected]> Co-authored-by: Đặng Minh Dũng <[email protected]> Co-authored-by: AAfghahi <[email protected]> Co-authored-by: ofekisr <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Kamil Gabryjelski <[email protected]> Co-authored-by: Yongjie Zhao <[email protected]> Co-authored-by: Stephen Liu <[email protected]> Co-authored-by: Lyndsi Kay Williams <[email protected]> Co-authored-by: Adam Dobrawy <[email protected]> Co-authored-by: Beto Dealmeida <[email protected]> Co-authored-by: Emily Wu <[email protected]> Co-authored-by: Josue Lugaro <[email protected]> Co-authored-by: Arash <[email protected]> Co-authored-by: Ville Brofeldt <[email protected]> Co-authored-by: Daniel Vaz Gaspar <[email protected]> Co-authored-by: Elizabeth Thompson <[email protected]> Co-authored-by: Michael S. Molina <[email protected]> Co-authored-by: Erik Ritter <[email protected]> Co-authored-by: Hammad-Raza <[email protected]> Co-authored-by: jayakrishnankk <[email protected]> Co-authored-by: Jayakrishnan Karolil <[email protected]> Co-authored-by: Farid Rener <[email protected]>
SUMMARY
Converted the SqlEditorLeftBar class component to a functional component. Also removed unused functions from the component, specifically dbMutator and changeTable.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
Go to the SQL Lab, and click on SQL Editor, the editor should open, and give you the option to select a database, schema, and other table schema. Choose the "examples" database and the "main" schema, both should be selected and the words "examples" and "main" appear appropriately in their selectors. From there you can write a query in the text editor and run it just to be sure. Run "SELECT * FROM birth_names" and you should see the query results render.
ADDITIONAL INFORMATION