AAE-44098 Bottom tab navigation buttons (#11834)

* feat: enable tab navigation buttons

* feat: better strings and button positioning

* feat: reduce overall padding

* feat: adjust buttons based on ux mockups

* test: add some tests

* fix: build error

* fix: rename property to showBottomTabNavButtons for clarity

* feat: simplify changes

* test: copilot suggestion

* fix: prevent upstream visual regression issues.

* fix: copilot suggestions

* fix: height change
This commit is contained in:
Joshua Cain
2026-05-20 14:19:24 +05:30
committed by Anamika Dey
parent 11c8a8fe00
commit bb70552d81
7 changed files with 670 additions and 118 deletions
@@ -1,107 +1,146 @@
<div *ngIf="!hasForm()">
<ng-content select="[empty-form]" />
</div>
<div
*ngIf="hasForm()"
class="adf-cloud-form-container adf-cloud-form-{{ displayConfiguration?.options?.fullscreen ? 'fullscreen' : 'inline' }}-container"
[style]="formStyle"
>
<div
class="adf-cloud-form-content"
[class.adf-cloud-form-content-standalone-fullscreen]="displayMode === 'standalone' && displayConfiguration?.options?.fullscreen"
[class.adf-cloud-form-content-toolbar]="!!displayConfiguration?.options?.displayToolbar"
[cdkTrapFocus]="displayConfiguration?.options?.trapFocus"
cdkTrapFocusAutoCapture>
<adf-toolbar class="adf-cloud-form-toolbar" *ngIf="displayConfiguration?.options?.displayToolbar">
<div class="adf-cloud-form__form-title">
<span class="adf-cloud-form__display-name" [title]="form.taskName">
{{ form.taskName }}
<ng-container *ngIf="!form.taskName">
{{ 'FORM.FORM_RENDERER.NAMELESS_TASK' | translate }}
</ng-container>
</span>
</div>
<adf-toolbar-divider *ngIf="displayConfiguration?.options?.displayCloseButton" />
<button
*ngIf="displayConfiguration?.options?.displayCloseButton"
class="adf-cloud-form-close-button"
data-automation-id="adf-toolbar-right-back"
[attr.aria-label]="'ADF_VIEWER.ACTIONS.CLOSE' | translate"
[attr.data-automation-id]="'adf-cloud-form-close-button'"
[title]="'ADF_VIEWER.ACTIONS.CLOSE' | translate"
mat-icon-button
title="{{ 'ADF_VIEWER.ACTIONS.CLOSE' | translate }}"
(click)="switchToDisplayMode()"
>
<mat-icon adf-icon="close" />
</button>
</adf-toolbar>
<mat-card
appearance="outlined"
class="adf-cloud-form-content-card"
[class.adf-cloud-form-content-card-fullscreen]="displayMode === 'fullScreen'"
[class.adf-cloud-form-content-card-fullscreen-toolbar]="displayMode === 'fullScreen' && displayConfiguration?.options?.displayToolbar"
>
<div class="adf-cloud-form-content-card-container">
<mat-card-header *ngIf="showTitle || showRefreshButton || showValidationIcon">
<mat-card-title>
<h4>
<div *ngIf="showValidationIcon" class="adf-form-validation-button">
<i id="adf-valid-form-icon" class="material-icons" *ngIf="form.isValid; else no_valid_form">check_circle</i>
<ng-template #no_valid_form>
<i id="adf-invalid-form-icon" class="material-icons adf-invalid-color">error</i>
</ng-template>
</div>
<div
*ngIf="!displayConfiguration?.options?.fullscreen && findDisplayConfiguration('fullScreen')"
class="adf-cloud-form-fullscreen-button"
>
<button
mat-icon-button
(click)="switchToDisplayMode('fullScreen')"
[attr.data-automation-id]="'adf-cloud-form-fullscreen-button'"
>
<mat-icon adf-icon="fullscreen" />
</button>
</div>
<div *ngIf="showRefreshButton" class="adf-cloud-form-reload-button" [title]="'ADF_VIEWER.ACTIONS.FULLSCREEN' | translate">
<button mat-icon-button (click)="onRefreshClicked()" [attr.aria-label]="'ADF_VIEWER.ACTIONS.FULLSCREEN' | translate">
<mat-icon adf-icon="refresh" />
</button>
</div>
<span *ngIf="isTitleEnabled()" class="adf-cloud-form-title" [title]="form.taskName"
>{{ form.taskName }}
<ng-container *ngIf="!form.taskName">
{{ 'FORM.FORM_RENDERER.NAMELESS_TASK' | translate }}
</ng-container>
</span>
</h4>
</mat-card-title>
</mat-card-header>
<mat-card-content class="adf-form-container-card-content">
<adf-form-renderer [formDefinition]="form" [readOnly]="readOnly" />
</mat-card-content>
<mat-card-actions *ngIf="form.hasOutcomes()" class="adf-cloud-form-content-card-actions" align="end">
<ng-content select="adf-cloud-form-custom-outcomes" />
<ng-container *ngFor="let outcome of form.outcomes">
<button
*ngIf="outcome.isVisible"
[id]="'adf-form-' + outcome.name | formatSpace"
[color]="getColorForOutcome(outcome.name)"
mat-button
[disabled]="!isOutcomeButtonEnabled(outcome)"
[class.adf-form-hide-button]="!isOutcomeButtonVisible(outcome, form.readOnly)"
class="adf-cloud-form-custom-outcome-button"
(click)="onOutcomeClicked(outcome)"
>
{{ getCustomOutcomeButtonText(outcome) || (outcome.name | translate | uppercase) }}
</button>
</ng-container>
</mat-card-actions>
</div>
</mat-card>
@if (!hasForm()) {
<div>
<ng-content select="[empty-form]" />
</div>
</div>
} @else {
<div
class="adf-cloud-form-container adf-cloud-form-{{ displayConfiguration?.options?.fullscreen ? 'fullscreen' : 'inline' }}-container"
[style]="formStyle"
>
<div
class="adf-cloud-form-content"
[class.adf-cloud-form-content-standalone-fullscreen]="displayMode === 'standalone' && displayConfiguration?.options?.fullscreen"
[class.adf-cloud-form-content-toolbar]="!!displayConfiguration?.options?.displayToolbar"
[cdkTrapFocus]="displayConfiguration?.options?.trapFocus"
cdkTrapFocusAutoCapture>
@if (displayConfiguration?.options?.displayToolbar) {
<adf-toolbar class="adf-cloud-form-toolbar">
<div class="adf-cloud-form__form-title">
<span class="adf-cloud-form__display-name" [title]="form.taskName">
{{ form.taskName }}
@if (!form.taskName) {
{{ 'FORM.FORM_RENDERER.NAMELESS_TASK' | translate }}
}
</span>
</div>
@if (displayConfiguration?.options?.displayCloseButton) {
<adf-toolbar-divider />
<button
class="adf-cloud-form-close-button"
data-automation-id="adf-toolbar-right-back"
[attr.aria-label]="'ADF_VIEWER.ACTIONS.CLOSE' | translate"
[attr.data-automation-id]="'adf-cloud-form-close-button'"
[title]="'ADF_VIEWER.ACTIONS.CLOSE' | translate"
mat-icon-button
(click)="switchToDisplayMode()"
>
<mat-icon adf-icon="close" />
</button>
}
</adf-toolbar>
}
<mat-card
appearance="outlined"
class="adf-cloud-form-content-card"
[class.adf-cloud-form-content-card-fullscreen]="displayMode === 'fullScreen'"
[class.adf-cloud-form-content-card-fullscreen-toolbar]="displayMode === 'fullScreen' && displayConfiguration?.options?.displayToolbar"
>
<div class="adf-cloud-form-content-card-container">
@if (showTitle || showRefreshButton || showValidationIcon) {
<mat-card-header>
<mat-card-title>
<h4>
@if (showValidationIcon) {
<div class="adf-form-validation-button">
@if (form.isValid) {
<i id="adf-valid-form-icon" class="material-icons">check_circle</i>
} @else {
<i id="adf-invalid-form-icon" class="material-icons adf-invalid-color">error</i>
}
</div>
}
@if (!displayConfiguration?.options?.fullscreen && findDisplayConfiguration('fullScreen')) {
<div class="adf-cloud-form-fullscreen-button">
<button
mat-icon-button
(click)="switchToDisplayMode('fullScreen')"
[attr.data-automation-id]="'adf-cloud-form-fullscreen-button'"
>
<mat-icon adf-icon="fullscreen" />
</button>
</div>
}
@if (showRefreshButton) {
<div class="adf-cloud-form-reload-button" [title]="'ADF_VIEWER.ACTIONS.FULLSCREEN' | translate">
<button mat-icon-button (click)="onRefreshClicked()" [attr.aria-label]="'ADF_VIEWER.ACTIONS.FULLSCREEN' | translate">
<mat-icon adf-icon="refresh" />
</button>
</div>
}
@if (isTitleEnabled()) {
<span class="adf-cloud-form-title" [title]="form.taskName">
{{ form.taskName }}
@if (!form.taskName) {
{{ 'FORM.FORM_RENDERER.NAMELESS_TASK' | translate }}
}
</span>
}
</h4>
</mat-card-title>
</mat-card-header>
}
<mat-card-content class="adf-form-container-card-content">
<adf-form-renderer [formDefinition]="form" [readOnly]="readOnly" />
</mat-card-content>
@if (form.hasOutcomes() || shouldShowTabNavigation) {
<mat-card-actions class="adf-cloud-form-content-card-actions" [class.adf-has-tab-navigation]="shouldShowTabNavigation" align="end">
@if (shouldShowTabNavigation) {
<div class="adf-tab-navigation-buttons">
<button
mat-button
[title]="'FORM.BUTTON.PREVIOUS_TAB_TITLE' | translate"
[disabled]="!canNavigatePreviousTab"
(click)="navigateToPreviousTab()"
data-automation-id="tab-nav-previous-button">
<mat-icon adf-icon="keyboard_arrow_left" />
{{ 'FORM.BUTTON.PREVIOUS_TAB' | translate }}
</button>
<button
mat-button
[title]="'FORM.BUTTON.NEXT_TAB_TITLE' | translate"
[disabled]="!canNavigateNextTab"
(click)="navigateToNextTab()"
data-automation-id="tab-nav-next-button">
{{ 'FORM.BUTTON.NEXT_TAB' | translate }}
<mat-icon adf-icon="keyboard_arrow_right" iconPositionEnd />
</button>
</div>
<span class="adf-tab-navigation-divider" aria-hidden="true"></span>
}
<div class="adf-cloud-form-outcome-buttons">
<ng-content select="adf-cloud-form-custom-outcomes" />
@for (outcome of form.outcomes; track outcome.name) {
@if (outcome.isVisible) {
<button
[id]="'adf-form-' + outcome.name | formatSpace"
[color]="getColorForOutcome(outcome.name)"
mat-button
[disabled]="!isOutcomeButtonEnabled(outcome)"
[class.adf-form-hide-button]="!isOutcomeButtonVisible(outcome, form.readOnly)"
class="adf-cloud-form-custom-outcome-button"
(click)="onOutcomeClicked(outcome)"
>
{{ getCustomOutcomeButtonText(outcome) || (outcome.name | translate | uppercase) }}
</button>
}
}
</div>
</mat-card-actions>
}
</div>
</mat-card>
</div>
</div>
}
@@ -1,4 +1,5 @@
@use '../../mat-selectors' as ms;
@use '../../flex' as flex;
/* cspell: disable-next-line */
/* stylelint-disable scss/at-extend-no-missing-placeholder */
@@ -138,3 +139,40 @@
white-space: normal;
}
}
.adf-cloud-form-content-card-actions.adf-has-tab-navigation {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: flex-end;
@include flex.layout-bp(lt-sm) {
flex-direction: column;
align-items: stretch;
}
}
.adf-tab-navigation-buttons {
display: flex;
align-items: center;
gap: 4px;
@include flex.layout-bp(lt-sm) {
justify-content: center;
}
}
.adf-tab-navigation-divider {
width: 1px;
height: 24px;
background-color: var(--mat-sys-outline-variant, rgba(0, 0, 0, 0.12));
@include flex.layout-bp(lt-sm) {
display: none;
}
}
.adf-cloud-form-outcome-buttons {
display: flex;
align-items: center;
}
@@ -46,7 +46,7 @@ import { MatDialog } from '@angular/material/dialog';
import { MatDialogHarness } from '@angular/material/dialog/testing';
import { By } from '@angular/platform-browser';
import { TranslateLoader, TranslateService, provideTranslateService, provideTranslateLoader } from '@ngx-translate/core';
import { firstValueFrom, Observable, of, throwError } from 'rxjs';
import { BehaviorSubject, firstValueFrom, Observable, of, throwError } from 'rxjs';
import {
cloudFormMock,
conditionalUploadWidgetsMock,
@@ -59,7 +59,7 @@ import {
import { FormCloudRepresentation } from '../models/form-cloud-representation.model';
import { FormCloudService } from '../services/form-cloud.service';
import { DisplayModeService } from '../services/display-mode.service';
import { FORM_CLOUD_FIELD_VALIDATORS_TOKEN, FormCloudComponent } from './form-cloud.component';
import { ADF_FORM_TAB_NAV_ENABLED, FORM_CLOUD_FIELD_VALIDATORS_TOKEN, FormCloudComponent } from './form-cloud.component';
import { MatButtonHarness } from '@angular/material/button/testing';
import { FormCloudDisplayMode } from '../../services/form-fields.interfaces';
import { CloudFormRenderingService } from './cloud-form-rendering.service';
@@ -1701,6 +1701,106 @@ describe('FormCloudComponent', () => {
expect(outcomeButton.nativeElement.textContent.trim()).toBe('COMPLETE');
});
});
describe('Tab navigation', () => {
const tabbedFormJson = {
id: 'tabbed-form',
name: 'TabbedForm',
tabs: [
{ id: 'tab1', title: 'Tab 1' },
{ id: 'tab2', title: 'Tab 2' },
{ id: 'tab3', title: 'Tab 3' }
],
fields: [
{
id: 'container1',
type: 'container',
tab: 'tab1',
numberOfColumns: 1,
fields: { 1: [{ id: 'text1', type: 'text', name: 'Text 1' }] }
},
{
id: 'container2',
type: 'container',
tab: 'tab2',
numberOfColumns: 1,
fields: { 1: [{ id: 'text2', type: 'text', name: 'Text 2' }] }
},
{
id: 'container3',
type: 'container',
tab: 'tab3',
numberOfColumns: 1,
fields: { 1: [{ id: 'text3', type: 'text', name: 'Text 3' }] }
}
],
outcomes: [],
showBottomTabNavButtons: true
};
describe('shouldShowTabNavigation', () => {
it('should return false when form json showBottomTabNavButtons is false', () => {
formComponent.form = new FormModel({ ...tabbedFormJson, showBottomTabNavButtons: false });
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
});
it('should return false when form json showBottomTabNavButtons is undefined', () => {
const { showBottomTabNavButtons: _unused, ...jsonWithoutFlag } = tabbedFormJson;
formComponent.form = new FormModel(jsonWithoutFlag);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
});
it('should return false when form has only one visible tab', () => {
const singleTabJson = {
...tabbedFormJson,
tabs: [{ id: 'tab1', title: 'Tab 1' }],
fields: [tabbedFormJson.fields[0]]
};
formComponent.form = new FormModel(singleTabJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
});
it('should return true when form json showBottomTabNavButtons is true and there is more than one visible tab', () => {
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeTrue();
});
});
describe('template rendering', () => {
it('should not render tab navigation buttons when shouldShowTabNavigation is false', () => {
formComponent.form = new FormModel({ ...tabbedFormJson, showBottomTabNavButtons: false });
fixture.detectChanges();
expect(fixture.debugElement.query(By.css('.adf-tab-navigation-buttons'))).toBeNull();
expect(fixture.debugElement.query(By.css('[data-automation-id="tab-nav-previous-button"]'))).toBeNull();
expect(fixture.debugElement.query(By.css('[data-automation-id="tab-nav-next-button"]'))).toBeNull();
});
it('should render Previous and Next tab navigation buttons when shouldShowTabNavigation is true', () => {
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(fixture.debugElement.query(By.css('.adf-tab-navigation-buttons'))).toBeTruthy();
expect(fixture.debugElement.query(By.css('[data-automation-id="tab-nav-previous-button"]'))).toBeTruthy();
expect(fixture.debugElement.query(By.css('[data-automation-id="tab-nav-next-button"]'))).toBeTruthy();
});
it('should render the form actions container when only tab nav exists and the form has no outcomes', () => {
formComponent.form = new FormModel({ ...tabbedFormJson, outcomes: [] });
fixture.detectChanges();
expect(fixture.debugElement.query(By.css('.adf-cloud-form-content-card-actions'))).toBeTruthy();
});
});
});
});
describe('Multilingual Form', () => {
@@ -1991,3 +2091,109 @@ describe('retrieve metadata on submit', () => {
expect(formComponent['formCloudService'].completeTaskForm).toHaveBeenCalled();
});
});
describe('FormCloudComponent - ADF_FORM_TAB_NAV_ENABLED token', () => {
let formComponent: FormCloudComponent;
let fixture: ComponentFixture<FormCloudComponent>;
const tabbedFormJson = {
id: 'tabbed-form',
name: 'TabbedForm',
tabs: [
{ id: 'tab1', title: 'Tab 1' },
{ id: 'tab2', title: 'Tab 2' }
],
fields: [
{
id: 'container1',
type: 'container',
tab: 'tab1',
numberOfColumns: 1,
fields: { 1: [{ id: 'text1', type: 'text', name: 'Text 1' }] }
},
{
id: 'container2',
type: 'container',
tab: 'tab2',
numberOfColumns: 1,
fields: { 1: [{ id: 'text2', type: 'text', name: 'Text 2' }] }
}
],
outcomes: [],
showBottomTabNavButtons: true
};
const createFixture = (tokenValue: any) => {
TestBed.resetTestingModule();
TestBed.configureTestingModule({
imports: [NoopTranslateModule, NoopAuthModule, FormCloudComponent],
providers: [
{ provide: VersionCompatibilityService, useValue: {} },
{ provide: FormRenderingService, useClass: CloudFormRenderingService },
{ provide: ADF_FORM_TAB_NAV_ENABLED, useValue: tokenValue }
]
});
const apiService = TestBed.inject(AlfrescoApiService);
spyOn(apiService, 'getInstance').and.returnValue(mockOauth2Auth);
fixture = TestBed.createComponent(FormCloudComponent);
formComponent = fixture.componentInstance;
};
it('should render tab navigation buttons when token is absent and form model opts in', () => {
TestBed.resetTestingModule();
TestBed.configureTestingModule({
imports: [NoopTranslateModule, NoopAuthModule, FormCloudComponent],
providers: [
{ provide: VersionCompatibilityService, useValue: {} },
{ provide: FormRenderingService, useClass: CloudFormRenderingService }
]
});
const apiService = TestBed.inject(AlfrescoApiService);
spyOn(apiService, 'getInstance').and.returnValue(mockOauth2Auth);
fixture = TestBed.createComponent(FormCloudComponent);
formComponent = fixture.componentInstance;
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeTrue();
});
it('should hide tab navigation buttons when token resolves to static false even if form opts in', () => {
createFixture(false);
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
});
it('should show tab navigation buttons when token resolves to static true and form opts in', () => {
createFixture(true);
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeTrue();
});
it('should react to observable token emissions', () => {
const subject = new BehaviorSubject<boolean>(false);
createFixture(subject);
formComponent.form = new FormModel(tabbedFormJson);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
subject.next(true);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeTrue();
subject.next(false);
fixture.detectChanges();
expect(formComponent.shouldShowTabNavigation).toBeFalse();
});
});
@@ -27,9 +27,10 @@ import {
OnChanges,
OnInit,
Output,
SimpleChanges
SimpleChanges,
ViewChild
} from '@angular/core';
import { forkJoin, Observable, of, Subscription } from 'rxjs';
import { forkJoin, isObservable, Observable, of, Subscription } from 'rxjs';
import { filter, map, switchMap } from 'rxjs/operators';
import {
ConfirmDialogComponent,
@@ -60,18 +61,19 @@ import { FormCloudDisplayMode, FormCloudDisplayModeConfiguration } from '../../s
import { FormCloudSpinnerService } from '../services/spinner/form-cloud-spinner.service';
import { DisplayModeService } from '../services/display-mode.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { CommonModule } from '@angular/common';
import { UpperCasePipe } from '@angular/common';
import { TranslatePipe } from '@ngx-translate/core';
import { MatButtonModule } from '@angular/material/button';
import { MatCardModule } from '@angular/material/card';
import { A11yModule } from '@angular/cdk/a11y';
export const FORM_CLOUD_FIELD_VALIDATORS_TOKEN = new InjectionToken<FormFieldValidator[]>('FORM_CLOUD_FIELD_VALIDATORS_TOKEN');
export const ADF_FORM_TAB_NAV_ENABLED = new InjectionToken<Observable<boolean> | boolean>('ADF_FORM_TAB_NAV_ENABLED');
@Component({
selector: 'adf-cloud-form',
imports: [
CommonModule,
UpperCasePipe,
TranslatePipe,
FormatSpacePipe,
MatButtonModule,
@@ -178,6 +180,23 @@ export class FormCloudComponent extends FormBaseComponent implements OnChanges,
displayConfiguration: FormCloudDisplayModeConfiguration = DisplayModeService.DEFAULT_DISPLAY_MODE_CONFIGURATIONS[0];
style: string = '';
@ViewChild(FormRendererComponent)
formRenderer!: FormRendererComponent<any>;
private tabNavEnabledByHost = true;
get shouldShowTabNavigation(): boolean {
return this.tabNavEnabledByHost && this.currentForm?.json?.showBottomTabNavButtons === true && this.visibleTabCount > 1;
}
get canNavigatePreviousTab(): boolean {
return this.formRenderer?.canNavigatePrevious ?? false;
}
get canNavigateNextTab(): boolean {
return this.formRenderer?.canNavigateNext ?? this.visibleTabCount > 1;
}
protected formCloudService = inject(FormCloudService);
protected formService = inject(FormService);
protected visibilityService = inject(WidgetVisibilityService);
@@ -188,8 +207,29 @@ export class FormCloudComponent extends FormBaseComponent implements OnChanges,
private readonly destroyRef = inject(DestroyRef);
private get currentForm(): FormModel | undefined {
return super.form;
}
private get visibleTabCount(): number {
return this.currentForm?.tabs?.filter((tab) => tab.isVisible).length ?? 0;
}
navigateToPreviousTab(): void {
if (this.formRenderer?.canNavigatePrevious) {
this.formRenderer?.navigateToPreviousTab();
}
}
navigateToNextTab(): void {
if (this.formRenderer?.canNavigateNext) {
this.formRenderer?.navigateToNextTab();
}
}
constructor() {
const injectedFieldValidators = inject(FORM_CLOUD_FIELD_VALIDATORS_TOKEN, { optional: true });
const tabNavEnabledToken = inject(ADF_FORM_TAB_NAV_ENABLED, { optional: true });
super();
this.loadInjectedFieldValidators(injectedFieldValidators);
@@ -197,6 +237,17 @@ export class FormCloudComponent extends FormBaseComponent implements OnChanges,
this.id = uuidGeneration();
if (tabNavEnabledToken != null) {
if (isObservable(tabNavEnabledToken)) {
tabNavEnabledToken.pipe(takeUntilDestroyed(this.destroyRef)).subscribe((enabled) => {
this.tabNavEnabledByHost = enabled ?? false;
this.changeDetector.markForCheck();
});
} else {
this.tabNavEnabledByHost = tabNavEnabledToken;
}
}
this.formService.formContentClicked.pipe(takeUntilDestroyed()).subscribe((content) => {
if (content instanceof UploadWidgetContentLinkModel) {
this.form.setNodeIdValueForViewersLinkedToUploadWidget(content);