-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2-accordion.html
249 lines (225 loc) · 8.78 KB
/
2-accordion.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Accordion (advanced)</title>
<script type="module" src="https://js.arcgis.com/calcite-components/1.0.0-beta.91/calcite.esm.js"></script>
<link rel="stylesheet" type="text/css" href="https://js.arcgis.com/calcite-components/1.0.0-beta.91/calcite.css" />
<style>
h1,
calcite-accordion {
margin-bottom: 5rem;
}
h2 {
margin: 3rem 0rem;
}
body {
font-family: var(--calcite-sans-family);
font-size: var(--calcite-font-size-0);
color: var(--calcite-ui-text-1);
max-width: 1024px;
min-width: 280px;
width: 70vw;
padding: 0 var(--calcite-spacing-double);
margin: 0 auto;
background-color: var(--calcite-ui-background);
}
/* Theme Switcher */
#theme-label {
position: fixed;
top: 20px;
right: 20px;
z-index: 2;
background-color: var(--calcite-ui-background);
border: 1px solid;
border-color: var(--calcite-ui-border-1);
border-radius: var(--calcite-border-radius);
margin: 0;
padding: 10px;
}
#theme-label label {
margin: 0;
}
body {
width: 360px !important;
}
.download-content-section {
margin-top: 1.25rem;
padding-bottom: 0.625rem;
}
.helper-desc {
margin-bottom: 1.25rem;
}
calcite-label {
display: block;
font-weight: 500;
}
calcite-radio-group {
margin-bottom: 1.25rem;
}
calcite-radio-group-item[checked] {
border: 2px solid #0079C1;
}
.time-inputs {
display: grid;
grid-template-columns: 200px, 1fr;
grid-gap: 0.625rem;
}
.day-select {
margin-bottom: 1.25rem;
width: auto;
}
calcite-input-date-picker {
display: block;
}
calcite-select,
calcite-input-date-picker,
calcite-radio-group,
calcite-input-time-picker {
margin-top: 0.313rem;
}
</style>
</head>
<body>
<main>
<h1><code>accordion (complex)</code></h1>
<!-- calcite-switch -->
<div id="theme-label">
<calcite-label layout="inline">
Toggle theme
<calcite-switch id="theme-switch"></calcite-switch>
</calcite-label>
</div>
<calcite-accordion>
<calcite-accordion-item item-title="Download Scheduling" item-subtitle="" active>
<div class="download-content-section">
<div class="helper-desc">
This tool will automatically try to determine the best time to generate a download file for this item. However, you can choose to manually set when you want the download file to be updated.
</div>
<div class="scheduler-options">
<calcite-label>Frequency
<calcite-radio-group name="Frequency" scale="m" width="full" layout="vertical">
<calcite-radio-group-item value="automatic">Automatic</calcite-radio-group-item>
<calcite-radio-group-item value="scheduled" checked>Scheduled</calcite-radio-group-item>
<calcite-radio-group-item value="never">Never</calcite-radio-group-item>
</calcite-radio-group>
</calcite-label>
<calcite-label>Repeat
<calcite-radio-group name="Repeat" scale="m" width="full" layout="vertical">
<calcite-radio-group-item value="daily" checked>Daily</calcite-radio-group-item>
<calcite-radio-group-item value="weekly">Weekly</calcite-radio-group-item>
<calcite-radio-group-item value="monthly">Monthly</calcite-radio-group-item>
<calcite-radio-group-item value="yearly">Yearly</calcite-radio-group-item>
</calcite-radio-group>
</calcite-label>
<!-- Dynamic labels depending on what the user selects in the 'Repeat' radio group -->
<!-- Weekly -->
<div id="weekly" class="dependency" style="display:none;">
<calcite-label>Day of week
<calcite-select label="Day of week">
<calcite-option>Sunday</calcite-option>
<calcite-option>Monday</calcite-option>
<calcite-option>Tuesday</calcite-option>
<calcite-option>Wednesday</calcite-option>
<calcite-option>Thursday</calcite-option>
<calcite-option>Friday</calcite-option>
<calcite-option>Saturday</calcite-option>
</calcite-select>
</calcite-label>
</div>
<!-- Monthly -->
<div id="monthly" class="dependency" style="display:none;">
<calcite-label>Day of month
<calcite-select label="Day of month">
<calcite-option>1</calcite-option>
<calcite-option>2</calcite-option>
<calcite-option>3</calcite-option>
<calcite-option>4</calcite-option>
<calcite-option>5</calcite-option>
<calcite-option>6</calcite-option>
<calcite-option>7</calcite-option>
<calcite-option>8</calcite-option>
<calcite-option>9</calcite-option>
<calcite-option>10</calcite-option>
<calcite-option>11</calcite-option>
<calcite-option>12</calcite-option>
<calcite-option>13</calcite-option>
<calcite-option>14</calcite-option>
<calcite-option>15</calcite-option>
<calcite-option>16</calcite-option>
<calcite-option>17</calcite-option>
<calcite-option>18</calcite-option>
<calcite-option>19</calcite-option>
<calcite-option>20</calcite-option>
<calcite-option>21</calcite-option>
<calcite-option>22</calcite-option>
<calcite-option>23</calcite-option>
<calcite-option>24</calcite-option>
<calcite-option>25</calcite-option>
<calcite-option>26</calcite-option>
<calcite-option>27</calcite-option>
<calcite-option>28</calcite-option>
<calcite-option>29</calcite-option>
<calcite-option>30</calcite-option>
<calcite-option>31</calcite-option>
</calcite-select>
</calcite-label>
</div>
<!-- Yearly -->
<div id="yearly" class="dependency" style="display:none;">
<calcite-label>Day of year
<calcite-input-date-picker></calcite-input-date-picker>
</calcite-label>
</div>
<div class="time-inputs">
<!-- Time of day -->
<calcite-label>Time of Day
<calcite-input-time-picker></calcite-input-time-picker>
</calcite-label>
<!-- Timezone -->
<calcite-label>Time Zone
<calcite-select label="Time Zone">
<calcite-option-group label="Time Zone">
<calcite-option>EDT</calcite-option>
<calcite-option selected>CT</calcite-option>
<calcite-option>PST</calcite-option>
</calcite-option-group>
</calcite-select>
</calcite-label>
</div>
</div>
</div>
</calcite-accordion-item>
</calcite-accordion>
</main>
</body>
<script>
window.onload = () => {
// Theme Switcher
const themeSwitch = document.getElementById("theme-switch");
themeSwitch.addEventListener("calciteSwitchChange", () => {
document.body.classList.toggle("calcite-theme-dark");
});
// Showcase the dropdown depending on user selection
document.addEventListener('calciteRadioGroupChange', function(event) {
if (event.target.name === 'Repeat') {
// Hide all elements (weekly, monthly, yearly)
const weekly = document.getElementById("weekly");
weekly.style.display = 'none';
const monthly = document.getElementById("monthly");
monthly.style.display = 'none';
const yearly = document.getElementById("yearly");
yearly.style.display = 'none';
// Tries to add an element (no element for daily)
try {
const elementToChange = document.getElementById(event.detail);
elementToChange.style.display = 'block';
} catch(err) {
// Do nothing
}
}
});
};
</script>
</html>