1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import {NgModule,Directive,Component,ElementRef,EventEmitter,AfterViewInit,Output,OnDestroy,HostBinding,HostListener,Input} from '@angular/core';
import {DomHandler} from '../dom/domhandler';
import {CommonModule} from '@angular/common';
@Directive({
selector: '[pButton]'
})
export class ButtonDirective implements AfterViewInit, OnDestroy {
@Input() iconPos: 'left' | 'right' = 'left';
@Input() cornerStyleClass: string = 'ui-corner-all';
public _label: string;
public _icon: string;
public initialized: boolean;
constructor(public el: ElementRef) {}
ngAfterViewInit() {
DomHandler.addMultipleClasses(this.el.nativeElement, this.getStyleClass());
if(this.icon) {
let iconElement = document.createElement("span");
iconElement.setAttribute("aria-hidden", "true");
let iconPosClass = (this.iconPos == 'right') ? 'ui-button-icon-right': 'ui-button-icon-left';
iconElement.className = iconPosClass + ' ui-clickable ' + this.icon;
this.el.nativeElement.appendChild(iconElement);
}
let labelElement = document.createElement("span");
labelElement.className = 'ui-button-text ui-clickable';
labelElement.appendChild(document.createTextNode(this.label||'ui-btn'));
this.el.nativeElement.appendChild(labelElement);
this.initialized = true;
}
getStyleClass(): string {
let styleClass = 'ui-button ui-widget ui-state-default ' + this.cornerStyleClass;
if(this.icon) {
if(this.label != null && this.label != undefined) {
if(this.iconPos == 'left')
styleClass = styleClass + ' ui-button-text-icon-left';
else
styleClass = styleClass + ' ui-button-text-icon-right';
}
else {
styleClass = styleClass + ' ui-button-icon-only';
}
}
else {
if(this.label) {
styleClass = styleClass + ' ui-button-text-only';
}
else {
styleClass = styleClass + ' ui-button-text-empty';
}
}
return styleClass;
}
@Input() get label(): string {
return this._label;
}
set label(val: string) {
this._label = val;
if(this.initialized) {
DomHandler.findSingle(this.el.nativeElement, '.ui-button-text').textContent = this._label;
if(!this.icon) {
if (this._label) {
DomHandler.removeClass(this.el.nativeElement, 'ui-button-text-empty');
DomHandler.addClass(this.el.nativeElement, 'ui-button-text-only');
}
else {
DomHandler.addClass(this.el.nativeElement, 'ui-button-text-empty');
DomHandler.removeClass(this.el.nativeElement, 'ui-button-text-only');
}
}
}
}
@Input() get icon(): string {
return this._icon;
}
set icon(val: string) {
this._icon = val;
if(this.initialized) {
let iconPosClass = (this.iconPos == 'right') ? 'ui-button-icon-right': 'ui-button-icon-left';
DomHandler.findSingle(this.el.nativeElement, '.ui-clickable').className =
iconPosClass + ' ui-clickable ' + this.icon;
}
}
ngOnDestroy() {
while(this.el.nativeElement.hasChildNodes()) {
this.el.nativeElement.removeChild(this.el.nativeElement.lastChild);
}
this.initialized = false;
}
}
@Component({
selector: 'p-button',
template: `
<button [attr.type]="type" [class]="styleClass" [style]="style" [disabled]="disabled"
[ngClass]="{'ui-button ui-widget ui-state-default ui-corner-all':true,
'ui-button-icon-only': (icon && !label),
'ui-button-text-icon-left': (icon && label && iconPos === 'left'),
'ui-button-text-icon-right': (icon && label && iconPos === 'right'),
'ui-button-text-only': (!icon && label),
'ui-button-text-empty': (!icon && !label),
'ui-state-disabled': disabled}"
(click)="onClick.emit($event)" (focus)="onFocus.emit($event)" (blur)="onBlur.emit($event)">
<ng-content></ng-content>
<span [ngClass]="{'ui-clickable': true,
'ui-button-icon-left': (iconPos === 'left'),
'ui-button-icon-right': (iconPos === 'right')}"
[class]="icon" *ngIf="icon"></span>
<span class="ui-button-text ui-clickable">{{label||'ui-btn'}}</span>
</button>
`
})
export class Button {
@Input() type: string;
@Input() iconPos: string = 'left';
@Input() icon: string;
@Input() label: string;
@Input() disabled: boolean;
@Input() style: any;
@Input() styleClass: string;
@Output() onClick: EventEmitter<any> = new EventEmitter();
@Output() onFocus: EventEmitter<any> = new EventEmitter();
@Output() onBlur: EventEmitter<any> = new EventEmitter();
}
@NgModule({
imports: [CommonModule],
exports: [ButtonDirective,Button],
declarations: [ButtonDirective,Button]
})
export class ButtonModule { }