From 3dcb973adb51bd1ffd9ff5c92553340416a581d3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:34:20 -0800 Subject: [PATCH] Enhancement: Explain behavior of unset app config boolean to user (#5345) --- src-ui/messages.xlf | 9 +++++++- .../admin/config/config.component.html | 2 +- .../common/input/switch/switch.component.html | 23 +++++++++++++++++-- .../input/switch/switch.component.spec.ts | 8 ++++++- .../common/input/switch/switch.component.ts | 9 +++++++- 5 files changed, 45 insertions(+), 6 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 4b5c56150..9581095ad 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3706,7 +3706,7 @@ src/app/components/common/input/switch/switch.component.html - 10 + 17 src/app/components/common/input/text/text.component.html @@ -3827,6 +3827,13 @@ 92 + + Note: value has not yet been set and will not apply until explicitly changed + + src/app/components/common/input/switch/switch.component.html + 45 + + Add tag diff --git a/src-ui/src/app/components/admin/config/config.component.html b/src-ui/src/app/components/admin/config/config.component.html index 493ee4737..6f5fc4bac 100644 --- a/src-ui/src/app/components/admin/config/config.component.html +++ b/src-ui/src/app/components/admin/config/config.component.html @@ -27,7 +27,7 @@ @switch (option.type) { @case (ConfigOptionType.Select) { } @case (ConfigOptionType.Number) { } - @case (ConfigOptionType.Boolean) { } + @case (ConfigOptionType.Boolean) { } @case (ConfigOptionType.String) { } @case (ConfigOptionType.JSON) { } } diff --git a/src-ui/src/app/components/common/input/switch/switch.component.html b/src-ui/src/app/components/common/input/switch/switch.component.html index 189aa937f..e0b63c5f7 100644 --- a/src-ui/src/app/components/common/input/switch/switch.component.html +++ b/src-ui/src/app/components/common/input/switch/switch.component.html @@ -2,7 +2,14 @@ @if (!horizontal) { - {{title}} + + {{title}} + @if (showUnsetNote && isUnset) { + + + + } + @if (removable) { @@ -16,7 +23,14 @@ @if (horizontal) { - {{title}} + + {{title}} + @if (showUnsetNote && isUnset) { + + + + } + } @if (hint) { {{hint}} @@ -25,3 +39,8 @@ + + + + Note: value has not yet been set and will not apply until explicitly changed + diff --git a/src-ui/src/app/components/common/input/switch/switch.component.spec.ts b/src-ui/src/app/components/common/input/switch/switch.component.spec.ts index 08a4598a3..372bfd8ab 100644 --- a/src-ui/src/app/components/common/input/switch/switch.component.spec.ts +++ b/src-ui/src/app/components/common/input/switch/switch.component.spec.ts @@ -5,6 +5,7 @@ import { NG_VALUE_ACCESSOR, ReactiveFormsModule, } from '@angular/forms' +import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' describe('SwitchComponent', () => { let component: SwitchComponent @@ -15,7 +16,7 @@ describe('SwitchComponent', () => { TestBed.configureTestingModule({ declarations: [SwitchComponent], providers: [], - imports: [FormsModule, ReactiveFormsModule], + imports: [FormsModule, ReactiveFormsModule, NgbTooltipModule], }).compileComponents() fixture = TestBed.createComponent(SwitchComponent) @@ -36,4 +37,9 @@ describe('SwitchComponent', () => { fixture.detectChanges() expect(component.value).toBeFalsy() }) + + it('should show note if unset', () => { + component.value = null + expect(component.isUnset).toBeTruthy() + }) }) diff --git a/src-ui/src/app/components/common/input/switch/switch.component.ts b/src-ui/src/app/components/common/input/switch/switch.component.ts index 44e095baa..312c98936 100644 --- a/src-ui/src/app/components/common/input/switch/switch.component.ts +++ b/src-ui/src/app/components/common/input/switch/switch.component.ts @@ -1,4 +1,4 @@ -import { Component, forwardRef } from '@angular/core' +import { Component, Input, forwardRef } from '@angular/core' import { NG_VALUE_ACCESSOR } from '@angular/forms' import { AbstractInputComponent } from '../abstract-input' @@ -15,7 +15,14 @@ import { AbstractInputComponent } from '../abstract-input' styleUrls: ['./switch.component.scss'], }) export class SwitchComponent extends AbstractInputComponent { + @Input() + showUnsetNote: boolean = false + constructor() { super() } + + get isUnset(): boolean { + return this.value === null || this.value === undefined + } }