This is an automated email from the ASF dual-hosted git repository.
riemer pushed a change to branch 3725-add-dashboard-kiosk-mode
in repository https://gitbox.apache.org/repos/asf/streampipes.git
from f49a66f549 chore(deps): Downgrade PLC4X (#3724)
new 32f91c6f3d feat(#3725): Add dashboard kiosk mode to UI
new 31c607006a Add auto-refresh for kiosk mode
new 5e318bcdcb Fix dashboard widget deletion behaviour
new c142f35c82 Remove loading bar
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../model/dashboard/CompositeDashboardModel.java | 10 ++
.../impl/dashboard/DataLakeDashboardResource.java | 24 ++-
ui/deployment/app-routing.module.mst | 1 +
.../src/lib/apis/dashboard.service.ts | 14 +-
.../src/lib/model/dashboard/dashboard.model.ts | 1 +
.../kiosk/dashboard-kiosk.component.html | 55 ++++++
.../kiosk/dashboard-kiosk.component.scss} | 31 ++--
.../components/kiosk/dashboard-kiosk.component.ts | 115 ++++++++++++
.../dashboard-kiosk.module.ts} | 124 ++++++-------
.../chart-view/abstract-chart-view.directive.ts | 2 +-
.../grid-view/dashboard-grid-view.component.html | 61 +++++++
.../grid-view/dashboard-grid-view.component.scss | 11 +-
.../grid-view/dashboard-grid-view.component.ts | 16 +-
.../slide-view/dashboard-slide-view.component.html | 4 +-
.../slide-view/dashboard-slide-view.component.scss | 0
.../slide-view/dashboard-slide-view.component.ts | 0
.../dashboard-shared.module.ts} | 48 +----
.../services/dashboard.service.ts | 6 +-
.../grid-view/dashboard-grid-view.component.html | 49 ------
.../dashboard-overview-table.component.html | 20 ++-
.../dashboard-overview-table.component.ts | 36 ++--
.../overview/dashboard-overview.component.ts | 2 +-
.../components/panel/dashboard-panel.component.ts | 60 ++++---
ui/src/app/dashboard/dashboard.module.ts | 6 +-
.../data-explorer-chart-container.component.html | 194 +++++++++++----------
.../data-explorer-chart-container.component.ts | 6 +-
.../base/base-data-explorer-widget.directive.ts | 1 +
.../charts/base/echarts-widget.component.ts | 18 ++
.../models/dataview-dashboard.model.ts | 1 +
.../data-explorer-chart-view.component.html | 4 +-
.../data-explorer-overview-table.component.ts | 21 +--
.../overview/data-explorer-overview.component.ts | 12 +-
.../overview/data-explorer-overview.directive.ts | 12 +-
33 files changed, 593 insertions(+), 372 deletions(-)
create mode 100644
ui/src/app/dashboard-kiosk/components/kiosk/dashboard-kiosk.component.html
copy ui/src/app/{dashboard/components/panel/dashboard-panel.component.scss =>
dashboard-kiosk/components/kiosk/dashboard-kiosk.component.scss} (75%)
create mode 100644
ui/src/app/dashboard-kiosk/components/kiosk/dashboard-kiosk.component.ts
copy ui/src/app/{home/home.module.ts =>
dashboard-kiosk/dashboard-kiosk.module.ts} (52%)
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/abstract-chart-view.directive.ts (99%)
create mode 100644
ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/grid-view/dashboard-grid-view.component.scss
(86%)
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/grid-view/dashboard-grid-view.component.ts
(91%)
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.html
(96%)
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.scss
(100%)
rename ui/src/app/{dashboard =>
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.ts
(100%)
copy ui/src/app/{dashboard/dashboard.module.ts =>
dashboard-shared/dashboard-shared.module.ts} (67%)
rename ui/src/app/{dashboard =>
dashboard-shared}/services/dashboard.service.ts (89%)
delete mode 100644
ui/src/app/dashboard/components/chart-view/grid-view/dashboard-grid-view.component.html