Skip to content

Commit 78c362f

Browse files
committed
feat(button): adiciona propriedade p-hide-label
1 parent b6bc966 commit 78c362f

6 files changed

+75
-4
lines changed

projects/ui/src/lib/components/po-button/po-button-base.component.ts

+12
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,16 @@ export class PoButtonBaseComponent {
226226
* > Em caso de botões com apenas ícone a atribuição de valor à esta propriedade é muito importante para acessibilidade.
227227
*/
228228
@Input('p-aria-label') ariaLabel?: string;
229+
230+
/**
231+
* @optional
232+
*
233+
* @description
234+
*
235+
* Permite ao desenvolvedor definir se a label é exibida ou não.
236+
*
237+
* @default `false`
238+
*
239+
*/
240+
@Input({ alias: 'p-hide-label', transform: convertToBoolean }) hideLabel: boolean = false;
229241
}

projects/ui/src/lib/components/po-button/po-button.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
</div>
1616

1717
<po-icon *ngIf="icon" class="po-button-icon" [p-icon]="icon"></po-icon>
18-
<span *ngIf="label" class="po-button-label">{{ label }}</span>
18+
<span *ngIf="canShowLabel()" class="po-button-label">{{ label }}</span>
1919
</button>

projects/ui/src/lib/components/po-button/po-button.component.spec.ts

+31-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('PoButtonComponent: ', () => {
8585
expectPropertiesValues(component, 'loading', booleanFalseValues, false);
8686
});
8787

88-
it('p-label: should add span with an label if `p-label` is defined', () => {
88+
it('p-label: should add span with a label if `p-label` is defined', () => {
8989
component.label = 'Po Button';
9090
fixture.detectChanges();
9191

@@ -98,6 +98,13 @@ describe('PoButtonComponent: ', () => {
9898

9999
expect(nativeElement.querySelector('i.po-button-label')).toBeFalsy();
100100
});
101+
102+
it('p-hide-label: should´t add span with a label if `p-hide-label` is defined', () => {
103+
component.hideLabel = true;
104+
fixture.detectChanges();
105+
106+
expect(nativeElement.querySelector('span.po-button-label')).toBeFalsy();
107+
});
101108
});
102109

103110
describe('Methods:', () => {
@@ -129,6 +136,29 @@ describe('PoButtonComponent: ', () => {
129136

130137
expect(component.buttonElement.nativeElement.focus).not.toHaveBeenCalled();
131138
});
139+
140+
it('canShowLabel: should call canShowLabel and return true if `label` contains value and `hideLabel` is false', () => {
141+
spyOn(component, 'canShowLabel').and.callThrough();
142+
143+
component.hideLabel = false;
144+
component.label = 'PO Button';
145+
146+
const result = component.canShowLabel();
147+
148+
expect(component.canShowLabel).toHaveBeenCalled();
149+
expect(result).toBe(true);
150+
});
151+
152+
it('canShowLabel: should call canShowLabel and return false if `hideLabel` is true', () => {
153+
spyOn(component, 'canShowLabel').and.callThrough();
154+
155+
component.hideLabel = true;
156+
157+
const result = component.canShowLabel();
158+
159+
expect(component.canShowLabel).toHaveBeenCalled();
160+
expect(result).toBe(false);
161+
});
132162
});
133163

134164
describe('Templates: ', () => {

projects/ui/src/lib/components/po-button/po-button.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,8 @@ export class PoButtonComponent extends PoButtonBaseComponent {
6060
onClick() {
6161
this.click.emit(null);
6262
}
63+
64+
canShowLabel() {
65+
return this.label && !this.hideLabel ? true : false;
66+
}
6367
}

projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<po-button
44
class="po-sm-12"
55
[p-disabled]="properties.includes('disabled')"
6+
[p-hide-label]="properties.includes('hideLabel')"
67
[p-icon]="icon"
78
[p-label]="label"
89
[p-loading]="properties.includes('loading')"
@@ -19,7 +20,15 @@
1920
<!-- Properties -->
2021
<form #f="ngForm">
2122
<div class="po-row">
22-
<po-input class="po-md-6" name="label" [(ngModel)]="label" p-clean p-label="Label"> </po-input>
23+
<po-input
24+
class="po-md-6"
25+
name="label"
26+
[(ngModel)]="label"
27+
p-clean
28+
p-label="Label"
29+
(p-change-model)="verifyHideLabel()"
30+
>
31+
</po-input>
2332
</div>
2433

2534
<div class="po-row">

projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ export class SamplePoButtonLabsComponent implements OnInit {
1212
icon: string;
1313
size: string;
1414
properties: Array<string>;
15+
hideLabel: boolean;
1516

1617
propertiesOptions: Array<PoCheckboxGroupOption> = [
1718
{ value: 'disabled', label: 'Disabled' },
1819
{ value: 'loading', label: 'Loading' },
19-
{ value: 'danger', label: 'Danger' }
20+
{ value: 'danger', label: 'Danger' },
21+
{ value: 'hideLabel', label: 'Hide Label', disabled: true }
2022
];
2123

2224
iconsOptions: Array<PoRadioGroupOption> = [
@@ -61,6 +63,18 @@ export class SamplePoButtonLabsComponent implements OnInit {
6163
}
6264
}
6365

66+
verifyHideLabel() {
67+
const options = [...this.propertiesOptions];
68+
69+
if (this.label.length > 0) {
70+
options[3] = { value: 'hideLabel', label: 'Hide Label', disabled: false };
71+
} else {
72+
options[3] = { value: 'hideLabel', label: 'Hide Label', disabled: true };
73+
}
74+
75+
this.propertiesOptions = options;
76+
}
77+
6478
verifyDisabled(event) {
6579
const value = [...this.propertiesOptions];
6680

@@ -78,6 +92,8 @@ export class SamplePoButtonLabsComponent implements OnInit {
7892
this.kind = 'secondary';
7993
this.size = 'medium';
8094
this.icon = undefined;
95+
this.hideLabel = false;
96+
this.propertiesOptions[3] = { ...this.propertiesOptions[3], disabled: true };
8197
this.properties = [];
8298
this.kindsOptions[2] = { ...this.kindsOptions[2], disabled: false };
8399
this.sizesOptions[0] = { ...this.sizesOptions[0], disabled: false };

0 commit comments

Comments
 (0)