-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcheckbox-basic-demos.html
172 lines (157 loc) · 6.87 KB
/
checkbox-basic-demos.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
<dom-module id="checkbox-basic-demos">
<template>
<style include="vaadin-component-demo-shared-styles">
:host {
display: block;
}
</style>
<h3>Basic usage</h3>
<vaadin-demo-snippet>
<template preserve-content>
<vaadin-checkbox value="Option" checked>Option</vaadin-checkbox>
</template>
</vaadin-demo-snippet>
<h3>Basic usage with checkbox group</h3>
<vaadin-demo-snippet>
<template preserve-content>
<vaadin-checkbox-group label="Label" theme="vertical">
<vaadin-checkbox value="1" checked>Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
</template>
</vaadin-demo-snippet>
<h3>Disabled state</h3>
<vaadin-demo-snippet>
<template preserve-content>
<vaadin-checkbox-group label="Disabled" theme="vertical" disabled>
<vaadin-checkbox value="1" checked>Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<vaadin-checkbox-group label="Disabled item" theme="vertical">
<vaadin-checkbox value="1">Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3" disabled>Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<style>
vaadin-checkbox-group:first-of-type {
margin-right: 200px;
}
</style>
</template>
</vaadin-demo-snippet>
<h3>Helper text</h3>
<p>Use the <code>helper-text</code> attribute or add content to the <code>helper</code> slot to set helper content.</p>
<vaadin-demo-snippet id="basic-demos-helper-text">
<template preserve-content>
<vaadin-checkbox-group label="Label" theme="vertical"
helper-text="Pick an option">
<vaadin-checkbox value="1">Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<vaadin-checkbox-group label="Label" theme="vertical">
<span slot="helper">Pick an option</span>
<vaadin-checkbox value="1">Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<style>
vaadin-checkbox-group:first-of-type {
margin-right: 200px;
}
</style>
</template>
</vaadin-demo-snippet>
<h3>Object list</h3>
<vaadin-demo-snippet id="object-list" when-defined="vaadin-checkbox">
<template preserve-content>
<vaadin-checkbox-group label="Department" theme="vertical"></vaadin-checkbox-group>
<script>
window.addDemoReadyListener('#object-list', function(document) {
const departments = [
{id: '1', name: 'Product'},
{id: '2', name: 'Service'},
{id: '3', name: 'HR'},
{id: '4', name: 'Accounting'}
];
const checkboxGroup = document.querySelector('vaadin-checkbox-group');
departments.forEach(function(item) {
const checkbox = window.document.createElement('vaadin-checkbox');
checkbox.textContent = item.name;
checkbox.value = item.id;
checkboxGroup.appendChild(checkbox);
});
});
</script>
</template>
</vaadin-demo-snippet>
<h3>Value change event</h3>
<vaadin-demo-snippet id="value-change-event" when-defined="vaadin-radio-button">
<template preserve-content>
<vaadin-checkbox-group label="Label" theme="vertical">
<vaadin-checkbox value = "1">Option one</vaadin-checkbox>
<vaadin-checkbox value = "2">Option two</vaadin-checkbox>
<vaadin-checkbox value = "3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<div>Selected value: <span id="output"></span></div>
<script>
window.addDemoReadyListener('#value-change-event', function(document) {
const checkboxGroup = document.querySelector('vaadin-checkbox-group');
const output = document.querySelector('#output');
checkboxGroup.addEventListener('change', function(event) {
output.textContent = checkboxGroup.value;
});
});
</script>
</template>
</vaadin-demo-snippet>
<h3>Indeterminate checkbox</h3>
<p>An <a
href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Indeterminate_state_checkboxes"
target="_blank" rel="noopener">indeterminate checkbox</a> is neither checked nor
unchecked. A typical use case
is a “Select All” checkbox indicating that some, but not all, items are selected.</p>
<vaadin-demo-snippet id="checkbox-indeterminate" when-defined="vaadin-checkbox">
<template preserve-content>
<vaadin-checkbox-group label="Label" theme="vertical">
<vaadin-checkbox class="select-all">Select All</vaadin-checkbox>
<vaadin-checkbox value="1">Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<script>
window.addDemoReadyListener('#checkbox-indeterminate', function(document) {
const options = Array.from(document.querySelectorAll('vaadin-checkbox[value]'));
const selectAll = document.querySelector('.select-all');
selectAll.addEventListener('change', function() {
options.forEach(function(option) {
option.checked = selectAll.checked;
});
});
const syncState = function() {
const isChecked = function(cb) {
return cb.checked;
};
selectAll.checked = options.every(isChecked);
selectAll.indeterminate = options.some(isChecked) && !options.every(isChecked);
};
options.forEach(function(option) {
option.addEventListener('change', syncState);
});
options[0].checked = true;
syncState();
});
</script>
</vaadin-checkbox-group>
</template>
</vaadin-demo-snippet>
</template>
<script>
class CheckboxBasicDemos extends DemoReadyEventEmitter(CheckboxDemo(Polymer.Element)) {
static get is() {
return 'checkbox-basic-demos';
}
}
customElements.define(CheckboxBasicDemos.is, CheckboxBasicDemos);
</script>
</dom-module>