Skip to content

Commit 0ce3cdd

Browse files
authored
fix: rename LayersComponent.select event to prevent conflict with html input.select (#2127)
1 parent 21f498c commit 0ce3cdd

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

packages/uhk-web/src/app/components/layers/layers.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<button *ngIf="layerOption.selected"
77
type="button"
88
class="btn"
9-
(click)="selectLayer(layerOption)"
9+
(click)="onSelectLayer(layerOption)"
1010
[class.btn-default]="layerOption.id !== current.id"
1111
[class.btn-primary]="layerOption.id === current.id">
1212
{{ layerOption.name }}
@@ -20,7 +20,7 @@
2020
<layer-option *ngIf="layerOption.id !== 255"
2121
[layerOption]="layerOption"
2222
(remove)="onRemoveLayer($event)"
23-
(select)="onSelectLayer($event)"
23+
(select)="onAddLayer($event)"
2424
>
2525
</layer-option>
2626
</ng-container>

packages/uhk-web/src/app/components/layers/layers.component.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class LayersComponent {
2323
@Output() addColorToPalette = new EventEmitter<RgbColor>();
2424
@Output() deleteColorFromPalette = new EventEmitter();
2525
@Output() modifyColorPaletteColor = new EventEmitter<ModifyColorOfBacklightingColorPalettePayload>();
26-
@Output() select = new EventEmitter<LayerOption>();
26+
@Output() selectLayer = new EventEmitter<LayerOption>();
2727
@Output() toggleColorFromPalette = new EventEmitter<number>();
2828
@Output() addLayer = new EventEmitter<number>();
2929
@Output() removeLayer = new EventEmitter<number>();
@@ -34,12 +34,12 @@ export class LayersComponent {
3434
faTrash = faTrash;
3535
newColorPaletteColor = '#000000';
3636

37-
selectLayer(option: LayerOption) {
37+
onSelectLayer(option: LayerOption) {
3838
if (this.current?.id === option.id) {
3939
return;
4040
}
4141

42-
this.select.emit(option);
42+
this.selectLayer.emit(option);
4343
}
4444

4545
trackLayer(index: number, layer: LayerOption): string {
@@ -50,7 +50,7 @@ export class LayersComponent {
5050
this.removeLayer.emit(layerOption.id);
5151
}
5252

53-
onSelectLayer(layerOption: LayerOption): void {
53+
onAddLayer(layerOption: LayerOption): void {
5454
this.addLayer.emit(layerOption.id);
5555
}
5656

packages/uhk-web/src/app/components/svg/wrap/svg-keyboard-wrap.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
(deleteColorFromPalette)="deleteColorFromPalette.emit()"
1212
(modifyColorPaletteColor)="modifyColorPaletteColor.emit($event)"
1313
(removeLayer)="onRemoveLayer($event)"
14-
(select)="selectedLayerChanged.emit($event)"
14+
(selectLayer)="selectedLayerChanged.emit($event)"
1515
(toggleColorFromPalette)="toggleColorFromPalette.emit($event)"
1616
></layers>
1717
<keyboard-slider id="keyboard-slider"

0 commit comments

Comments
 (0)