-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper-tristate-checkbox.html
443 lines (382 loc) · 13.9 KB
/
paper-tristate-checkbox.html
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<!--
@license
Copyright (c) 2016 Thad Humphries. All rights reserved.
This code is under Apache License Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt).
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-validatable-behavior/iron-validatable-behavior.html">
<link rel="import" href="../iron-form-element-behavior/iron-form-element-behavior.html">
<link rel="import" href="../paper-behaviors/paper-inky-focus-behavior.html">
<link rel="import" href="../paper-styles/default-theme.html">
<!--
`paper-tristate-checkbox` is a Polymer web component similar to
[`paper-checkbox`](https://elements.polymer-project.org/elements/paper-checkbox)
except that it supports an indeterminate state.
Example:
<paper-tristate-checkbox>label</paper-tristate-checkbox>
<paper-tristate-checkbox state="on">label</paper-tristate-checkbox>
The web component handles the `aria-checked` attribute in accordance with the W3C's
[WAI-ARIA 1.0 Authoring Practices](https://www.w3.org/TR/wai-aria-practices/#checkbox).
### Styling
The following custom properties and mixins are available for styling:
Custom property | Description | Default
----------------|-------------|----------
`--paper-tristate-checkbox-unchecked-background-color` | Checkbox background color when the input is not checked | `transparent`
`--paper-tristate-checkbox-unchecked-color` | Checkbox border color when the input is not checked | `--primary-text-color`
`--paper-tristate-checkbox-unchecked-ink-color` | Selected/focus ripple color when the input is not checked | `--primary-text-color`
`--paper-tristate-checkbox-checked-color` | Checkbox color when the input is checked | `--primary-color`
`--paper-tristate-checkbox-checked-ink-color` | Selected/focus ripple color when the input is checked | `--primary-color`
`--paper-tristate-checkbox-checkmark-color` | Checkmark color | `white`
`--paper-tristate-checkbox-label-display` | Label display | `inline-block`
`--paper-tristate-checkbox-label-color` | Label color | `--primary-text-color`
`--paper-tristate-checkbox-label-spacing` | Spacing between the label and the checkbox | `8px`
`--paper-tristate-checkbox-error-color` | Checkbox color when invalid | `--error-color`
`--paper-tristate-checkbox-size` | Size of the checkbox | `18px`
#### From `paper-checkbox` __:__
> This element applies the mixin `--paper-font-common-base` but does not import `paper-styles/typography.html`.
> In order to apply the `Roboto` font to this element, make sure you've imported `paper-styles/typography.html`.
@element paper-tristate-checkbox
@demo demo/index.html
-->
<dom-module id="paper-tristate-checkbox">
<template>
<style>
:host {
display: inline-block;
white-space: nowrap;
cursor: pointer;
--calculated-paper-tristate-checkbox-size: var(--paper-tristate-checkbox-size, 18px);
@apply(--paper-font-common-base);
line-height: 0;
}
:host(:focus) {
outline: none;
}
.hidden {
display: none;
}
#checkboxContainer {
display: inline-block;
position: relative;
width: var(--calculated-paper-tristate-checkbox-size);
height: var(--calculated-paper-tristate-checkbox-size);
min-width: var(--calculated-paper-tristate-checkbox-size);
vertical-align: middle;
background-color: var(--paper-tristate-checkbox-unchecked-background-color, transparent);
}
#ink {
position: absolute;
/* Center the ripple in the checkbox by negative offsetting it by
* (inkWidth - rippleWidth) / 2
*/
top: calc(0px - (2.66 * var(--calculated-paper-tristate-checkbox-size) - var(--calculated-paper-tristate-checkbox-size)) / 2);
left: calc(0px - (2.66 * var(--calculated-paper-tristate-checkbox-size) - var(--calculated-paper-tristate-checkbox-size)) / 2);
width: calc(2.66 * var(--calculated-paper-tristate-checkbox-size));
height: calc(2.66 * var(--calculated-paper-tristate-checkbox-size));
color: var(--paper-tristate-checkbox-unchecked-ink-color, var(--primary-text-color));
opacity: 0.6;
pointer-events: none;
}
:host-context([dir="rtl"]) #ink {
right: calc(0px - (2.66 * var(--calculated-paper-tristate-checkbox-size) - var(--calculated-paper-tristate-checkbox-size)) / 2);
left: auto;
}
#ink[checked] {
color: var(--paper-tristate-checkbox-checked-ink-color, var(--primary-color));
}
#checkbox {
position: relative;
box-sizing: border-box;
width: 100%;
height: 100%;
border: solid 2px;
border-color: var(--paper-tristate-checkbox-unchecked-color, var(--primary-text-color));
border-radius: 2px;
pointer-events: none;
-webkit-transition: background-color 140ms, border-color 140ms;
transition: background-color 140ms, border-color 140ms;
}
/* checkbox checked animations */
#checkbox.checked #checkmark {
-webkit-animation: checkmark-expand 140ms ease-out forwards;
animation: checkmark-expand 140ms ease-out forwards;
}
@-webkit-keyframes checkmark-expand {
0% {
-webkit-transform: scale(0, 0) rotate(45deg);
}
100% {
-webkit-transform: scale(1, 1) rotate(45deg);
}
}
@keyframes checkmark-expand {
0% {
transform: scale(0, 0) rotate(45deg);
}
100% {
transform: scale(1, 1) rotate(45deg);
}
}
/* checkbox indeterminate animations */
#checkbox.checked #indeterminatemark {
-webkit-animation: indeterminatemark-expand 140ms ease-out forwards;
animation: indeterminatemark-expand 140ms ease-out forwards;
}
@-webkit-keyframes indeterminatemark-expand {
0% {
-webkit-transform: scale(0, 0) rotate(180deg);
}
100% {
-webkit-transform: scale(1, 1) rotate(180deg);
}
}
@keyframes indeterminatemark-expand {
0% {
transform: scale(0, 0) rotate(180deg);
}
100% {
transform: scale(1, 1) rotate(180deg);
}
}
#checkbox.checked {
background-color: var(--paper-tristate-checkbox-checked-color, var(--primary-color));
border-color: var(--paper-tristate-checkbox-checked-color, var(--primary-color));
}
#checkmark {
position: absolute;
width: 36%;
height: 70%;
border-style: solid;
border-top: none;
border-left: none;
border-right-width: calc(2/15 * var(--calculated-paper-tristate-checkbox-size));
border-bottom-width: calc(2/15 * var(--calculated-paper-tristate-checkbox-size));
border-color: var(--paper-tristate-checkbox-checkmark-color, white);
-webkit-transform-origin: 97% 86%;
transform-origin: 97% 86%;
box-sizing: content-box; /* protect against page-level box-sizing */
}
:host-context([dir="rtl"]) #checkmark {
-webkit-transform-origin: 50% 14%;
transform-origin: 50% 14%;
}
#indeterminatemark {
position: absolute;
width: 60%;
height: 0;
border-style: solid;
border-top: none;
border-left: none;
border-right-width: calc(2/15 * var(--calculated-paper-tristate-checkbox-size));
border-bottom-width: calc(2/15 * var(--calculated-paper-tristate-checkbox-size));
border-color: var(--paper-tristate-checkbox-checkmark-color, white);
-webkit-transform-origin: 60% 200%;
transform-origin: 60% 200%;
box-sizing: content-box; /* protect against page-level box-sizing */
}
:host-context([dir="rtl"]) #indeterminatemark {
-webkit-transform-origin: 50% 14%;
transform-origin: 50% 14%;
}
/* label */
#checkboxLabel {
position: relative;
display: var(--paper-tristate-checkbox-label-display, inline-block);
vertical-align: middle;
padding-left: var(--paper-tristate-checkbox-label-spacing, 8px);
white-space: normal;
line-height: normal;
color: var(--paper-tristate-checkbox-label-color, var(--primary-text-color));
}
:host-context([dir="rtl"]) #checkboxLabel {
padding-right: var(--paper-tristate-checkbox-label-spacing, 8px);
padding-left: 0;
}
#checkboxLabel[hidden] {
display: none;
}
/* disabled state */
:host([disabled]) #checkbox {
opacity: 0.5;
border-color: var(--paper-tristate-checkbox-unchecked-color, var(--primary-text-color));
}
:host([disabled][checked]) #checkbox {
background-color: var(--paper-tristate-checkbox-unchecked-color, var(--primary-text-color));
opacity: 0.5;
}
:host([disabled][indeterminate]) #checkbox {
background-color: var(--paper-tristate-checkbox-unchecked-color, var(--primary-text-color));
opacity: 0.5;
}
:host([disabled]) #checkboxLabel {
opacity: 0.65;
}
/* invalid state */
#checkbox.invalid:not(.checked) {
border-color: var(--paper-tristate-checkbox-error-color, var(--google-red-500));
}
</style>
<div id="checkboxContainer">
<div id="checkbox" class$="[[_computeCheckboxClass(state)]]">
<div id="checkmark" class$="[[_computeCheckmarkClass(state)]]"></div>
<div id="indeterminatemark" class$="[[_computeIndeterminatemarkClass(state)]]"></div>
</div>
</div>
<div id="checkboxLabel"><slot></slot></div>
</template>
<script>
Polymer({
is: 'paper-tristate-checkbox',
behaviors: [
Polymer.IronFormElementBehavior,
Polymer.IronValidatableBehavior,
Polymer.PaperInkyFocusBehavior,
],
hostAttributes: {
'role': 'checkbox',
'tabindex': 0,
},
properties: {
/**
* Fired when the checked state changes due to user interaction.
*
* @event change
*/
/**
* Fired when the checked state changes.
*
* @event iron-change
*/
ariaActiveAttribute: {
type: String,
value: 'aria-checked',
},
/**
* There are three possible states: `'on'`, `'off'`, and `null`.
*/
state: {
type: String,
value: null,
reflectToAttribute: true,
notify: true,
},
/**
* The element's value when `'on'`/checked.
*/
checked: {
type: String,
value: 'x',
},
/**
* This doesn't technically disable indeterminate, however it does
* prevent the user from triggering it directly.
*/
disableIndeterminate: {
type: Boolean,
value: false,
},
/**
* The element's value when `'off'`/unchecked.
*/
unchecked: {
type: String,
value: ' ',
},
/**
* The element's value when `null`/indeterminate.
*/
indeterminate: {
type: String,
value: '',
},
/**
* The element's value based on its current state.
*/
value: {
type: String,
computed: '_computeValue(state)',
},
},
ready() {
this._regularClick = this._regularClick.bind(this);
},
attached() {
this.setAttribute('aria-checked', 'mixed');
this._computeValue(this.state);
this.addEventListener('click', this._regularClick);
},
detached() {
this.removeEventListener('click', this._regularClick);
},
/**
* Creates this element in JavaScript.
*
* @param {String} label The element's label.
* @param {String} state The element's state. Allowable values are
* `'on'`/checked, `'off'`/unchecked, and `null`/indeterminate. All
* other values are treated as `null`.
*/
factoryImpl: function(label, state) {
this.$.checkboxLabel.innerHTML = label;
if (state == 'on' || state == 'off') {
this.state = state;
} else {
state = null;
}
},
// Computed methods.
_computeValue: function(state) {
if (state == 'on') {
this.setAttribute(this.ariaActiveAttribute, 'true');
return this.checked;
} else if (state == 'off') {
this.setAttribute(this.ariaActiveAttribute, 'false');
return this.unchecked;
} else {
this.setAttribute(this.ariaActiveAttribute, 'mixed');
// indeterminate can become undefined, so force empty string
return this.indeterminate ? this.indeterminate : '';
}
},
// Element Behavior
// Rotate through the state values.
_regularClick: function() {
if (this.state == null) {
this.state = 'on';
} else if (this.state == 'on') {
this.state = 'off';
} else if (this.disableIndeterminate) {
this.state = 'on';
} else {
this.state = null;
}
},
_computeCheckboxClass: function(state) {
if (state == 'on' || state == null) {
return 'checked';
} else {
return '';
}
},
_computeCheckmarkClass: function(state) {
if (state == 'off' || state == null) {
return 'hidden';
} else {
return '';
}
},
_computeIndeterminatemarkClass: function(state) {
if (state == 'off' || state == 'on') {
return 'hidden';
} else {
return '';
}
},
// create ripple inside the checkboxContainer
_createRipple: function() {
this._rippleContainer = this.$.checkboxContainer;
return Polymer.PaperInkyFocusBehaviorImpl._createRipple.call(this);
},
});
</script>
</dom-module>