Parameter
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.scss b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.scss
index ed0d2a33b8..a4de7a5698 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.scss
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.scss
@@ -20,7 +20,6 @@
.parameter-table {
.listing-table {
@include mat.table-density(-4);
- width: 506px;
table {
.mat-column-actions {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/provenance/state/provenance-event-listing/provenance-event-listing.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/provenance/state/provenance-event-listing/provenance-event-listing.effects.ts
index 557846b02c..edca22caf8 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/provenance/state/provenance-event-listing/provenance-event-listing.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/provenance/state/provenance-event-listing/provenance-event-listing.effects.ts
@@ -43,6 +43,7 @@ import { HttpErrorResponse } from '@angular/common/http';
import { isDefinedAndNotNull } from '../../../../state/shared';
import { selectClusterSummary } from '../../../../state/cluster-summary/cluster-summary.selectors';
import { ClusterService } from '../../../../service/cluster.service';
+import { LARGE_DIALOG, MEDIUM_DIALOG } from '../../../../index';
@Injectable()
export class ProvenanceEventListingEffects {
@@ -92,8 +93,7 @@ export class ProvenanceEventListingEffects {
title: 'Provenance',
message: 'Searching provenance events...'
},
- disableClose: true,
- panelClass: 'small-dialog'
+ disableClose: true
});
dialogReference.componentInstance.cancel.pipe(take(1)).subscribe(() => {
@@ -276,13 +276,13 @@ export class ProvenanceEventListingEffects {
]),
tap(([request, timeOffset, options, currentRequest, about]) => {
const dialogReference = this.dialog.open(ProvenanceSearchDialog, {
+ ...LARGE_DIALOG,
data: {
timeOffset,
clusterNodes: request.clusterNodes,
options,
currentRequest
- },
- panelClass: 'large-dialog'
+ }
});
dialogReference.componentInstance.timezone = about.timezone;
@@ -322,10 +322,10 @@ export class ProvenanceEventListingEffects {
this.provenanceService.getProvenanceEvent(request.eventId, request.clusterNodeId).subscribe({
next: (response) => {
const dialogReference = this.dialog.open(ProvenanceEventDialog, {
+ ...LARGE_DIALOG,
data: {
event: response.provenanceEvent
- },
- panelClass: 'large-dialog'
+ }
});
dialogReference.componentInstance.contentViewerAvailable = about?.contentViewerUrl != null;
@@ -429,11 +429,11 @@ export class ProvenanceEventListingEffects {
ofType(ProvenanceEventListingActions.showOkDialog),
tap((request) => {
this.dialog.open(OkDialog, {
+ ...MEDIUM_DIALOG,
data: {
title: request.title,
message: request.message
- },
- panelClass: 'medium-dialog'
+ }
});
})
),
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/queue/state/queue-listing/queue-listing.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/queue/state/queue-listing/queue-listing.effects.ts
index 830b0ae31a..bd142de4c1 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/queue/state/queue-listing/queue-listing.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/queue/state/queue-listing/queue-listing.effects.ts
@@ -34,6 +34,7 @@ import { HttpErrorResponse } from '@angular/common/http';
import * as ErrorActions from '../../../../state/error/error.actions';
import { ErrorHelper } from '../../../../service/error-helper.service';
import { stopPollingQueueListingRequest } from './queue-listing.actions';
+import { LARGE_DIALOG } from '../../../../index';
@Injectable()
export class QueueListingEffects {
@@ -92,8 +93,7 @@ export class QueueListingEffects {
title: 'Queue Listing',
message: 'Waiting for queue listing to complete...'
},
- disableClose: true,
- panelClass: 'small-dialog'
+ disableClose: true
});
dialogReference.componentInstance.cancel.pipe(take(1)).subscribe(() => {
@@ -264,8 +264,8 @@ export class QueueListingEffects {
filter((about) => about != null),
tap(([request, about]) => {
const dialogReference = this.dialog.open(FlowFileDialog, {
- data: request,
- panelClass: 'large-dialog'
+ ...LARGE_DIALOG,
+ data: request
});
dialogReference.componentInstance.contentViewerAvailable = about?.contentViewerUrl != null;
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/flow-analysis-rules/flow-analysis-rules.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/flow-analysis-rules/flow-analysis-rules.effects.ts
index f039f3a91e..ec1ed5f6aa 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/flow-analysis-rules/flow-analysis-rules.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/flow-analysis-rules/flow-analysis-rules.effects.ts
@@ -37,6 +37,7 @@ import * as ErrorActions from '../../../../state/error/error.actions';
import { ErrorHelper } from '../../../../service/error-helper.service';
import { selectStatus } from './flow-analysis-rules.selectors';
import { HttpErrorResponse } from '@angular/common/http';
+import { LARGE_DIALOG, SMALL_DIALOG } from '../../../../index';
@Injectable()
export class FlowAnalysisRulesEffects {
@@ -80,10 +81,10 @@ export class FlowAnalysisRulesEffects {
concatLatestFrom(() => this.store.select(selectFlowAnalysisRuleTypes)),
tap(([, flowAnalysisRuleTypes]) => {
this.dialog.open(CreateFlowAnalysisRule, {
+ ...LARGE_DIALOG,
data: {
flowAnalysisRuleTypes
- },
- panelClass: 'medium-dialog'
+ }
});
})
),
@@ -156,11 +157,11 @@ export class FlowAnalysisRulesEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete Flow Analysis Rule',
message: `Delete reporting task ${request.flowAnalysisRule.component.name}?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -221,11 +222,11 @@ export class FlowAnalysisRulesEffects {
const ruleId: string = request.id;
const editDialogReference = this.dialog.open(EditFlowAnalysisRule, {
+ ...LARGE_DIALOG,
data: {
flowAnalysisRule: request.flowAnalysisRule
},
- id: ruleId,
- panelClass: 'large-dialog'
+ id: ruleId
});
editDialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -236,11 +237,11 @@ export class FlowAnalysisRulesEffects {
const goTo = (commands: string[], destination: string): void => {
if (editDialogReference.componentInstance.editFlowAnalysisRuleForm.dirty) {
const saveChangesDialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Flow Analysis Rule Configuration',
message: `Save changes before going to this ${destination}?`
- },
- panelClass: 'small-dialog'
+ }
});
saveChangesDialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/general/general.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/general/general.effects.ts
index addaf271c9..1da2c817e1 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/general/general.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/general/general.effects.ts
@@ -28,6 +28,7 @@ import { selectStatus } from './general.selectors';
import { NiFiState } from '../../../../state';
import { Store } from '@ngrx/store';
import { HttpErrorResponse } from '@angular/common/http';
+import { SMALL_DIALOG } from '../../../../index';
@Injectable()
export class GeneralEffects {
@@ -91,11 +92,11 @@ export class GeneralEffects {
ofType(GeneralActions.updateControllerConfigSuccess),
tap(() => {
this.dialog.open(OkDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Settings',
message: 'Settings successfully applied'
- },
- panelClass: 'small-dialog'
+ }
});
})
),
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/management-controller-services/management-controller-services.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/management-controller-services/management-controller-services.effects.ts
index 46ad41dfc8..1193e3100a 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/management-controller-services/management-controller-services.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/management-controller-services/management-controller-services.effects.ts
@@ -41,6 +41,7 @@ import { DisableControllerService } from '../../../../ui/common/controller-servi
import { PropertyTableHelperService } from '../../../../service/property-table-helper.service';
import { HttpErrorResponse } from '@angular/common/http';
import { ErrorHelper } from '../../../../service/error-helper.service';
+import { LARGE_DIALOG, SMALL_DIALOG, XL_DIALOG } from '../../../../index';
@Injectable()
export class ManagementControllerServicesEffects {
@@ -84,10 +85,10 @@ export class ManagementControllerServicesEffects {
concatLatestFrom(() => this.store.select(selectControllerServiceTypes)),
tap(([, controllerServiceTypes]) => {
const dialogReference = this.dialog.open(CreateControllerService, {
+ ...LARGE_DIALOG,
data: {
controllerServiceTypes
- },
- panelClass: 'medium-dialog'
+ }
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -179,11 +180,11 @@ export class ManagementControllerServicesEffects {
const serviceId: string = request.id;
const editDialogReference = this.dialog.open(EditControllerService, {
+ ...LARGE_DIALOG,
data: {
controllerService: request.controllerService
},
- id: serviceId,
- panelClass: 'large-dialog'
+ id: serviceId
});
editDialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -197,11 +198,11 @@ export class ManagementControllerServicesEffects {
const goTo = (commands: string[], destination: string): void => {
if (editDialogReference.componentInstance.editControllerServiceForm.dirty) {
const saveChangesDialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Controller Service Configuration',
message: `Save changes before going to this ${destination}?`
- },
- panelClass: 'small-dialog'
+ }
});
saveChangesDialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -353,9 +354,9 @@ export class ManagementControllerServicesEffects {
const serviceId: string = request.id;
const enableDialogReference = this.dialog.open(EnableControllerService, {
+ ...XL_DIALOG,
data: request,
- id: serviceId,
- panelClass: 'large-dialog'
+ id: serviceId
});
enableDialogReference.componentInstance.goToReferencingComponent = (
@@ -384,9 +385,9 @@ export class ManagementControllerServicesEffects {
const serviceId: string = request.id;
const enableDialogReference = this.dialog.open(DisableControllerService, {
+ ...XL_DIALOG,
data: request,
- id: serviceId,
- panelClass: 'large-dialog'
+ id: serviceId
});
enableDialogReference.componentInstance.goToReferencingComponent = (
@@ -413,11 +414,11 @@ export class ManagementControllerServicesEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete Controller Service',
message: `Delete controller service ${request.controllerService.component.name}?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/parameter-providers/parameter-providers.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/parameter-providers/parameter-providers.effects.ts
index 5f0bd0d990..e7220fd9a9 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/parameter-providers/parameter-providers.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/parameter-providers/parameter-providers.effects.ts
@@ -55,6 +55,7 @@ import { FetchParameterProviderParameters } from '../../ui/parameter-providers/f
import * as ErrorActions from '../../../../state/error/error.actions';
import { HttpErrorResponse } from '@angular/common/http';
import { ErrorHelper } from '../../../../service/error-helper.service';
+import { LARGE_DIALOG, SMALL_DIALOG, XL_DIALOG } from '../../../../index';
@Injectable()
export class ParameterProvidersEffects {
@@ -109,10 +110,10 @@ export class ParameterProvidersEffects {
concatLatestFrom(() => this.store.select(selectParameterProviderTypes)),
tap(([, parameterProviderTypes]) => {
const dialogReference = this.dialog.open(CreateParameterProvider, {
+ ...LARGE_DIALOG,
data: {
parameterProviderTypes
- },
- panelClass: 'medium-dialog'
+ }
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -186,11 +187,11 @@ export class ParameterProvidersEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete Parameter Provider',
message: `Delete parameter provider ${request.parameterProvider.component.name}?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() =>
@@ -256,11 +257,11 @@ export class ParameterProvidersEffects {
tap((request) => {
const id = request.id;
const editDialogReference = this.dialog.open(EditParameterProvider, {
+ ...LARGE_DIALOG,
data: {
parameterProvider: request.parameterProvider
},
- id,
- panelClass: 'large-dialog'
+ id
});
editDialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -269,11 +270,11 @@ export class ParameterProvidersEffects {
// confirm navigating away while changes are unsaved
if (editDialogReference.componentInstance.editParameterProviderForm.dirty) {
const promptSaveDialogRef = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Parameter Provider Configuration',
message: `Save changes before going to this ${destination}`
- },
- panelClass: 'small-dialog'
+ }
});
promptSaveDialogRef.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -439,7 +440,7 @@ export class ParameterProvidersEffects {
map((action) => action.request),
tap((request) => {
const dialogRef = this.dialog.open(FetchParameterProviderParameters, {
- panelClass: 'xl-dialog',
+ ...XL_DIALOG,
data: request
});
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/registry-clients/registry-clients.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/registry-clients/registry-clients.effects.ts
index 6d60690f71..6b9d13f492 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/registry-clients/registry-clients.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/registry-clients/registry-clients.effects.ts
@@ -35,6 +35,7 @@ import { PropertyTableHelperService } from '../../../../service/property-table-h
import * as ErrorActions from '../../../../state/error/error.actions';
import { ErrorHelper } from '../../../../service/error-helper.service';
import { HttpErrorResponse } from '@angular/common/http';
+import { LARGE_DIALOG, MEDIUM_DIALOG, SMALL_DIALOG } from '../../../../index';
@Injectable()
export class RegistryClientsEffects {
@@ -78,10 +79,10 @@ export class RegistryClientsEffects {
concatLatestFrom(() => this.store.select(selectRegistryClientTypes)),
tap(([, registryClientTypes]) => {
const dialogReference = this.dialog.open(CreateRegistryClient, {
+ ...MEDIUM_DIALOG,
data: {
registryClientTypes
- },
- panelClass: 'medium-dialog'
+ }
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -180,9 +181,9 @@ export class RegistryClientsEffects {
const registryClientId: string = request.registryClient.id;
const editDialogReference = this.dialog.open(EditRegistryClient, {
+ ...LARGE_DIALOG,
data: request,
- id: registryClientId,
- panelClass: 'large-dialog'
+ id: registryClientId
});
editDialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -195,11 +196,11 @@ export class RegistryClientsEffects {
if (editDialogReference.componentInstance.editRegistryClientForm.dirty) {
const saveChangesDialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Registry Client Configuration',
message: `Save changes before going to this Controller Service?`
- },
- panelClass: 'small-dialog'
+ }
});
saveChangesDialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -302,11 +303,11 @@ export class RegistryClientsEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete Registry Client',
message: `Delete registry client ${request.registryClient.component.name}?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/reporting-tasks/reporting-tasks.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/reporting-tasks/reporting-tasks.effects.ts
index bfd2dd0eaa..36e65e0cc8 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/reporting-tasks/reporting-tasks.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/state/reporting-tasks/reporting-tasks.effects.ts
@@ -37,6 +37,7 @@ import * as ErrorActions from '../../../../state/error/error.actions';
import { ErrorHelper } from '../../../../service/error-helper.service';
import { selectStatus } from './reporting-tasks.selectors';
import { HttpErrorResponse } from '@angular/common/http';
+import { LARGE_DIALOG, SMALL_DIALOG } from '../../../../index';
@Injectable()
export class ReportingTasksEffects {
@@ -80,10 +81,10 @@ export class ReportingTasksEffects {
concatLatestFrom(() => this.store.select(selectReportingTaskTypes)),
tap(([, reportingTaskTypes]) => {
this.dialog.open(CreateReportingTask, {
+ ...LARGE_DIALOG,
data: {
reportingTaskTypes
- },
- panelClass: 'medium-dialog'
+ }
});
})
),
@@ -158,11 +159,11 @@ export class ReportingTasksEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete Reporting Task',
message: `Delete reporting task ${request.reportingTask.component.name}?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -223,11 +224,11 @@ export class ReportingTasksEffects {
const taskId: string = request.id;
const editDialogReference = this.dialog.open(EditReportingTask, {
+ ...LARGE_DIALOG,
data: {
reportingTask: request.reportingTask
},
- id: taskId,
- panelClass: 'large-dialog'
+ id: taskId
});
editDialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -238,11 +239,11 @@ export class ReportingTasksEffects {
const goTo = (commands: string[], destination: string): void => {
if (editDialogReference.componentInstance.editReportingTaskForm.dirty) {
const saveChangesDialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Reporting Task Configuration',
message: `Save changes before going to this ${destination}?`
- },
- panelClass: 'small-dialog'
+ }
});
saveChangesDialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.html b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.html
index d6ea31caf2..c82aad3130 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.html
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.html
@@ -37,7 +37,7 @@
color="primary"
(click)="apply()"
mat-raised-button>
- Add
+ Apply
}
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/parameter-providers/edit-parameter-provider/edit-parameter-provider.component.html b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/parameter-providers/edit-parameter-provider/edit-parameter-provider.component.html
index d4c238ef11..bd403b5027 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/parameter-providers/edit-parameter-provider/edit-parameter-provider.component.html
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/parameter-providers/edit-parameter-provider/edit-parameter-provider.component.html
@@ -44,14 +44,16 @@
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/summary/state/component-cluster-status/component-cluster-status.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/summary/state/component-cluster-status/component-cluster-status.effects.ts
index 334fc0355f..0d83201c98 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/summary/state/component-cluster-status/component-cluster-status.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/summary/state/component-cluster-status/component-cluster-status.effects.ts
@@ -29,6 +29,7 @@ import { selectComponentClusterStatusLatestRequest } from './component-cluster-s
import { isDefinedAndNotNull } from '../../../../state/shared';
import { HttpErrorResponse } from '@angular/common/http';
import * as ErrorActions from '../../../../state/error/error.actions';
+import { XL_DIALOG } from '../../../../index';
@Injectable()
export class ComponentClusterStatusEffects {
@@ -100,7 +101,7 @@ export class ComponentClusterStatusEffects {
),
tap(([response, request]) => {
const dialogRef = this.dialog.open(ClusterSummaryDialog, {
- panelClass: 'xl-dialog',
+ ...XL_DIALOG,
data: request
});
dialogRef.componentInstance.componentType = response.componentType;
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/state/user-listing/user-listing.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/state/user-listing/user-listing.effects.ts
index 512a8b9493..9e8207ee47 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/state/user-listing/user-listing.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/state/user-listing/user-listing.effects.ts
@@ -35,6 +35,7 @@ import { UserAccessPolicies } from '../../ui/user-listing/user-access-policies/u
import * as ErrorActions from '../../../../state/error/error.actions';
import { ErrorHelper } from '../../../../service/error-helper.service';
import { HttpErrorResponse } from '@angular/common/http';
+import { LARGE_DIALOG, MEDIUM_DIALOG, SMALL_DIALOG } from '../../../../index';
@Injectable()
export class UserListingEffects {
@@ -97,8 +98,8 @@ export class UserListingEffects {
existingUserGroups
};
const dialogReference = this.dialog.open(EditTenantDialog, {
- data: editTenantRequest,
- panelClass: 'medium-dialog'
+ ...MEDIUM_DIALOG,
+ data: editTenantRequest
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -329,8 +330,8 @@ export class UserListingEffects {
existingUserGroups
};
const dialogReference = this.dialog.open(EditTenantDialog, {
- data: editTenantRequest,
- panelClass: 'medium-dialog'
+ ...MEDIUM_DIALOG,
+ data: editTenantRequest
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -555,8 +556,8 @@ export class UserListingEffects {
existingUserGroups
};
const dialogReference = this.dialog.open(EditTenantDialog, {
- data: editTenantRequest,
- panelClass: 'medium-dialog'
+ ...MEDIUM_DIALOG,
+ data: editTenantRequest
});
dialogReference.componentInstance.saving$ = this.store.select(selectSaving);
@@ -654,8 +655,8 @@ export class UserListingEffects {
tap((request) => {
this.dialog
.open(UserAccessPolicies, {
- data: request,
- panelClass: 'large-dialog'
+ ...LARGE_DIALOG,
+ data: request
})
.afterClosed()
.subscribe((response) => {
@@ -679,11 +680,11 @@ export class UserListingEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete User Account',
message: `Are you sure you want to delete the user account for '${request.user.component.identity}'?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
@@ -720,11 +721,11 @@ export class UserListingEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(YesNoDialog, {
+ ...SMALL_DIALOG,
data: {
title: 'Delete User Account',
message: `Are you sure you want to delete the user group account for '${request.userGroup.component.identity}'?`
- },
- panelClass: 'small-dialog'
+ }
});
dialogReference.componentInstance.yes.pipe(take(1)).subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/ui/user-listing/user-access-policies/user-access-policies.component.scss b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/ui/user-listing/user-access-policies/user-access-policies.component.scss
index 52b37a1d6a..829cb39665 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/ui/user-listing/user-access-policies/user-access-policies.component.scss
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/users/ui/user-listing/user-access-policies/user-access-policies.component.scss
@@ -24,8 +24,6 @@
.listing-table {
table {
- width: auto;
-
td,
th {
cursor: default;
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/service/property-table-helper.service.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/service/property-table-helper.service.ts
index d46068ca9f..a75b9aa76d 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/service/property-table-helper.service.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/service/property-table-helper.service.ts
@@ -38,6 +38,7 @@ import { NiFiState } from '../state';
import { Store } from '@ngrx/store';
import { snackBarError } from '../state/error/error.actions';
import { HttpErrorResponse } from '@angular/common/http';
+import { LARGE_DIALOG, SMALL_DIALOG } from '../index';
@Injectable({
providedIn: 'root'
@@ -62,8 +63,8 @@ export class PropertyTableHelperService {
return (existingProperties: string[], allowsSensitive: boolean) => {
const dialogRequest: NewPropertyDialogRequest = { existingProperties, allowsSensitive };
const newPropertyDialogReference = this.dialog.open(NewPropertyDialog, {
- data: dialogRequest,
- panelClass: 'small-dialog'
+ ...SMALL_DIALOG,
+ data: dialogRequest
});
return newPropertyDialogReference.componentInstance.newProperty.pipe(
@@ -131,10 +132,10 @@ export class PropertyTableHelperService {
switchMap((implementingTypesResponse) => {
// show the create controller service dialog with the types that implemented the interface
const createServiceDialogReference = this.dialog.open(CreateControllerService, {
+ ...LARGE_DIALOG,
data: {
controllerServiceTypes: implementingTypesResponse.controllerServiceTypes
- },
- panelClass: 'medium-dialog'
+ }
});
return createServiceDialogReference.componentInstance.createControllerService.pipe(
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/component-state/component-state.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/component-state/component-state.effects.ts
index 3db1769fbd..d1b38b59ce 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/component-state/component-state.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/component-state/component-state.effects.ts
@@ -27,6 +27,7 @@ import { ComponentStateDialog } from '../../ui/common/component-state/component-
import { resetComponentState } from './component-state.actions';
import { selectComponentUri } from './component-state.selectors';
import { isDefinedAndNotNull } from '../shared';
+import { LARGE_DIALOG } from '../../index';
@Injectable()
export class ComponentStateEffects {
@@ -78,7 +79,7 @@ export class ComponentStateEffects {
ofType(ComponentStateActions.openComponentStateDialog),
tap(() => {
const dialogReference = this.dialog.open(ComponentStateDialog, {
- panelClass: 'large-dialog'
+ ...LARGE_DIALOG
});
dialogReference.afterClosed().subscribe(() => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/contoller-service-state/controller-service-state.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/contoller-service-state/controller-service-state.effects.ts
index 6a8c7a5ac5..cf7f73b279 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/contoller-service-state/controller-service-state.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/contoller-service-state/controller-service-state.effects.ts
@@ -27,6 +27,7 @@ import { MatDialog } from '@angular/material/dialog';
import { ControllerServiceStateService } from '../../service/controller-service-state.service';
import { ControllerServiceEntity, ControllerServiceReferencingComponentEntity, isDefinedAndNotNull } from '../shared';
import { SetEnableRequest, SetEnableStep } from './index';
+import { MEDIUM_DIALOG } from '../../index';
@Injectable()
export class ControllerServiceStateEffects {
@@ -318,11 +319,11 @@ export class ControllerServiceStateEffects {
ofType(ControllerServiceActions.showOkDialog),
tap((request) => {
this.dialog.open(OkDialog, {
+ ...MEDIUM_DIALOG,
data: {
title: request.title,
message: request.message
- },
- panelClass: 'medium-dialog'
+ }
});
})
),
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/status-history/status-history.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/status-history/status-history.effects.ts
index 0f413f4900..dea6e81c2a 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/status-history/status-history.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/status-history/status-history.effects.ts
@@ -146,8 +146,9 @@ export class StatusHistoryEffects {
map((action) => action.request),
tap((request) => {
const dialogReference = this.dialog.open(StatusHistory, {
- data: request,
- panelClass: 'large-dialog'
+ maxHeight: 'unset',
+ maxWidth: 'unset',
+ data: request
});
dialogReference.afterClosed().subscribe((response) => {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/system-diagnostics/system-diagnostics.effects.ts b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/system-diagnostics/system-diagnostics.effects.ts
index 08d09c7349..14aa0190b4 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/system-diagnostics/system-diagnostics.effects.ts
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/state/system-diagnostics/system-diagnostics.effects.ts
@@ -25,6 +25,7 @@ import * as SystemDiagnosticsActions from './system-diagnostics.actions';
import { catchError, from, map, of, switchMap, tap } from 'rxjs';
import { SystemDiagnosticsRequest } from './index';
import { SystemDiagnosticsDialog } from '../../ui/common/system-diagnostics-dialog/system-diagnostics-dialog.component';
+import { LARGE_DIALOG } from '../../index';
@Injectable()
export class SystemDiagnosticsEffects {
@@ -98,7 +99,9 @@ export class SystemDiagnosticsEffects {
ofType(SystemDiagnosticsActions.openSystemDiagnosticsDialog),
tap(() => {
this.dialog
- .open(SystemDiagnosticsDialog, { panelClass: 'large-dialog' })
+ .open(SystemDiagnosticsDialog, {
+ ...LARGE_DIALOG
+ })
.afterClosed()
.subscribe(() => {
this.store.dispatch(SystemDiagnosticsActions.viewSystemDiagnosticsComplete());
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/component-state/component-state.component.html b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/component-state/component-state.component.html
index efc6f74485..e539286f66 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/component-state/component-state.component.html
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/component-state/component-state.component.html
@@ -31,7 +31,7 @@
{{ stateDescription }}