You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by el...@apache.org on 2021/08/02 16:13:00 UTC

[superset] branch master updated (31d79ff -> 5031a67)

This is an automated email from the ASF dual-hosted git repository.

elizabeth pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 31d79ff  docs: add instructions for how to connect to local database from docker container (#15936)
     add 5031a67  feat: Self subscribe reports (#16027)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/spec/fixtures/mockState.js       |   2 +
 .../explore/components/ExploreChartHeader_spec.jsx |  13 +
 superset-frontend/src/common/components/index.tsx  |   8 +-
 .../src/components/Form/LabeledErrorBoundInput.tsx |   2 +-
 .../ReportModal/EmailReportModal.test.jsx          |  52 ++++
 .../HeaderReportActionsDropdown/index.tsx          | 114 +++++++
 .../src/components/ReportModal/index.tsx           | 327 +++++++++++++++++++++
 .../src/components/ReportModal/styles.tsx          |  85 ++++++
 .../dashboard/components/Header/Header.test.tsx    |  17 +-
 .../src/dashboard/components/Header/index.jsx      |  88 +++++-
 .../src/dashboard/components/Header/types.ts       |   2 +-
 .../src/dashboard/containers/DashboardHeader.jsx   |  12 +-
 .../src/explore/components/ExploreChartHeader.jsx  |  97 +++++-
 .../src/explore/components/ExploreChartPanel.jsx   |   3 +-
 .../explore/components/ExploreViewContainer.jsx    |   4 +-
 superset-frontend/src/explore/reducers/index.js    |   2 +
 superset-frontend/src/reports/actions/reports.js   | 170 +++++++++++
 .../reducers/reports.js}                           |  36 ++-
 superset-frontend/src/views/store.ts               |   2 +
 superset/reports/api.py                            |   2 +
 tests/integration_tests/reports/api_tests.py       |   2 +
 21 files changed, 1007 insertions(+), 33 deletions(-)
 create mode 100644 superset-frontend/src/components/ReportModal/EmailReportModal.test.jsx
 create mode 100644 superset-frontend/src/components/ReportModal/HeaderReportActionsDropdown/index.tsx
 create mode 100644 superset-frontend/src/components/ReportModal/index.tsx
 create mode 100644 superset-frontend/src/components/ReportModal/styles.tsx
 create mode 100644 superset-frontend/src/reports/actions/reports.js
 copy superset-frontend/src/{explore/reducers/saveModalReducer.js => reports/reducers/reports.js} (61%)