This is an automated email from the ASF dual-hosted git repository.
justinpark pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
from 2af76fc41f fix: MySQL et al. super calls (#23971)
add d96b72d46f chore(sqllab): Refactor react-query by redux-toolkit query
(#23760)
No new revisions were added by this update.
Summary of changes:
superset-frontend/package-lock.json | 96 ------------
superset-frontend/package.json | 1 -
superset-frontend/spec/helpers/testing-library.tsx | 30 ++--
superset-frontend/src/SqlLab/App.jsx | 17 +--
.../SqlLab/components/SqlEditor/SqlEditor.test.jsx | 161 ++++++++-------------
.../SqlEditorLeftBar/SqlEditorLeftBar.test.jsx | 82 +++++++----
.../TabbedSqlEditors/TabbedSqlEditors.test.jsx | 9 +-
.../DatabaseSelector/DatabaseSelector.test.tsx | 28 ++--
.../src/components/DatabaseSelector/index.tsx | 9 +-
.../components/Datasource/DatasourceModal.test.jsx | 18 +--
.../TableSelector/TableSelector.test.tsx | 28 +++-
.../src/components/TableSelector/index.tsx | 5 +-
.../src/hooks/apiResources/queryApi.test.ts | 100 +++++++++++++
.../src/hooks/apiResources/queryApi.ts | 71 +++++++++
.../src/hooks/apiResources/schemas.test.ts | 113 +++++++++------
.../src/hooks/apiResources/schemas.ts | 129 +++++++++++------
.../src/hooks/apiResources/tables.test.ts | 144 ++++++++++--------
superset-frontend/src/hooks/apiResources/tables.ts | 144 +++++++++++-------
superset-frontend/src/views/App.tsx | 49 +++----
superset-frontend/src/views/QueryProvider.tsx | 43 ------
superset-frontend/src/views/store.ts | 4 +-
21 files changed, 723 insertions(+), 558 deletions(-)
create mode 100644 superset-frontend/src/hooks/apiResources/queryApi.test.ts
create mode 100644 superset-frontend/src/hooks/apiResources/queryApi.ts
delete mode 100644 superset-frontend/src/views/QueryProvider.tsx