-
Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathselect-demo.html
420 lines (395 loc) · 16.2 KB
/
select-demo.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
Space above cards: <input type="number" [formControl]="topHeightCtrl">
<button matButton (click)="showSelect=!showSelect">SHOW SELECT</button>
<div [style.height.px]="topHeightCtrl.value"></div>
<div class="demo-select">
<mat-card>
<mat-card-subtitle>ngModel</mat-card-subtitle>
<mat-card-content>
<mat-form-field [floatLabel]="floatLabel" [color]="drinksTheme"
[class.demo-drinks-width-large]="drinksWidth === '400px'">
<mat-label>Drink</mat-label>
<mat-select [(ngModel)]="currentDrink" [required]="drinksRequired"
[disabled]="drinksDisabled" #drinkControl="ngModel">
<mat-option [disabled]="drinksOptionsDisabled === 'all'">None</mat-option>
@for (drink of drinks; track drink; let index = $index) {
<mat-option [value]="drink.value"
[disabled]="isDrinkOptionDisabled(index)">
{{ drink.viewValue }}
</mat-option>
}
</mat-select>
<mat-icon matPrefix class="demo-drink-icon">local_drink</mat-icon>
<mat-hint>Pick a drink!</mat-hint>
<mat-error>You must make a selection</mat-error>
</mat-form-field>
<p> Value: {{ currentDrink }} </p>
<p> Touched: {{ drinkControl.touched }} </p>
<p> Dirty: {{ drinkControl.dirty }} </p>
<p> Status: {{ drinkControl.status }} </p>
<p>
<label for="floating-label">Floating label:</label>
<select [(ngModel)]="floatLabel" id="floating-label">
<option value="auto">Auto</option>
<option value="always">Always</option>
<option value="never">Never</option>
</select>
</p>
<p>
<label for="drinks-width">Width:</label>
<select [(ngModel)]="drinksWidth" id="drinks-width">
<option value="default">Default</option>
<option value="400px">400px</option>
</select>
</p>
<p>
<label for="drinks-theme">Theme:</label>
<select [(ngModel)]="drinksTheme" id="drinks-theme">
@for (theme of availableThemes; track theme) {
<option [value]="theme.value">{{theme.name}}</option>
}
</select>
</p>
<p>
<label for="drinks-disabled-options">Disabled options:</label>
<select [(ngModel)]="drinksOptionsDisabled" id="drinks-disabled-options">
<option value="none">None</option>
<option value="first-middle-last">Disable First, Middle, and Last Options</option>
<option value="all">Disable All Options</option>
</select>
</p>
<button matButton (click)="currentDrink='water-2'">SET VALUE</button>
<button matButton (click)="drinksRequired=!drinksRequired">TOGGLE REQUIRED</button>
<button matButton (click)="drinksDisabled=!drinksDisabled">TOGGLE DISABLED</button>
<button matButton (click)="drinkControl.reset()">RESET</button>
</mat-card-content>
</mat-card>
<mat-card>
<mat-card-subtitle>Multiple selection</mat-card-subtitle>
<mat-card-content>
<mat-form-field [color]="pokemonTheme">
<mat-label>Pokemon</mat-label>
<mat-select multiple [(ngModel)]="currentPokemon"
[required]="pokemonRequired" [disabled]="pokemonDisabled" #pokemonControl="ngModel">
@for (creature of pokemon; track creature) {
<mat-option [value]="creature.value" [disabled]="pokemonOptionsDisabled">
{{ creature.viewValue }}
</mat-option>
}
</mat-select>
</mat-form-field>
<p> Value: {{ currentPokemon }} </p>
<p> Touched: {{ pokemonControl.touched }} </p>
<p> Dirty: {{ pokemonControl.dirty }} </p>
<p> Status: {{ pokemonControl.status }} </p>
<p>
<label for="pokemon-theme">Theme:</label>
<select [(ngModel)]="pokemonTheme" id="pokemon-theme">
@for (theme of availableThemes; track theme) {
<option [value]="theme.value">{{ theme.name }}</option>
}
</select>
</p>
<button matButton (click)="setPokemonValue()">SET VALUE</button>
<button matButton (click)="pokemonRequired=!pokemonRequired">TOGGLE REQUIRED</button>
<button matButton (click)="pokemonDisabled=!pokemonDisabled">TOGGLE DISABLED</button>
<button matButton (click)="pokemonOptionsDisabled=!pokemonOptionsDisabled">TOGGLE DISABLED OPTIONS</button>
<button matButton (click)="pokemonControl.reset()">RESET</button>
</mat-card-content>
</mat-card>
<mat-card>
<mat-card-subtitle>Without Angular forms</mat-card-subtitle>
<mat-card-content>
<mat-form-field>
<mat-label>Digimon</mat-label>
<mat-select [(value)]="currentDigimon">
<mat-option>None</mat-option>
@for (creature of digimon; track creature) {
<mat-option [value]="creature.value">{{ creature.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<p>Value: {{ currentDigimon }}</p>
<button matButton (click)="currentDigimon='pajiramon-3'">SET VALUE</button>
<button matButton (click)="currentDigimon=''">RESET</button>
</mat-card-content>
</mat-card>
<mat-card>
<mat-card-subtitle>Option groups</mat-card-subtitle>
<mat-card-content>
<mat-form-field>
<mat-label>Pokemon</mat-label>
<mat-select [(ngModel)]="currentPokemonFromGroup">
@for (group of pokemonGroups; track group) {
<mat-optgroup [label]="group.name" [disabled]="group.disabled">
@for (creature of group.pokemon; track creature) {
<mat-option [value]="creature.value">{{ creature.viewValue }}</mat-option>
}
</mat-optgroup>
}
</mat-select>
</mat-form-field>
</mat-card-content>
</mat-card>
<mat-card>
<mat-card-subtitle>compareWith</mat-card-subtitle>
<mat-card-content>
<mat-form-field [color]="drinksTheme">
<mat-label>Drink</mat-label>
<mat-select [(ngModel)]="currentDrinkObject"
[required]="drinkObjectRequired"
[compareWith]="compareByValue ? compareDrinkObjectsByValue : compareByReference"
#drinkObjectControl="ngModel">
@for (drink of drinks; track drink) {
<mat-option [value]="drink" [disabled]="drink.disabled">{{ drink.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<p> Value: {{ currentDrinkObject | json }} </p>
<p> Touched: {{ drinkObjectControl.touched }} </p>
<p> Dirty: {{ drinkObjectControl.dirty }} </p>
<p> Status: {{ drinkObjectControl.status }} </p>
<p> Comparison Mode: {{ compareByValue ? 'VALUE' : 'REFERENCE' }} </p>
<button matButton (click)="reassignDrinkByCopy()"
matTooltip="This action should clear the display value when comparing by reference.">
REASSIGN DRINK BY COPY
</button>
<button matButton (click)="drinkObjectRequired=!drinkObjectRequired">TOGGLE REQUIRED</button>
<button matButton (click)="compareByValue=!compareByValue">TOGGLE COMPARE BY VALUE</button>
<button matButton (click)="drinkObjectControl.reset()">RESET</button>
</mat-card-content>
</mat-card>
<mat-card>
<mat-card-subtitle>Appearance comparison</mat-card-subtitle>
<mat-card-content>
<p>
<mat-form-field appearance="fill">
<mat-label>Fill</mat-label>
<mat-select [(value)]="currentAppearanceValue">
<mat-option>None</mat-option>
@for (creature of digimon; track creature) {
<mat-option [value]="creature.value">{{ creature.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
</p>
<p>
<mat-form-field appearance="outline">
<mat-label>Outline</mat-label>
<mat-select [(value)]="currentAppearanceValue">
<mat-option>None</mat-option>
@for (creature of digimon; track creature) {
<mat-option [value]="creature.value">{{ creature.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
</p>
<button matButton (click)="toggleSelected()">TOGGLE SELECTED</button>
</mat-card-content>
</mat-card>
@if (showSelect) {
<div>
<mat-card>
<mat-card-subtitle>formControl</mat-card-subtitle>
<mat-card-content>
<mat-form-field>
<mat-label>Food I would like to eat</mat-label>
<mat-select [formControl]="foodControl">
@for (food of foods; track food) {
<mat-option [value]="food.value">{{ food.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<p> Value: {{ foodControl.value }} </p>
<p> Touched: {{ foodControl.touched }} </p>
<p> Dirty: {{ foodControl.dirty }} </p>
<p> Status: {{ foodControl.status }} </p>
<button matButton (click)="foodControl.setValue('pizza-1')">SET VALUE</button>
<button matButton (click)="toggleDisabled()">TOGGLE DISABLED</button>
<button matButton (click)="foodControl.reset()">RESET</button>
</mat-card-content>
</mat-card>
</div>
}
@if (showSelect) {
<div>
<mat-card>
<mat-card-subtitle>Change event</mat-card-subtitle>
<mat-card-content>
<mat-form-field>
<mat-label>Starter pokemon</mat-label>
<mat-select (selectionChange)="latestChangeEvent = $event">
@for (creature of pokemon; track creature) {
<mat-option [value]="creature.value">{{ creature.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<p> Change event value: {{ latestChangeEvent?.value }} </p>
</mat-card-content>
</mat-card>
</div>
}
</div>
<mat-card class="demo-card demo-basic">
<mat-card-content>
<form>
<h4>Basic</h4>
<mat-form-field class="demo-full-width">
<mat-label>Select your car</mat-label>
<select matNativeControl id="mySelectId">
<option value="" disabled selected></option>
<option value="volvo">Volvo</option>
<option value="saab" disabled>Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<h4>Disabled and required</h4>
<mat-form-field class="demo-full-width">
<mat-label>Select your car (disabled)</mat-label>
<select matNativeControl disabled required>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<h4>Floating label</h4>
<mat-form-field>
<mat-label>Float with value</mat-label>
<select matNativeControl>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<mat-form-field>
<mat-label>Not float when empty</mat-label>
<select matNativeControl>
<option value="" selected></option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<mat-form-field>
<mat-label>Float with no value, but with label</mat-label>
<select matNativeControl>
<option value="" selected label="--select one--"></option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<mat-form-field>
<mat-label>Float with no value, but with html</mat-label>
<select matNativeControl>
<option value="" selected>--select one--</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<h4>Looks</h4>
<mat-form-field appearance="fill">
<mat-label>Fill</mat-label>
<select matNativeControl required>
<option value="" selected></option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<mat-form-field appearance="outline">
<mat-label>Outline</mat-label>
<select matNativeControl>
<option value="" selected></option>
<option value="volvo">volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</mat-form-field>
<h4>Option group</h4>
<mat-form-field>
<select matNativeControl>
<optgroup label="Swedish Cars">
<option value="volvo">volvo</option>
<option value="saab">Saab</option>
</optgroup>
<optgroup label="German Cars">
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</optgroup>
</select>
</mat-form-field>
<h4>Error message, hint, form sumbit</h4>
<mat-form-field class="demo-full-width">
<mat-label>Select your car (required)</mat-label>
<select matNativeControl required [formControl]="selectFormControl">
<option label="--select something --"></option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
@if (selectFormControl.hasError('required')) {
<mat-error>This field is required</mat-error>
}
<mat-hint>You can pick up your favorite car here</mat-hint>
</mat-form-field>
<h4>Error message with errorStateMatcher</h4>
<mat-form-field class="demo-full-width">
<mat-label>Select your car</mat-label>
<select matNativeControl required [formControl]="selectFormControl" [errorStateMatcher]="matcher">
<option label="--select something --"></option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
@if (selectFormControl.hasError('required')) {
<mat-error>This field is required</mat-error>
}
<mat-hint>You can pick up your favorite car here</mat-hint>
</mat-form-field>
<button color="primary" matButton="elevated">Submit</button>
</form>
</mat-card-content>
</mat-card>
<mat-card class="demo-card demo-narrow">
<mat-card-subtitle>Narrow</mat-card-subtitle>
<mat-card-content>
<p class="demo-narrow-sandwich">
<mat-form-field>
<mat-label>Bread</mat-label>
<mat-select [(ngModel)]="sandwichBread"
[hideSingleSelectionIndicator]="sandwichHideSingleSelectionIndicator">
@for (bread of breads; track bread) {
<mat-option [value]="bread.value">{{ bread.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<mat-form-field>
<mat-label>Meat</mat-label>
<mat-select [(ngModel)]="sandwichMeat"
[hideSingleSelectionIndicator]="sandwichHideSingleSelectionIndicator">
@for (meat of meats; track meat) {
<mat-option [value]="meat.value">{{ meat.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
<mat-form-field>
<mat-label>Cheese</mat-label>
<mat-select [(ngModel)]="sandwichCheese"
[hideSingleSelectionIndicator]="sandwichHideSingleSelectionIndicator">
@for (cheese of cheeses; track cheese) {
<mat-option [value]="cheese.value">{{ cheese.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
</p>
<mat-checkbox [(ngModel)]="sandwichHideSingleSelectionIndicator">
Hide Single-Selection Indicator
</mat-checkbox>
</mat-card-content>
</mat-card>