forked from ibm-js/deliteful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Button.js
137 lines (123 loc) · 3.4 KB
/
Button.js
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
/** @module deliteful/Button */
define([
"dcl/dcl",
"requirejs-dplugins/has",
"delite/a11yclick",
"delite/register",
"delite/Widget",
"requirejs-dplugins/has!bidi?./Button/bidi/Button",
"delite/handlebars!./Button/Button.html",
"delite/theme!./Button/themes/{{theme}}/Button.css"
], function (
dcl,
has,
a11yclick,
register,
Widget,
BidiButton,
template
) {
/**
* A form-aware button widget.
* A Button can display a label, an icon, or both. Icon is specified via the iconClass property that
* takes the name of the class to apply to the button node to display the icon.
* @example
* <style>
* .iconForButton {
* background-image: url('images/cut.png');
* width: 16px;
* height: 16px;
* }
* </style>
* <d-button iconClass="iconForButton">Click Me</d-button>
* @class module:deliteful/Button
* @augments module:delite/Widget
*/
var Button = dcl(Widget, /** @lends module:deliteful/Button# */ {
/**
* The text to display in the button.
* @member {string}
* @default ""
*/
label: "",
/**
* The name of the CSS class to apply to DOMNode in button to make it display an icon.
* @member {string}
* @default ""
*/
iconClass: "",
/**
* The name of the CSS class of this widget.
* @member {string}
* @default "d-button"
*/
baseClass: "d-button",
/**
* If `true`, the button's label will be shown.
* @member {boolean}
* @default true
*/
showLabel: true,
/**
* The tabindex when the button is enabled.
* @member {number}
* @default 0
*/
enabledTabIndex: 0,
/**
* If set to true, the widget will not respond to user input and will not be included in form submission.
* FormWidget automatically updates `valueNode`'s and `focusNode`'s `disabled` property to match the widget's
* `disabled` property.
* @member {boolean}
* @default false
*/
disabled: false,
template: template,
constructor: function () {
this.on("click", function (evt) {
evt.preventDefault();
if (this.disabled) {
// Block click events (from both mouse and keyboard) when button is disbled.
// If necessary, can change to addEventListener(..., true) to run even sooner.
evt.stopImmediatePropagation();
}
}.bind(this));
},
render: dcl.before(function () {
// Get label from innerHTML, and then clear it since we are to put the label in a <span>
if (!this.label) {
this.label = this.textContent.trim();
this.innerHTML = "";
}
}),
postRender: function () {
// Make SPACE/ENTER key cause button click event.
a11yclick(this);
},
refreshRendering: function (props) {
// If title was not explicitly specified, and showLabel === false, then set
// title (aka tooltip) to be the label.
if (("label" in props || "showLabel" in props) &&
(!this.title || this.title === ("label" in props ? props.label : this.label))) {
if (this.showLabel) {
this.removeAttribute("title");
} else {
this.title = this.label;
}
}
if ("disabled" in props) {
if (this.disabled) {
this.setAttribute("aria-disabled", "true");
this.removeAttribute("tabindex");
} else {
this.removeAttribute("aria-disabled");
this.setAttribute("tabindex", this.enabledTabIndex);
}
}
}
});
var ButtonElt = register("d-button", has("bidi") ? [HTMLElement, Button, BidiButton] :
[HTMLElement, Button]);
ButtonElt.Impl = Button;
return ButtonElt;
});