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

zehnder pushed a commit to branch 
4021-rename-ui-folders-of-data-explorer-to-chart
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit d9d8c7a2c92b0b3ac390e0bae3a0e52a403c9f0a
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Dec 4 14:36:02 2025 +0100

    refactor(#4021): Rename components related to chart overview
---
 ui/src/app/chart/chart.module.ts                           | 10 +++++-----
 .../chart-overview-table.component.html}                   |  0
 .../chart-overview-table.component.ts}                     |  6 +++---
 .../chart-overview.component.html}                         |  0
 .../chart-overview.component.scss}                         |  0
 .../chart-overview.component.ts}                           | 14 +++++++-------
 .../dashboard-overview-table.component.ts                  |  2 +-
 7 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/ui/src/app/chart/chart.module.ts b/ui/src/app/chart/chart.module.ts
index 5f608d024f..123984ce01 100644
--- a/ui/src/app/chart/chart.module.ts
+++ b/ui/src/app/chart/chart.module.ts
@@ -32,7 +32,7 @@ import { LeafletModule } from '@bluehalo/ngx-leaflet';
 import { ColorPickerComponent, ColorPickerDirective } from 'ngx-color-picker';
 import { PlatformServicesModule } from '@streampipes/platform-services';
 import { CoreUiModule } from '../core-ui/core-ui.module';
-import { DataExplorerOverviewComponent } from 
'./components/overview/data-explorer-overview.component';
+import { ChartOverviewComponent } from 
'./components/chart-overview/chart-overview.component';
 import { MatSlideToggleModule } from '@angular/material/slide-toggle';
 import { DataExplorerDesignerPanelComponent } from 
'./components/chart-view/designer-panel/data-explorer-designer-panel.component';
 import { DataExplorerWidgetAppearanceSettingsComponent } from 
'./components/chart-view/designer-panel/appearance-settings/data-explorer-widget-appearance-settings.component';
@@ -72,7 +72,7 @@ import { MatDividerModule } from '@angular/material/divider';
 import { MatTooltipModule } from '@angular/material/tooltip';
 import { MatProgressBarModule } from '@angular/material/progress-bar';
 import { MatButtonToggleModule } from '@angular/material/button-toggle';
-import { SpDataExplorerDataViewOverviewComponent } from 
'./components/overview/data-explorer-overview-table/data-explorer-overview-table.component';
+import { ChartOverviewTableComponent } from 
'./components/chart-overview/chart-overview-table/chart-overview-table.component';
 import { ChartViewComponent } from 
'./components/chart-view/chart-view.component';
 import { ChartViewToolbarComponent } from 
'./components/chart-view/toolbar/chart-view-toolbar.component';
 import { OrderSelectionPanelComponent } from 
'./components/chart-view/designer-panel/data-settings/order-selection-panel/order-selection-panel.component';
@@ -139,7 +139,7 @@ import { AssetDialogComponent } from 
'./dialog/asset-dialog.component';
                 children: [
                     {
                         path: '',
-                        component: DataExplorerOverviewComponent,
+                        component: ChartOverviewComponent,
                     },
                     {
                         path: 'create',
@@ -159,7 +159,7 @@ import { AssetDialogComponent } from 
'./dialog/asset-dialog.component';
     ],
     declarations: [
         AggregateConfigurationComponent,
-        DataExplorerOverviewComponent,
+        ChartOverviewComponent,
         DataExplorerDesignerPanelComponent,
         DataExplorerWidgetAppearanceSettingsComponent,
         DataExplorerWidgetDataSettingsComponent,
@@ -173,7 +173,7 @@ import { AssetDialogComponent } from 
'./dialog/asset-dialog.component';
         GroupSelectionPanelComponent,
         DataExplorerVisualisationSettingsComponent,
         OrderSelectionPanelComponent,
-        SpDataExplorerDataViewOverviewComponent,
+        ChartOverviewTableComponent,
         FilterSelectionPanelRowPropertySelectionComponent,
         FilterSelectionPanelRowOperationSelectionComponent,
         FilterSelectionPanelRowValueInputComponent,
diff --git 
a/ui/src/app/chart/components/overview/data-explorer-overview-table/data-explorer-overview-table.component.html
 
b/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html
similarity index 100%
rename from 
ui/src/app/chart/components/overview/data-explorer-overview-table/data-explorer-overview-table.component.html
rename to 
ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.html
diff --git 
a/ui/src/app/chart/components/overview/data-explorer-overview-table/data-explorer-overview-table.component.ts
 
b/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.ts
similarity index 96%
rename from 
ui/src/app/chart/components/overview/data-explorer-overview-table/data-explorer-overview-table.component.ts
rename to 
ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.ts
index 1ae8992f92..d4b2731347 100644
--- 
a/ui/src/app/chart/components/overview/data-explorer-overview-table/data-explorer-overview-table.component.ts
+++ 
b/ui/src/app/chart/components/chart-overview/chart-overview-table/chart-overview-table.component.ts
@@ -36,11 +36,11 @@ import { MatSort } from '@angular/material/sort';
 
 @Component({
     selector: 'sp-data-explorer-overview-table',
-    templateUrl: './data-explorer-overview-table.component.html',
-    styleUrls: ['../data-explorer-overview.component.scss'],
+    templateUrl: './chart-overview-table.component.html',
+    styleUrls: ['../chart-overview-table.component.scss'],
     standalone: false,
 })
-export class SpDataExplorerDataViewOverviewComponent implements OnInit {
+export class ChartOverviewTableComponent implements OnInit {
     @Input()
     hasDataExplorerWritePrivileges: boolean;
 
diff --git 
a/ui/src/app/chart/components/overview/data-explorer-overview.component.html 
b/ui/src/app/chart/components/chart-overview/chart-overview.component.html
similarity index 100%
rename from 
ui/src/app/chart/components/overview/data-explorer-overview.component.html
rename to 
ui/src/app/chart/components/chart-overview/chart-overview.component.html
diff --git 
a/ui/src/app/chart/components/overview/data-explorer-overview.component.scss 
b/ui/src/app/chart/components/chart-overview/chart-overview.component.scss
similarity index 100%
rename from 
ui/src/app/chart/components/overview/data-explorer-overview.component.scss
rename to 
ui/src/app/chart/components/chart-overview/chart-overview.component.scss
diff --git 
a/ui/src/app/chart/components/overview/data-explorer-overview.component.ts 
b/ui/src/app/chart/components/chart-overview/chart-overview.component.ts
similarity index 81%
rename from 
ui/src/app/chart/components/overview/data-explorer-overview.component.ts
rename to ui/src/app/chart/components/chart-overview/chart-overview.component.ts
index 5bec5882f9..c0d5a5c634 100644
--- a/ui/src/app/chart/components/overview/data-explorer-overview.component.ts
+++ b/ui/src/app/chart/components/chart-overview/chart-overview.component.ts
@@ -24,19 +24,19 @@ import {
 import { AuthService } from '../../../services/auth.service';
 import { SpChartRoutes } from '../../chart.routes';
 import { ChartRoutingService } from 
'../../../chart-shared/services/chart-routing.service';
-import { SpDataExplorerDataViewOverviewComponent } from 
'./data-explorer-overview-table/data-explorer-overview-table.component';
+import { ChartOverviewTableComponent } from 
'./chart-overview-table/chart-overview-table.component';
 import { UserPrivilege } from '../../../_enums/user-privilege.enum';
 import { Subscription } from 'rxjs';
 
 @Component({
-    selector: 'sp-data-explorer-overview',
-    templateUrl: './data-explorer-overview.component.html',
-    styleUrls: ['./data-explorer-overview.component.scss'],
+    selector: 'sp-chart-overview',
+    templateUrl: './chart-overview.component.html',
+    styleUrls: ['./chart-overview.component.scss'],
     standalone: false,
 })
-export class DataExplorerOverviewComponent implements OnInit, OnDestroy {
-    @ViewChild(SpDataExplorerDataViewOverviewComponent)
-    chartsOverview: SpDataExplorerDataViewOverviewComponent;
+export class ChartOverviewComponent implements OnInit, OnDestroy {
+    @ViewChild(ChartOverviewTableComponent)
+    chartsOverview: ChartOverviewTableComponent;
 
     auth$: Subscription;
     hasDataExplorerWritePrivileges = false;
diff --git 
a/ui/src/app/dashboard/components/overview/dashboard-overview-table/dashboard-overview-table.component.ts
 
b/ui/src/app/dashboard/components/overview/dashboard-overview-table/dashboard-overview-table.component.ts
index 1797b612be..d3b0066898 100644
--- 
a/ui/src/app/dashboard/components/overview/dashboard-overview-table/dashboard-overview-table.component.ts
+++ 
b/ui/src/app/dashboard/components/overview/dashboard-overview-table/dashboard-overview-table.component.ts
@@ -47,7 +47,7 @@ import { MatSort } from '@angular/material/sort';
     selector: 'sp-dashboard-overview-table',
     templateUrl: './dashboard-overview-table.component.html',
     styleUrls: [
-        
'../../../../chart/components/overview/data-explorer-overview.component.scss',
+        
'../../../../chart/components/chart-overview/chart-overview.component.scss',
     ],
     standalone: false,
 })

Reply via email to