]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts
LP#1775466 Angular(6) base application
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / share / grid / grid-column.component.ts
1 import {Component, Input, OnInit, Host, TemplateRef} from '@angular/core';
2 import {GridColumn, GridColumnSet} from './grid';
3 import {GridComponent} from './grid.component';
4
5 @Component({
6   selector: 'eg-grid-column',
7   template: '<ng-template></ng-template>'
8 })
9
10 export class GridColumnComponent implements OnInit {
11
12     // Note most input fields should match class fields for GridColumn
13     @Input() name: string;
14     @Input() path: string;
15     @Input() label: string;
16     @Input() flex: number;
17     // is this the index field?
18     @Input() index: boolean;
19
20     // Columns are assumed to be visible unless hidden=true.
21     @Input() hidden: boolean;
22
23     @Input() sortable: boolean;
24     @Input() datatype: string;
25     @Input() multiSortable: boolean;
26
27     // Used in conjunction with cellTemplate
28     @Input() cellContext: any;
29     @Input() cellTemplate: TemplateRef<any>;
30
31     // get a reference to our container grid.
32     constructor(@Host() private grid: GridComponent) {}
33
34     ngOnInit() {
35
36         if (!this.grid) {
37             console.warn('GridColumnComponent needs an <eg-grid>');
38             return;
39         }
40
41         const col = new GridColumn();
42         col.name = this.name;
43         col.path = this.path;
44         col.label = this.label;
45         col.flex = this.flex;
46         col.hidden = this.hidden === true;
47         col.isIndex = this.index === true;
48         col.cellTemplate = this.cellTemplate;
49         col.cellContext = this.cellContext;
50         col.isSortable = this.sortable;
51         col.isMultiSortable = this.multiSortable;
52         col.datatype = this.datatype;
53         col.isAuto = false;
54         this.grid.context.columnSet.add(col);
55     }
56 }
57