UI: Refactoring
This commit is contained in:
parent
8c8485d7a7
commit
3c50ab1d5e
@ -102,14 +102,22 @@ export class ColorSettingsPanelComponent extends PageComponent implements OnInit
|
||||
{
|
||||
type: [this.colorSettings?.type || ColorType.constant, []],
|
||||
color: [this.colorSettings?.color, []],
|
||||
gradient: [{value: this.colorSettings?.gradient || defaultGradient(this.minValue, this.maxValue), disabled: this.colorSettings?.type !== ColorType.gradient}, []],
|
||||
rangeList: [{value: this.colorSettings?.rangeList || defaultRange(), disabled: this.colorSettings?.type !== ColorType.range}, []],
|
||||
colorFunction: [{value: this.colorSettings?.colorFunction, disabled: this.colorSettings?.type !== ColorType.function}, []]
|
||||
gradient: [this.colorSettings?.gradient || defaultGradient(this.minValue, this.maxValue), []],
|
||||
rangeList: [this.colorSettings?.rangeList || defaultRange(), []],
|
||||
colorFunction: [this.colorSettings?.colorFunction, []]
|
||||
}
|
||||
);
|
||||
this.colorSettingsFormGroup.get('type').valueChanges.pipe(
|
||||
takeUntilDestroyed(this.destroyRef)
|
||||
).subscribe((type: ColorType) => {
|
||||
).subscribe(() => {
|
||||
this.updateValidators();
|
||||
setTimeout(() => {this.popover?.updatePosition();}, 0);
|
||||
});
|
||||
this.updateValidators();
|
||||
}
|
||||
|
||||
updateValidators() {
|
||||
const type: ColorType = this.colorSettingsFormGroup.get('type').value;
|
||||
this.colorSettingsFormGroup.get('gradient').disable({emitEvent: false});
|
||||
this.colorSettingsFormGroup.get('rangeList').disable({emitEvent: false});
|
||||
this.colorSettingsFormGroup.get('colorFunction').disable({emitEvent: false});
|
||||
@ -124,8 +132,6 @@ export class ColorSettingsPanelComponent extends PageComponent implements OnInit
|
||||
this.colorSettingsFormGroup.get('colorFunction').enable({emitEvent: false});
|
||||
break;
|
||||
}
|
||||
setTimeout(() => {this.popover?.updatePosition();}, 0);
|
||||
});
|
||||
}
|
||||
|
||||
copyColorSettings(comp: ColorSettingsComponent) {
|
||||
@ -145,7 +151,7 @@ export class ColorSettingsPanelComponent extends PageComponent implements OnInit
|
||||
}
|
||||
|
||||
applyColorSettings() {
|
||||
const colorSettings: ColorSettings = {...this.colorSettings, ...this.colorSettingsFormGroup.value};
|
||||
const colorSettings: ColorSettings = this.colorSettingsFormGroup.getRawValue();
|
||||
this.colorSettingsApplied.emit(colorSettings);
|
||||
}
|
||||
|
||||
|
||||
@ -82,9 +82,9 @@ export class DataLayerColorSettingsPanelComponent extends PageComponent implemen
|
||||
{
|
||||
type: [this.colorSettings?.type || DataLayerColorType.constant, []],
|
||||
color: [this.colorSettings?.color, []],
|
||||
rangeKey: [{value: this.colorSettings?.rangeKey, disabled: this.colorSettings.type !== DataLayerColorType.range}, [Validators.required]],
|
||||
range: [{value: this.colorSettings?.range, disabled: this.colorSettings.type !== DataLayerColorType.range}, []],
|
||||
colorFunction: [{value: this.colorSettings?.colorFunction, disabled: this.colorSettings.type !== DataLayerColorType.function}, []]
|
||||
rangeKey: [this.colorSettings?.rangeKey, [Validators.required]],
|
||||
range: [this.colorSettings?.range, []],
|
||||
colorFunction: [this.colorSettings?.colorFunction, []]
|
||||
}
|
||||
);
|
||||
this.colorSettingsFormGroup.get('type').valueChanges.pipe(
|
||||
@ -101,7 +101,7 @@ export class DataLayerColorSettingsPanelComponent extends PageComponent implemen
|
||||
}
|
||||
|
||||
applyColorSettings() {
|
||||
const colorSettings: DataLayerColorSettings = {...this.colorSettings ,...this.colorSettingsFormGroup.value};
|
||||
const colorSettings: DataLayerColorSettings = this.colorSettingsFormGroup.getRawValue();
|
||||
this.colorSettingsApplied.emit(colorSettings);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user