34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { map } from 'rxjs/operators';
|
||
|
import { Breakpoints, BreakpointObserver } from '@angular/cdk/layout';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-table-list',
|
||
|
templateUrl: './table-list.component.html',
|
||
|
styleUrls: ['./table-list.component.css']
|
||
|
})
|
||
|
export class TableListComponent {
|
||
|
/** Based on the screen size, switch from standard to one column per row */
|
||
|
cards = this.breakpointObserver.observe(Breakpoints.Handset).pipe(
|
||
|
map(({ matches }) => {
|
||
|
if (matches) {
|
||
|
return [
|
||
|
{ title: 'Card 1', cols: 1, rows: 1 },
|
||
|
{ title: 'Card 2', cols: 1, rows: 1 },
|
||
|
{ title: 'Card 3', cols: 1, rows: 1 },
|
||
|
{ title: 'Card 4', cols: 1, rows: 1 }
|
||
|
];
|
||
|
}
|
||
|
|
||
|
return [
|
||
|
{ title: 'Card 1', cols: 2, rows: 1 },
|
||
|
{ title: 'Card 2', cols: 1, rows: 1 },
|
||
|
{ title: 'Card 3', cols: 1, rows: 2 },
|
||
|
{ title: 'Card 4', cols: 1, rows: 1 }
|
||
|
];
|
||
|
})
|
||
|
);
|
||
|
|
||
|
constructor(private breakpointObserver: BreakpointObserver) {}
|
||
|
}
|