-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathDemoTable.razor
More file actions
613 lines (554 loc) · 21.3 KB
/
DemoTable.razor
File metadata and controls
613 lines (554 loc) · 21.3 KB
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
<DocMatTable></DocMatTable>
<h5 class="mat-h5">Example</h5>
<DemoContainer>
<Content>
<MatTable Items="@cars" class="mat-elevation-z5" OnRowsGenerating="() => TestRowGenerating()">
<MatColGroup>
<colgroup>
<col span="1" style="width: 60%;">
<col span="1" style="width: auto;">
<col span="1" style="width: auto;">
</colgroup>
</MatColGroup>
<MatTableHeader>
<th>Name</th>
<th>Price</th>
<th>Horsepower</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Name</td>
<td>@String.Format("${0:f2}", @context.Price)</td>
<td>@context.Horsepower</td>
</MatTableRow>
</MatTable>
@code
{
void TestRowGenerating()
{
System.Diagnostics.Debug.WriteLine("RowGenerating called successful.");
}
public class Car
{
public string Name { get; set; }
public double Price { get; set; }
public int Horsepower { get; set; }
public Car(string name, double price, int horsepower)
{
Name = name;
Price = price;
Horsepower = horsepower;
}
}
Car[] cars = new[]
{
new Car("Volkswagen Golf", 10000, 220),
new Car("Volkswagen Passat", 11000, 240),
new Car("Volkswagen Polo", 12000, 110),
new Car("Ford Focus", 13000, 200),
new Car("Ford Fiesta", 14000, 160),
new Car("Ford Fusion", 15000, 260),
new Car("Ford Mondeo", 16000, 120),
};
}
</Content>
<SourceContent>
<BlazorFiddle Template="MatBlazor" Code=@(@"
<MatTable Items=""@cars"" class=""mat-elevation-z5"" OnRowsGenerating=""() => TestRowGenerating()"">
<MatColGroup>
<colgroup>
<col span=""1"" style=""width: 60%;"">
<col span=""1"" style=""width: auto;"">
<col span=""1"" style=""width: auto;"">
</colgroup>
</MatColGroup>
<MatTableHeader>
<th>Name</th>
<th>Price</th>
<th>Horsepower</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Name</td>
<td>@String.Format(""${0:f2}"", @context.Price)</td>
<td>@context.Horsepower</td>
</MatTableRow>
</MatTable>
@code
{
public class Car
{
public string Name { get; set; }
public double Price { get; set; }
public int Horsepower { get; set; }
public Car(string name, double price, int horsepower)
{
Name = name;
Price = price;
Horsepower = horsepower;
}
}
Car[] cars = new[]
{
new Car(""Volkswagen Golf"", 10000, 220),
new Car(""Volkswagen Passat"", 11000, 240),
new Car(""Volkswagen Polo"", 12000, 110),
new Car(""Ford Focus"", 13000, 200),
new Car(""Ford Fiesta"", 14000, 160),
new Car(""Ford Fusion"", 15000, 260),
new Car(""Ford Mondeo"", 16000, 120),
};
void TestRowGenerating()
{
System.Diagnostics.Debug.WriteLine(""RowGenerating called successful."");
}
}
")></BlazorFiddle>
</SourceContent>
</DemoContainer>
<h5 class="mat-h5">Filter Example, Pull Data from API, Single Row Selection / Hover</h5>
<DemoContainer>
<Content>
<MatTable Items="@todos" LoadInitialData="true" Striped="true" RequestApiOnlyOnce="true" AllowSelection="true" RowClass="tester"
ApiUrl="https://jsonplaceholder.typicode.com/todos" FilterByColumnName="Title" DebounceMilliseconds="150" class="mat-elevation-z5">
<MatTableHeader>
<th>Id</th>
<th>Completed</th>
<th>Todo</th>
</MatTableHeader>
<MatTableRow>
<td>@String.Format("{0:d}", @context.Id)</td>
<td>@context.Completed</td>
<td>@context.Title</td>
</MatTableRow>
</MatTable>
@code
{
public class Todo
{
public int UserId { get; set; }
public int Id { get; set; }
public string Title { get; set; }
public bool Completed { get; set; }
public Todo()
{
}
}
Todo[] todos;
}
</Content>
<SourceContent>
<BlazorFiddle Template="MatBlazor" Code=@(@"
<MatTable Items=""@todos"" LoadInitialData=""true"" Striped=""true"" RequestApiOnlyOnce=""true"" AllowSelection=""true"" RowClass=""tester""
ApiUrl=""https://jsonplaceholder.typicode.com/todos"" FilterByColumnName=""Title"" DebounceMilliseconds=""150"" class=""mat-elevation-z5"">
<MatTableHeader>
<th>Id</th>
<th>Completed</th>
<th>Todo</th>
</MatTableHeader>
<MatTableRow>
<td>@String.Format(""{0:d}"", @context.Id)</td>
<td>@context.Completed</td>
<td>@context.Title</td>
</MatTableRow>
</MatTable>
@code
{
public class Todo
{
public int UserId { get; set; }
public int Id { get; set; }
public string Title { get; set; }
public bool Completed { get; set; }
public Todo()
{
}
}
Todo[] todos;
}
")></BlazorFiddle>
</SourceContent>
</DemoContainer>
<h5 class="mat-h5">Example with sort header table</h5>
<DemoContainer>
<Content>
<MatTable Items="@sortedData" class="mat-elevation-z5" ShowPaging="false" UseSortHeaderRow="true">
<MatTableHeader>
<MatSortHeaderRow SortChanged="@SortData">
<MatSortHeader SortId="name"><span style="width:600px">Dessert (100g)</span></MatSortHeader>
<MatSortHeader SortId="calories">Calories</MatSortHeader>
<MatSortHeader SortId="fat">Fat (g)</MatSortHeader>
<MatSortHeader SortId="carbs">Carbs (g)</MatSortHeader>
<MatSortHeader SortId="protein">Protein (g)</MatSortHeader>
</MatSortHeaderRow>
</MatTableHeader>
<MatTableRow>
<td>@context.Name</td>
<td>@context.Calories</td>
<td>@context.Fat</td>
<td>@context.Carbs</td>
<td>@context.Protein</td>
</MatTableRow>
</MatTable>
@code
{
class Dessert
{
public int Calories { get; set; }
public int Carbs { get; set; }
public int Fat { get; set; }
public string Name { get; set; }
public int Protein { get; set; }
}
Dessert[] desserts = new[]
{
new Dessert() {Name = "Frozen yogurt", Calories = 159, Fat = 6, Carbs = 24, Protein = 4},
new Dessert() {Name = "Ice cream sandwich", Calories = 237, Fat = 9, Carbs = 37, Protein = 4},
new Dessert() {Name = "Eclair", Calories = 262, Fat = 16, Carbs = 24, Protein = 6},
new Dessert() {Name = "Cupcake", Calories = 305, Fat = 4, Carbs = 67, Protein = 4},
new Dessert() {Name = "Gingerbread", Calories = 356, Fat = 16, Carbs = 49, Protein = 4},
};
void SortData(MatSortChangedEvent sort)
{
sortedData = desserts.ToArray();
if (!(sort == null || sort.Direction == MatSortDirection.None || string.IsNullOrEmpty(sort.SortId)))
{
Comparison<Dessert> comparison = null;
switch (sort.SortId)
{
case "name":
comparison = (s1, s2) => string.Compare(s1.Name, s2.Name, StringComparison.InvariantCultureIgnoreCase);
break;
case "calories":
comparison = (s1, s2) => s1.Calories.CompareTo(s2.Calories);
break;
case "fat":
comparison = (s1, s2) => s1.Fat.CompareTo(s2.Fat);
break;
case "carbs":
comparison = (s1, s2) => s1.Carbs.CompareTo(s2.Carbs);
break;
case "protein":
comparison = (s1, s2) => s1.Protein.CompareTo(s2.Protein);
break;
}
if (comparison != null)
{
if (sort.Direction == MatSortDirection.Desc)
{
Array.Sort(sortedData, (s1, s2) => -1 * comparison(s1, s2));
}
else
{
Array.Sort(sortedData, comparison);
}
}
}
}
Dessert[] sortedData = null;
protected override void OnInitialized()
{
base.OnInitialized();
SortData(null);
}
}
</Content>
<SourceContent>
<BlazorFiddle Template="MatBlazor" Code=@(@"
<MatTable Items=""@sortedData"" class=""mat-elevation-z5"" ShowPaging=""false"" UseSortHeaderRow=""true"">
<MatTableHeader>
<MatSortHeaderRow SortChanged=""@SortData"">
<MatSortHeader SortId=""name""><span style=""width:600px"">Dessert (100g)</span></MatSortHeader>
<MatSortHeader SortId=""calories"">Calories</MatSortHeader>
<MatSortHeader SortId=""fat"">Fat (g)</MatSortHeader>
<MatSortHeader SortId=""carbs"">Carbs (g)</MatSortHeader>
<MatSortHeader SortId=""protein"">Protein (g)</MatSortHeader>
</MatSortHeaderRow>
</MatTableHeader>
<MatTableRow>
<td>@context.Name</td>
<td>@context.Calories</td>
<td>@context.Fat</td>
<td>@context.Carbs</td>
<td>@context.Protein</td>
</MatTableRow>
</MatTable>
@code
{
class Dessert
{
public int Calories { get; set; }
public int Carbs { get; set; }
public int Fat { get; set; }
public string Name { get; set; }
public int Protein { get; set; }
}
Dessert[] desserts = new[]
{
new Dessert() {Name = ""Frozen yogurt"", Calories = 159, Fat = 6, Carbs = 24, Protein = 4},
new Dessert() {Name = ""Ice cream sandwich"", Calories = 237, Fat = 9, Carbs = 37, Protein = 4},
new Dessert() {Name = ""Eclair"", Calories = 262, Fat = 16, Carbs = 24, Protein = 6},
new Dessert() {Name = ""Cupcake"", Calories = 305, Fat = 4, Carbs = 67, Protein = 4},
new Dessert() {Name = ""Gingerbread"", Calories = 356, Fat = 16, Carbs = 49, Protein = 4},
};
void SortData(MatSortChangedEvent sort)
{
sortedData = desserts.ToArray();
if (!(sort == null || sort.Direction == MatSortDirection.None || string.IsNullOrEmpty(sort.SortId)))
{
Comparison<Dessert> comparison = null;
switch (sort.SortId)
{
case ""name"":
comparison = (s1, s2) => string.Compare(s1.Name, s2.Name, StringComparison.InvariantCultureIgnoreCase);
break;
case ""calories"":
comparison = (s1, s2) => s1.Calories.CompareTo(s2.Calories);
break;
case ""fat"":
comparison = (s1, s2) => s1.Fat.CompareTo(s2.Fat);
break;
case ""carbs"":
comparison = (s1, s2) => s1.Carbs.CompareTo(s2.Carbs);
break;
case ""protein"":
comparison = (s1, s2) => s1.Protein.CompareTo(s2.Protein);
break;
}
if (comparison != null)
{
if (sort.Direction == MatSortDirection.Desc)
{
Array.Sort(sortedData, (s1, s2) => -1 * comparison(s1, s2));
}
else
{
Array.Sort(sortedData, comparison);
}
}
}
}
Dessert[] sortedData = null;
protected override void OnInitialized()
{
base.OnInitialized();
SortData(null);
}
}
")></BlazorFiddle>
</SourceContent>
</DemoContainer>
<h5 class="mat-h5">Select row, with returning selected item example</h5>
<DemoContainer>
<Content>
<MatTable Items="tasks" class="mat-elevation-z5" AllowSelection="true" SelectionChanged="SelectionChangedEvent">
<MatTableHeader>
<th>Id</th>
<th>Name</th>
<th>Description</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Id</td>
<td>@context.Name</td>
<td>@context.Description</td>
</MatTableRow>
</MatTable>
<p>@_currentSelectedTask</p>
@code
{
private string _currentSelectedTask;
public class Task
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Task(int id, string name, string description)
{
Id = id;
Name = name;
Description = description;
}
}
Task[] tasks = new[]
{
new Task(1, "T1", "Do something..."),
new Task(2, "T2", "Do something..."),
new Task(3, "T3", "Do something..."),
new Task(4, "T4", "Do something..."),
new Task(5, "T5", "Do something..."),
new Task(6, "T6", "Do something..."),
new Task(7, "T7", "Do something..."),
};
public void SelectionChangedEvent(object row)
{
if (row == null)
{
_currentSelectedTask = "";
}
else
{
_currentSelectedTask = string.Format("Task Nr. {0} has been selected", ((Task)row).Id);
}
this.StateHasChanged();
}
}
</Content>
<SourceContent>
<BlazorFiddle Template="MatBlazor" Code=@(@"
<MatTable Items=""tasks"" class=""mat-elevation-z5"" AllowSelection=""true"" SelectionChanged=""SelectionChangedEvent"">
<MatTableHeader>
<th>Id</th>
<th>Name</th>
<th>Description</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Id</td>
<td>@context.Name</td>
<td>@context.Description</td>
</MatTableRow>
</MatTable>
<p>@_currentSelectedTask</p>
@code
{
private string _currentSelectedTask;
public class Task
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Task(int id, string name, string description)
{
Id = id;
Name = name;
Description = description;
}
}
Task[] tasks = new[]
{
new Task(1, ""T1"", ""Do something...""),
new Task(2, ""T2"", ""Do something...""),
new Task(3, ""T3"", ""Do something...""),
new Task(4, ""T4"", ""Do something...""),
new Task(5, ""T5"", ""Do something...""),
new Task(6, ""T6"", ""Do something...""),
new Task(7, ""T7"", ""Do something...""),
};
public void SelectionChangedEvent(object row)
{
if (row == null)
{
_currentSelectedTask = """";
}
else
{
_currentSelectedTask = string.Format(""Task Nr. {0} has been selected"", ((Task)row).Id);
}
this.StateHasChanged();
}
}
")></BlazorFiddle>
</SourceContent>
</DemoContainer>
<h5 class="mat-h5">Select row, with returning selected item example</h5>
<DemoContainer>
<Content>
<MatTable Items="people"
class="mat-elevation-z5"
OnRowDbClick="OnPersonDbClicked"
AllowSelection="true">
<MatTableHeader>
<th>Id</th>
<th>Firstname</th>
<th>Lastname</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Id</td>
<td>@context.Firstname</td>
<td>@context.Lastname</td>
</MatTableRow>
</MatTable>
<p>You have double clicked on <b>@_currentSelectedPerson</b></p>
@code
{
private string _currentSelectedPerson = "noone";
public class Person
{
public int Id { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public Person(int id, string firstname, string lastname)
{
Id = id;
Firstname = firstname;
Lastname = lastname;
}
}
Person[] people = new[]
{
new Person(1, "Gerda", "Mugwort"),
new Person(2, "Mattalic", "Burrowes"),
new Person(3, "Hal", "Smallburrow"),
};
void OnPersonDbClicked(object item)
{
var person = item as Person;
if (person == null)
{
_currentSelectedPerson = "noone";
return;
}
_currentSelectedPerson = $"{person.Firstname} {person.Lastname}";
}
}
</Content>
<SourceContent>
<BlazorFiddle Template="MatBlazor" Code=@(@"
<MatTable Items=""people""
class=""mat-elevation-z5""
OnRowDbClick=""OnPersonDbClicked""
AllowSelection=""true"">
<MatTableHeader>
<th>Id</th>
<th>Firstname</th>
<th>Lastname</th>
</MatTableHeader>
<MatTableRow>
<td>@context.Id</td>
<td>@context.Firstname</td>
<td>@context.Lastname</td>
</MatTableRow>
</MatTable>
<p>You have double clicked on <b>@_currentSelectedPerson</b></p>
@code
{
private string _currentSelectedPerson = ""noone"";
public class Person
{
public int Id { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public Person(int id, string firstname, string lastname)
{
Id = id;
Firstname = firstname;
Lastname = lastname;
}
}
Person[] people = new[]
{
new Person(1, ""Gerda"", ""Mugwort""),
new Person(2, ""Mattalic"", ""Burrowes""),
new Person(3, ""Hal"", ""Smallburrow""),
};
void OnPersonDbClicked(object item)
{
var person = item as Person;
if (person == null)
{
_currentSelectedPerson = ""noone"";
return;
}
_currentSelectedPerson = $""{person.Firstname} {person.Lastname}"";
}
}
")></BlazorFiddle>
</SourceContent>
</DemoContainer>