step 1 - convert al lcomponents, directives and pipes to standalone
see https://v17.angular.io/guide/standalone-migration I executed: ng g @angular/core:standalone and selected "Convert all components, directives and pipes to standalone"
This commit is contained in:
@@ -8,9 +8,7 @@ describe('AppComponent', () => {
|
|||||||
imports: [
|
imports: [
|
||||||
RouterTestingModule
|
RouterTestingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [AppComponent],
|
||||||
AppComponent
|
|
||||||
],
|
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|||||||
@@ -60,34 +60,7 @@ import { ConfirmationDialogComponent } from "./confirmation-dialog/confirmation-
|
|||||||
import { FocusDirective } from "./focus.directive";
|
import { FocusDirective } from "./focus.directive";
|
||||||
import { MarkdownModule } from "ngx-markdown";
|
import { MarkdownModule } from "ngx-markdown";
|
||||||
|
|
||||||
@NgModule({ declarations: [
|
@NgModule({ declarations: [AppComponent],
|
||||||
AppComponent,
|
|
||||||
MainPageComponent,
|
|
||||||
HelpPageComponent,
|
|
||||||
UploadPageComponent,
|
|
||||||
DatePickerComponent,
|
|
||||||
VisualizationPageComponent,
|
|
||||||
YAxisDefinitionComponent,
|
|
||||||
QueryAutocompleteComponent,
|
|
||||||
LimitByComponent,
|
|
||||||
PlotDetailsComponent,
|
|
||||||
PlotViewComponent,
|
|
||||||
GalleryViewComponent,
|
|
||||||
GalleryItemView,
|
|
||||||
GalleryFilterView,
|
|
||||||
ImageToggleComponent,
|
|
||||||
DashboardPageComponent,
|
|
||||||
NewDashboardComponent,
|
|
||||||
DashboardComponent,
|
|
||||||
AddTextDialogComponent,
|
|
||||||
TextWidgetComponent,
|
|
||||||
AddPlotDialogComponent,
|
|
||||||
PlotWidgetComponent,
|
|
||||||
FullScreenPlotDialogComponent,
|
|
||||||
CustomizableGridComponent,
|
|
||||||
ConfirmationDialogComponent,
|
|
||||||
FocusDirective,
|
|
||||||
],
|
|
||||||
bootstrap: [AppComponent], imports: [MarkdownModule.forRoot(),
|
bootstrap: [AppComponent], imports: [MarkdownModule.forRoot(),
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
AppRoutingModule,
|
AppRoutingModule,
|
||||||
@@ -112,7 +85,31 @@ import { MarkdownModule } from "ngx-markdown";
|
|||||||
MatTableModule,
|
MatTableModule,
|
||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
BrowserAnimationsModule,
|
BrowserAnimationsModule,
|
||||||
OverlayModule], providers: [{
|
OverlayModule, MainPageComponent,
|
||||||
|
HelpPageComponent,
|
||||||
|
UploadPageComponent,
|
||||||
|
DatePickerComponent,
|
||||||
|
VisualizationPageComponent,
|
||||||
|
YAxisDefinitionComponent,
|
||||||
|
QueryAutocompleteComponent,
|
||||||
|
LimitByComponent,
|
||||||
|
PlotDetailsComponent,
|
||||||
|
PlotViewComponent,
|
||||||
|
GalleryViewComponent,
|
||||||
|
GalleryItemView,
|
||||||
|
GalleryFilterView,
|
||||||
|
ImageToggleComponent,
|
||||||
|
DashboardPageComponent,
|
||||||
|
NewDashboardComponent,
|
||||||
|
DashboardComponent,
|
||||||
|
AddTextDialogComponent,
|
||||||
|
TextWidgetComponent,
|
||||||
|
AddPlotDialogComponent,
|
||||||
|
PlotWidgetComponent,
|
||||||
|
FullScreenPlotDialogComponent,
|
||||||
|
CustomizableGridComponent,
|
||||||
|
ConfirmationDialogComponent,
|
||||||
|
FocusDirective], providers: [{
|
||||||
provide: MAT_DIALOG_DEFAULT_OPTIONS,
|
provide: MAT_DIALOG_DEFAULT_OPTIONS,
|
||||||
useValue: { hasBackdrop: true },
|
useValue: { hasBackdrop: true },
|
||||||
}, provideHttpClient(withInterceptorsFromDi())] })
|
}, provideHttpClient(withInterceptorsFromDi())] })
|
||||||
|
|||||||
@@ -5,12 +5,13 @@ import {
|
|||||||
Input,
|
Input,
|
||||||
Output,
|
Output,
|
||||||
} from "@angular/core";
|
} from "@angular/core";
|
||||||
import {
|
import { ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR, Validators, FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||||
ControlValueAccessor,
|
import { MatButton } from "@angular/material/button";
|
||||||
FormControl,
|
import { MatTooltip } from "@angular/material/tooltip";
|
||||||
NG_VALUE_ACCESSOR,
|
import { CdkOverlayOrigin, CdkConnectedOverlay } from "@angular/cdk/overlay";
|
||||||
Validators,
|
import { MatTabGroup, MatTab } from "@angular/material/tabs";
|
||||||
} from "@angular/forms";
|
import { MatFormField, MatLabel } from "@angular/material/form-field";
|
||||||
|
import { MatInput } from "@angular/material/input";
|
||||||
|
|
||||||
export type DateType = "QUICK" | "RELATIVE" | "ABSOLUTE";
|
export type DateType = "QUICK" | "RELATIVE" | "ABSOLUTE";
|
||||||
|
|
||||||
@@ -36,6 +37,20 @@ export class DatePickerChange {
|
|||||||
multi: true,
|
multi: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
MatButton,
|
||||||
|
MatTooltip,
|
||||||
|
CdkOverlayOrigin,
|
||||||
|
CdkConnectedOverlay,
|
||||||
|
MatTabGroup,
|
||||||
|
MatTab,
|
||||||
|
MatFormField,
|
||||||
|
MatLabel,
|
||||||
|
MatInput,
|
||||||
|
FormsModule,
|
||||||
|
ReactiveFormsModule,
|
||||||
|
],
|
||||||
})
|
})
|
||||||
export class DatePickerComponent implements ControlValueAccessor {
|
export class DatePickerComponent implements ControlValueAccessor {
|
||||||
isOpen = false;
|
isOpen = false;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('ConfirmationDialogComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ ConfirmationDialogComponent ]
|
imports: [ConfirmationDialogComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,15 @@
|
|||||||
import { Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
import { Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
import { MatDialogRef, MAT_DIALOG_DATA, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose } from '@angular/material/dialog';
|
||||||
|
import { NgIf } from '@angular/common';
|
||||||
|
import { CdkScrollable } from '@angular/cdk/scrolling';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
import { FocusDirective } from '../focus.directive';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-confirmation-dialog',
|
selector: 'app-confirmation-dialog',
|
||||||
templateUrl: './confirmation-dialog.component.html'
|
templateUrl: './confirmation-dialog.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgIf, MatDialogTitle, CdkScrollable, MatDialogContent, MatDialogActions, MatButton, MatDialogClose, FocusDirective]
|
||||||
})
|
})
|
||||||
export class ConfirmationDialogComponent {
|
export class ConfirmationDialogComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('CustomizableGridComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ CustomizableGridComponent ]
|
imports: [CustomizableGridComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { CdkDragEnter, CdkDropList, moveItemInArray, DragRef} from '@angular/cdk/drag-drop';
|
import { CdkDragEnter, CdkDropList, moveItemInArray, DragRef, CdkDropListGroup, CdkDrag } from '@angular/cdk/drag-drop';
|
||||||
import { AfterViewInit } from '@angular/core';
|
import { AfterViewInit } from '@angular/core';
|
||||||
import { ViewChild } from '@angular/core';
|
import { ViewChild } from '@angular/core';
|
||||||
|
import { NgFor, NgStyle, NgClass } from '@angular/common';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-customizable-grid',
|
selector: 'app-customizable-grid',
|
||||||
templateUrl: './customizable-grid.component.html'
|
templateUrl: './customizable-grid.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgFor, CdkDropListGroup, NgStyle, CdkDropList, CdkDrag, NgClass]
|
||||||
})
|
})
|
||||||
export class CustomizableGridComponent implements AfterViewInit {
|
export class CustomizableGridComponent implements AfterViewInit {
|
||||||
@ViewChild(CdkDropList) placeholder!: CdkDropList;
|
@ViewChild(CdkDropList) placeholder!: CdkDropList;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('DashboardPageComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ DashboardPageComponent ]
|
imports: [DashboardPageComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -5,10 +5,17 @@ import { MatSnackBar } from '@angular/material/snack-bar';
|
|||||||
import { ConfirmationDialogComponent } from '../confirmation-dialog/confirmation-dialog.component';
|
import { ConfirmationDialogComponent } from '../confirmation-dialog/confirmation-dialog.component';
|
||||||
import { Dashboard, DashboardCreationData, DashboardList, DashboardService } from '../dashboard.service';
|
import { Dashboard, DashboardCreationData, DashboardList, DashboardService } from '../dashboard.service';
|
||||||
import { NewDashboardComponent } from './new-dashboard/new-dashboard.component';
|
import { NewDashboardComponent } from './new-dashboard/new-dashboard.component';
|
||||||
|
import { NgIf } from '@angular/common';
|
||||||
|
import { MatProgressSpinner } from '@angular/material/progress-spinner';
|
||||||
|
import { MatButton, MatIconButton } from '@angular/material/button';
|
||||||
|
import { MatTable, MatColumnDef, MatHeaderCellDef, MatHeaderCell, MatCellDef, MatCell, MatHeaderRowDef, MatHeaderRow, MatRowDef, MatRow } from '@angular/material/table';
|
||||||
|
import { RouterLink } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dashboard-page',
|
selector: 'app-dashboard-page',
|
||||||
templateUrl: './dashboard-page.component.html'
|
templateUrl: './dashboard-page.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgIf, MatProgressSpinner, MatButton, MatTable, MatColumnDef, MatHeaderCellDef, MatHeaderCell, MatCellDef, MatCell, RouterLink, MatIconButton, MatHeaderRowDef, MatHeaderRow, MatRowDef, MatRow]
|
||||||
})
|
})
|
||||||
export class DashboardPageComponent implements OnInit {
|
export class DashboardPageComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('AddPlotDialogComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ AddPlotDialogComponent ]
|
imports: [AddPlotDialogComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
import { AfterViewInit, Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
import { AfterViewInit, Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
import { MatDialogRef, MAT_DIALOG_DATA, MatDialogContent, MatDialogActions, MatDialogClose } from '@angular/material/dialog';
|
||||||
import { PlotConfig } from 'src/app/plot.service';
|
import { PlotConfig } from 'src/app/plot.service';
|
||||||
import { VisualizationPageComponent } from 'src/app/visualization-page/visualization-page.component';
|
import { VisualizationPageComponent } from 'src/app/visualization-page/visualization-page.component';
|
||||||
|
import { VisualizationPageComponent as VisualizationPageComponent_1 } from '../../../visualization-page/visualization-page.component';
|
||||||
|
import { CdkScrollable } from '@angular/cdk/scrolling';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-add-plot-dialog',
|
selector: 'app-add-plot-dialog',
|
||||||
templateUrl: './add-plot-dialog.component.html'
|
templateUrl: './add-plot-dialog.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [VisualizationPageComponent_1, CdkScrollable, MatDialogContent, MatDialogActions, MatButton, MatDialogClose]
|
||||||
})
|
})
|
||||||
export class AddPlotDialogComponent {
|
export class AddPlotDialogComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('AddTextDialogComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ AddTextDialogComponent ]
|
imports: [AddTextDialogComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,18 @@
|
|||||||
import { Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
import { Component, ElementRef, Inject, ViewChild } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
import { MatDialogRef, MAT_DIALOG_DATA, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose } from '@angular/material/dialog';
|
||||||
|
import { CdkScrollable } from '@angular/cdk/scrolling';
|
||||||
|
import { MatFormField, MatLabel } from '@angular/material/form-field';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
import { FocusDirective } from '../../../focus.directive';
|
||||||
|
import { MarkdownComponent } from 'ngx-markdown';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-add-text-dialog',
|
selector: 'app-add-text-dialog',
|
||||||
templateUrl: './add-text-dialog.component.html'
|
templateUrl: './add-text-dialog.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatDialogTitle, CdkScrollable, MatDialogContent, MatFormField, MatLabel, MatInput, FormsModule, FocusDirective, MarkdownComponent, MatDialogActions, MatButton, MatDialogClose]
|
||||||
})
|
})
|
||||||
export class AddTextDialogComponent {
|
export class AddTextDialogComponent {
|
||||||
text = "";
|
text = "";
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('DashboardComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ DashboardComponent ]
|
imports: [DashboardComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,27 @@
|
|||||||
import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
|
import { CdkDragDrop, moveItemInArray, transferArrayItem, CdkDropListGroup, CdkDropList, CdkDrag, CdkDragHandle } from '@angular/cdk/drag-drop';
|
||||||
import { HttpErrorResponse } from '@angular/common/http';
|
import { HttpErrorResponse } from '@angular/common/http';
|
||||||
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
|
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
|
||||||
import { MatDialog } from '@angular/material/dialog';
|
import { MatDialog } from '@angular/material/dialog';
|
||||||
import { MatSnackBar } from '@angular/material/snack-bar';
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
||||||
import { ActivatedRoute } from '@angular/router';
|
import { ActivatedRoute, RouterLink } from '@angular/router';
|
||||||
import { Dashboard, DashboardCreationData, DashboardService, PlotWidget, PlotWidgetRenderData, TextWidget } from 'src/app/dashboard.service';
|
import { Dashboard, DashboardCreationData, DashboardService, PlotWidget, PlotWidgetRenderData, TextWidget } from 'src/app/dashboard.service';
|
||||||
import { PlotConfig, PlotResponse, PlotService } from 'src/app/plot.service';
|
import { PlotConfig, PlotResponse, PlotService } from 'src/app/plot.service';
|
||||||
import { NewDashboardComponent } from '../new-dashboard/new-dashboard.component';
|
import { NewDashboardComponent } from '../new-dashboard/new-dashboard.component';
|
||||||
import { AddPlotDialogComponent } from './add-plot-dialog/add-plot-dialog.component';
|
import { AddPlotDialogComponent } from './add-plot-dialog/add-plot-dialog.component';
|
||||||
import { AddTextDialogComponent } from './add-text-dialog/add-text-dialog.component';
|
import { AddTextDialogComponent } from './add-text-dialog/add-text-dialog.component';
|
||||||
import { DatePickerChange, DatePickerComponent } from 'src/app/components/datepicker/date-picker.component';
|
import { DatePickerChange, DatePickerComponent } from 'src/app/components/datepicker/date-picker.component';
|
||||||
|
import { NgIf, NgFor } from '@angular/common';
|
||||||
|
import { MatProgressSpinner } from '@angular/material/progress-spinner';
|
||||||
|
import { MatButton, MatIconButton } from '@angular/material/button';
|
||||||
|
import { DatePickerComponent as DatePickerComponent_1 } from '../../components/datepicker/date-picker.component';
|
||||||
|
import { TextWidgetComponent } from './text-widget/text-widget.component';
|
||||||
|
import { PlotWidgetComponent } from './plot-widget/plot-widget.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dashboard',
|
selector: 'app-dashboard',
|
||||||
templateUrl: './dashboard.component.html'
|
templateUrl: './dashboard.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgIf, MatProgressSpinner, RouterLink, MatButton, DatePickerComponent_1, MatIconButton, CdkDropListGroup, NgFor, CdkDropList, CdkDrag, CdkDragHandle, TextWidgetComponent, PlotWidgetComponent]
|
||||||
})
|
})
|
||||||
export class DashboardComponent implements OnInit{
|
export class DashboardComponent implements OnInit{
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
import { Component, Inject } from '@angular/core';
|
import { Component, Inject } from '@angular/core';
|
||||||
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
|
import { MatDialogRef, MAT_DIALOG_DATA, MatDialogClose } from '@angular/material/dialog';
|
||||||
|
import { MatIconButton } from '@angular/material/button';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-full-screen-plot-dialog',
|
selector: 'app-full-screen-plot-dialog',
|
||||||
templateUrl: './full-screen-plot-dialog.component.html'
|
templateUrl: './full-screen-plot-dialog.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatIconButton, MatDialogClose]
|
||||||
})
|
})
|
||||||
export class FullScreenPlotDialogComponent {
|
export class FullScreenPlotDialogComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('PlotWidgetComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ PlotWidgetComponent ]
|
imports: [PlotWidgetComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,14 @@ import { PlotViewComponent } from 'src/app/plot-view/plot-view.component';
|
|||||||
import { PlotConfig, PlotResponse, PlotService } from 'src/app/plot.service';
|
import { PlotConfig, PlotResponse, PlotService } from 'src/app/plot.service';
|
||||||
import { AddPlotDialogComponent } from '../add-plot-dialog/add-plot-dialog.component';
|
import { AddPlotDialogComponent } from '../add-plot-dialog/add-plot-dialog.component';
|
||||||
import { FullScreenPlotDialogComponent } from '../full-screen-plot-dialog/full-screen-plot-dialog.component';
|
import { FullScreenPlotDialogComponent } from '../full-screen-plot-dialog/full-screen-plot-dialog.component';
|
||||||
|
import { NgClass, NgIf } from '@angular/common';
|
||||||
|
import { MatIconButton, MatButton } from '@angular/material/button';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-plot-widget',
|
selector: 'app-plot-widget',
|
||||||
templateUrl: './plot-widget.component.html'
|
templateUrl: './plot-widget.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgClass, MatIconButton, NgIf, MatButton]
|
||||||
})
|
})
|
||||||
export class PlotWidgetComponent {
|
export class PlotWidgetComponent {
|
||||||
@Input("data")
|
@Input("data")
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('TextWidgetComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ TextWidgetComponent ]
|
imports: [TextWidgetComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -3,10 +3,14 @@ import { MatDialog } from '@angular/material/dialog';
|
|||||||
import { ConfirmationDialogComponent } from 'src/app/confirmation-dialog/confirmation-dialog.component';
|
import { ConfirmationDialogComponent } from 'src/app/confirmation-dialog/confirmation-dialog.component';
|
||||||
import { TextWidget } from 'src/app/dashboard.service';
|
import { TextWidget } from 'src/app/dashboard.service';
|
||||||
import { AddTextDialogComponent } from '../add-text-dialog/add-text-dialog.component';
|
import { AddTextDialogComponent } from '../add-text-dialog/add-text-dialog.component';
|
||||||
|
import { MatIconButton } from '@angular/material/button';
|
||||||
|
import { MarkdownComponent } from 'ngx-markdown';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-text-widget',
|
selector: 'app-text-widget',
|
||||||
templateUrl: './text-widget.component.html'
|
templateUrl: './text-widget.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatIconButton, MarkdownComponent]
|
||||||
})
|
})
|
||||||
export class TextWidgetComponent {
|
export class TextWidgetComponent {
|
||||||
@Input()
|
@Input()
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('NewDashboardComponent', () => {
|
|||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ NewDashboardComponent ]
|
imports: [NewDashboardComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,18 @@
|
|||||||
import { Component, ElementRef, Inject, OnInit, ViewChild } from '@angular/core';
|
import { Component, ElementRef, Inject, OnInit, ViewChild } from '@angular/core';
|
||||||
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material/dialog';
|
import { MAT_DIALOG_DATA, MatDialogRef, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose } from '@angular/material/dialog';
|
||||||
import { DashboardCreationData } from 'src/app/dashboard.service';
|
import { DashboardCreationData } from 'src/app/dashboard.service';
|
||||||
import { AbstractControl, FormControl, FormGroup, ValidationErrors, ValidatorFn, Validators } from '@angular/forms';
|
import { AbstractControl, FormControl, FormGroup, ValidationErrors, ValidatorFn, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||||
|
import { CdkScrollable } from '@angular/cdk/scrolling';
|
||||||
|
import { MatFormField, MatLabel, MatError } from '@angular/material/form-field';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
import { FocusDirective } from '../../focus.directive';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-new-dashboard',
|
selector: 'app-new-dashboard',
|
||||||
templateUrl: './new-dashboard.component.html'
|
templateUrl: './new-dashboard.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [FormsModule, ReactiveFormsModule, MatDialogTitle, CdkScrollable, MatDialogContent, MatFormField, MatLabel, MatInput, FocusDirective, MatError, MatDialogActions, MatButton, MatDialogClose]
|
||||||
})
|
})
|
||||||
export class NewDashboardComponent implements OnInit {
|
export class NewDashboardComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { AfterViewInit, Directive, ElementRef } from '@angular/core';
|
import { AfterViewInit, Directive, ElementRef } from '@angular/core';
|
||||||
|
|
||||||
@Directive({
|
@Directive({
|
||||||
selector: '[focus]'
|
selector: '[focus]',
|
||||||
|
standalone: true
|
||||||
})
|
})
|
||||||
export class FocusDirective implements AfterViewInit {
|
export class FocusDirective implements AfterViewInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('GalleryViewComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ GalleryViewComponent ]
|
imports: [GalleryViewComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,7 +1,19 @@
|
|||||||
import { Component, OnInit, Input, Output, ViewChild, EventEmitter } from '@angular/core';
|
import { Component, OnInit, Input, Output, ViewChild, EventEmitter, forwardRef } from '@angular/core';
|
||||||
import { MatSnackBar } from '@angular/material/snack-bar';
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
||||||
import { PlotService, PlotRequest, PlotResponse, PlotResponseStats, DashTypeAndColor, RenderedImages } from '../plot.service';
|
import { PlotService, PlotRequest, PlotResponse, PlotResponseStats, DashTypeAndColor, RenderedImages } from '../plot.service';
|
||||||
import { UtilService } from '../utils.service';
|
import { UtilService } from '../utils.service';
|
||||||
|
import { NgIf, NgClass, NgFor } from '@angular/common';
|
||||||
|
import { MatFormField, MatLabel } from '@angular/material/form-field';
|
||||||
|
import { MatSelect } from '@angular/material/select';
|
||||||
|
import { MatOption } from '@angular/material/core';
|
||||||
|
import { ImageToggleComponent } from '../image-toggle/image-toggle.component';
|
||||||
|
import { MatCheckbox } from '@angular/material/checkbox';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
import { MatProgressBar } from '@angular/material/progress-bar';
|
||||||
|
import { MatButton } from '@angular/material/button';
|
||||||
|
import { MatTooltip } from '@angular/material/tooltip';
|
||||||
|
import { PlotDetailsComponent } from '../plot-details/plot-details.component';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
|
||||||
export class GalleryFilterData {
|
export class GalleryFilterData {
|
||||||
filterBy :string;
|
filterBy :string;
|
||||||
@@ -19,7 +31,9 @@ export class GalleryFilterData {
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-gallery-filter-view',
|
selector: 'pdb-gallery-filter-view',
|
||||||
templateUrl: './gallery-filter-view.component.html',
|
templateUrl: './gallery-filter-view.component.html',
|
||||||
styleUrls: ['./gallery-filter-view.component.scss']
|
styleUrls: ['./gallery-filter-view.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatFormField, MatLabel, MatSelect, MatOption, NgIf, ImageToggleComponent, MatInput, FormsModule]
|
||||||
})
|
})
|
||||||
export class GalleryFilterView {
|
export class GalleryFilterView {
|
||||||
compareImages = JSON.stringify([
|
compareImages = JSON.stringify([
|
||||||
@@ -91,7 +105,9 @@ export class GalleryFilterView {
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-gallery-view',
|
selector: 'pdb-gallery-view',
|
||||||
templateUrl: './gallery-view.component.html',
|
templateUrl: './gallery-view.component.html',
|
||||||
styleUrls: ['./gallery-view.component.scss']
|
styleUrls: ['./gallery-view.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgIf, MatFormField, MatLabel, MatSelect, MatOption, ImageToggleComponent, GalleryFilterView, MatCheckbox, FormsModule, MatProgressBar, MatButton, MatTooltip, NgClass, NgFor, forwardRef(() => GalleryItemView)]
|
||||||
})
|
})
|
||||||
export class GalleryViewComponent implements OnInit {
|
export class GalleryViewComponent implements OnInit {
|
||||||
|
|
||||||
@@ -315,7 +331,9 @@ export class GalleryViewComponent implements OnInit {
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-gallery-item-view',
|
selector: 'pdb-gallery-item-view',
|
||||||
templateUrl: './gallery-item-view.component.html',
|
templateUrl: './gallery-item-view.component.html',
|
||||||
styleUrls: ['./gallery-item-view.component.scss']
|
styleUrls: ['./gallery-item-view.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgClass, NgIf, PlotDetailsComponent]
|
||||||
})
|
})
|
||||||
export class GalleryItemView {
|
export class GalleryItemView {
|
||||||
@Input()
|
@Input()
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('HelpPageComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ HelpPageComponent ]
|
imports: [HelpPageComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ import { Component, OnInit } from '@angular/core';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-help-page',
|
selector: 'pdb-help-page',
|
||||||
templateUrl: './help-page.component.html',
|
templateUrl: './help-page.component.html',
|
||||||
styleUrls: ['./help-page.component.scss']
|
styleUrls: ['./help-page.component.scss'],
|
||||||
|
standalone: true
|
||||||
})
|
})
|
||||||
export class HelpPageComponent implements OnInit {
|
export class HelpPageComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('ImageToggleComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ ImageToggleComponent ]
|
imports: [ImageToggleComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
|
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
|
||||||
|
import { NgIf } from '@angular/common';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-image-toggle',
|
selector: 'pdb-image-toggle',
|
||||||
templateUrl: './image-toggle.component.html',
|
templateUrl: './image-toggle.component.html',
|
||||||
styleUrls: ['./image-toggle.component.scss']
|
styleUrls: ['./image-toggle.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [NgIf]
|
||||||
})
|
})
|
||||||
export class ImageToggleComponent implements OnInit {
|
export class ImageToggleComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('LimitByComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ LimitByComponent ]
|
imports: [LimitByComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,10 +1,17 @@
|
|||||||
import { Component, Input} from '@angular/core';
|
import { Component, Input} from '@angular/core';
|
||||||
import {FormControl} from '@angular/forms';
|
import { FormControl, FormsModule } from '@angular/forms';
|
||||||
|
import { MatFormField, MatLabel } from '@angular/material/form-field';
|
||||||
|
import { MatSelect } from '@angular/material/select';
|
||||||
|
import { MatOption } from '@angular/material/core';
|
||||||
|
import { NgIf } from '@angular/common';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-limit-by',
|
selector: 'pdb-limit-by',
|
||||||
templateUrl: './limit-by.component.html',
|
templateUrl: './limit-by.component.html',
|
||||||
styleUrls: ['./limit-by.component.scss']
|
styleUrls: ['./limit-by.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatFormField, MatLabel, MatSelect, MatOption, NgIf, MatInput, FormsModule]
|
||||||
})
|
})
|
||||||
export class LimitByComponent {
|
export class LimitByComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('MainPageComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ MainPageComponent ]
|
imports: [MainPageComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { RouterLink } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-main-page',
|
selector: 'pdb-main-page',
|
||||||
templateUrl: './main-page.component.html',
|
templateUrl: './main-page.component.html',
|
||||||
styleUrls: ['./main-page.component.scss']
|
styleUrls: ['./main-page.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [RouterLink]
|
||||||
})
|
})
|
||||||
export class MainPageComponent implements OnInit {
|
export class MainPageComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
import { Component, Input } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
import { DashTypeAndColor, PlotResponseStats, DataSeriesStats } from '../plot.service';
|
import { DashTypeAndColor, PlotResponseStats, DataSeriesStats } from '../plot.service';
|
||||||
import { UtilService } from '../utils.service';
|
import { UtilService } from '../utils.service';
|
||||||
|
import { MatRadioGroup, MatRadioButton } from '@angular/material/radio';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
import { NgFor, NgIf } from '@angular/common';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-plot-details',
|
selector: 'pdb-plot-details',
|
||||||
templateUrl: './plot-details.component.html',
|
templateUrl: './plot-details.component.html',
|
||||||
styleUrls: ['./plot-details.component.scss']
|
styleUrls: ['./plot-details.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatRadioGroup, FormsModule, MatRadioButton, NgFor, NgIf]
|
||||||
})
|
})
|
||||||
export class PlotDetailsComponent {
|
export class PlotDetailsComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('PlotViewComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ PlotViewComponent ]
|
imports: [PlotViewComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -8,11 +8,16 @@ import { Overlay } from "@angular/cdk/overlay";
|
|||||||
import { DateTime, Duration } from "luxon";
|
import { DateTime, Duration } from "luxon";
|
||||||
import { DateValue } from '../components/datepicker/date-picker.component';
|
import { DateValue } from '../components/datepicker/date-picker.component';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
|
import { CdkDrag, CdkDragHandle } from '@angular/cdk/drag-drop';
|
||||||
|
import { NgClass, NgFor, NgIf } from '@angular/common';
|
||||||
|
import { PlotDetailsComponent } from '../plot-details/plot-details.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-plot-view',
|
selector: 'pdb-plot-view',
|
||||||
templateUrl: './plot-view.component.html',
|
templateUrl: './plot-view.component.html',
|
||||||
styleUrls: ['./plot-view.component.scss']
|
styleUrls: ['./plot-view.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [CdkDrag, NgClass, CdkDragHandle, NgFor, NgIf, PlotDetailsComponent]
|
||||||
})
|
})
|
||||||
export class PlotViewComponent {
|
export class PlotViewComponent {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('QueryAutocompleteComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ QueryAutocompleteComponent ]
|
imports: [QueryAutocompleteComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,14 +1,19 @@
|
|||||||
import { Component, OnInit, Input, ViewChild, AfterViewInit } from '@angular/core';
|
import { Component, OnInit, Input, ViewChild, AfterViewInit } from '@angular/core';
|
||||||
import {FormControl, UntypedFormControl} from '@angular/forms';
|
import { FormControl, UntypedFormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||||
import {Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {startWith, map} from 'rxjs/operators';
|
import {startWith, map} from 'rxjs/operators';
|
||||||
import {MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
import { MatAutocompleteTrigger, MatAutocomplete } from '@angular/material/autocomplete';
|
||||||
import { PlotService, PlotType, AutocompleteResult, Suggestion, ResultMode } from '../plot.service';
|
import { PlotService, PlotType, AutocompleteResult, Suggestion, ResultMode } from '../plot.service';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
import { NgFor, AsyncPipe } from '@angular/common';
|
||||||
|
import { MatOption } from '@angular/material/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-query-autocomplete',
|
selector: 'pdb-query-autocomplete',
|
||||||
templateUrl: './query-autocomplete.component.html',
|
templateUrl: './query-autocomplete.component.html',
|
||||||
styleUrls: ['./query-autocomplete.component.scss']
|
styleUrls: ['./query-autocomplete.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatInput, FormsModule, MatAutocompleteTrigger, ReactiveFormsModule, MatAutocomplete, NgFor, MatOption, AsyncPipe]
|
||||||
})
|
})
|
||||||
export class QueryAutocompleteComponent implements OnInit {
|
export class QueryAutocompleteComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('UploadPageComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ UploadPageComponent ]
|
imports: [UploadPageComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ import { Component, OnInit } from '@angular/core';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-upload-page',
|
selector: 'pdb-upload-page',
|
||||||
templateUrl: './upload-page.component.html',
|
templateUrl: './upload-page.component.html',
|
||||||
styleUrls: ['./upload-page.component.scss']
|
styleUrls: ['./upload-page.component.scss'],
|
||||||
|
standalone: true
|
||||||
})
|
})
|
||||||
export class UploadPageComponent implements OnInit {
|
export class UploadPageComponent implements OnInit {
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('VisualizationPageComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ VisualizationPageComponent ]
|
imports: [VisualizationPageComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import {
|
|||||||
Suggestion,
|
Suggestion,
|
||||||
TagField,
|
TagField,
|
||||||
} from "../plot.service";
|
} from "../plot.service";
|
||||||
import { UntypedFormControl } from "@angular/forms";
|
import { UntypedFormControl, FormsModule } from "@angular/forms";
|
||||||
import { MatSnackBar } from "@angular/material/snack-bar";
|
import { MatSnackBar } from "@angular/material/snack-bar";
|
||||||
import { LimitByComponent } from "../limit-by/limit-by.component";
|
import { LimitByComponent } from "../limit-by/limit-by.component";
|
||||||
import { YAxisDefinitionComponent } from "../y-axis-definition/y-axis-definition.component";
|
import { YAxisDefinitionComponent } from "../y-axis-definition/y-axis-definition.component";
|
||||||
@@ -34,11 +34,41 @@ import {
|
|||||||
DatePickerComponent,
|
DatePickerComponent,
|
||||||
DateValue,
|
DateValue,
|
||||||
} from "../components/datepicker/date-picker.component";
|
} from "../components/datepicker/date-picker.component";
|
||||||
|
import { MatFormField, MatLabel, MatError } from "@angular/material/form-field";
|
||||||
|
import { MatSelect } from "@angular/material/select";
|
||||||
|
import { NgFor, NgIf } from "@angular/common";
|
||||||
|
import { MatOption } from "@angular/material/core";
|
||||||
|
import { MatCheckbox } from "@angular/material/checkbox";
|
||||||
|
import { MatIconAnchor, MatButton } from "@angular/material/button";
|
||||||
|
import { RouterLink } from "@angular/router";
|
||||||
|
import { MatTooltip } from "@angular/material/tooltip";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "pdb-visualization-page",
|
selector: "pdb-visualization-page",
|
||||||
templateUrl: "./visualization-page.component.html",
|
templateUrl: "./visualization-page.component.html",
|
||||||
styleUrls: ["./visualization-page.component.scss"],
|
styleUrls: ["./visualization-page.component.scss"],
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
QueryAutocompleteComponent,
|
||||||
|
DatePickerComponent,
|
||||||
|
MatFormField,
|
||||||
|
MatLabel,
|
||||||
|
MatSelect,
|
||||||
|
FormsModule,
|
||||||
|
NgFor,
|
||||||
|
MatOption,
|
||||||
|
LimitByComponent,
|
||||||
|
MatCheckbox,
|
||||||
|
YAxisDefinitionComponent,
|
||||||
|
NgIf,
|
||||||
|
MatError,
|
||||||
|
MatIconAnchor,
|
||||||
|
RouterLink,
|
||||||
|
MatButton,
|
||||||
|
MatTooltip,
|
||||||
|
PlotViewComponent,
|
||||||
|
GalleryViewComponent,
|
||||||
|
],
|
||||||
})
|
})
|
||||||
export class VisualizationPageComponent implements OnInit, AfterViewInit {
|
export class VisualizationPageComponent implements OnInit, AfterViewInit {
|
||||||
readonly DATE_PATTERN = "YYYY-MM-DD HH:mm:ss"; // for moment-JS
|
readonly DATE_PATTERN = "YYYY-MM-DD HH:mm:ss"; // for moment-JS
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ describe('YAxisDefinitionComponent', () => {
|
|||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ YAxisDefinitionComponent ]
|
imports: [YAxisDefinitionComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -1,10 +1,18 @@
|
|||||||
import { Component, Input } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
import { YAxisDefinition } from '../plot.service';
|
import { YAxisDefinition } from '../plot.service';
|
||||||
|
import { MatFormField, MatLabel } from '@angular/material/form-field';
|
||||||
|
import { MatSelect } from '@angular/material/select';
|
||||||
|
import { MatOption, MatOptgroup } from '@angular/material/core';
|
||||||
|
import { NgIf } from '@angular/common';
|
||||||
|
import { MatInput } from '@angular/material/input';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pdb-y-axis-definition',
|
selector: 'pdb-y-axis-definition',
|
||||||
templateUrl: './y-axis-definition.component.html',
|
templateUrl: './y-axis-definition.component.html',
|
||||||
styleUrls: ['./y-axis-definition.component.scss']
|
styleUrls: ['./y-axis-definition.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [MatFormField, MatLabel, MatSelect, MatOption, MatOptgroup, NgIf, MatInput, FormsModule]
|
||||||
})
|
})
|
||||||
export class YAxisDefinitionComponent {
|
export class YAxisDefinitionComponent {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user