Blame view

src/app/data/authority/authority.component.ts 5.01 KB
7462a6be   Yarik   Authority and con...
1
  import {Component, ViewEncapsulation, AfterViewInit, ViewChild, OnDestroy} from '@angular/core';
229df284   Yarik   Big map commit
2
3
4
5
6
7
8
9
10
11
  import {TdLoadingService} from '@covalent/core';
  
  import {StatementBase} from '../../../models/statement.base';
  
  import {AuthorityService} from '../../../services/authority.service';
  import {EditorComponent} from '../../../helpers/editor.component';
  import {RendererComponent} from '../../../helpers/renderer.component';
  import {AuthorityCreateService} from '../../../services/authority-create.service';
  import {RoadSelectList} from '../../../models/road-select-list';
  import {CrossSectionSelectList} from "../../../models/cross-section-select-list";
7462a6be   Yarik   Authority and con...
12
  import {ActivatedRoute} from "@angular/router";
229df284   Yarik   Big map commit
13
14
15
16
17
18
19
20
  
  @Component({
      // tslint:disable-next-line:component-selector
      selector: 'authority-grid',
      templateUrl: 'authority.component.html',
      styleUrls: ['authority.scss'],
      encapsulation: ViewEncapsulation.None,
  })
7462a6be   Yarik   Authority and con...
21
  export class AuthorityComponent extends StatementBase implements OnDestroy {
229df284   Yarik   Big map commit
22
23
      public roads: RoadSelectList[];
      public crosssections: CrossSectionSelectList[];
7462a6be   Yarik   Authority and con...
24
25
      public roadId: string;
      protected roadSub: any;
229df284   Yarik   Big map commit
26
27
28
  
      constructor(protected service: AuthorityService,
                  protected dataService: AuthorityCreateService,
7462a6be   Yarik   Authority and con...
29
30
31
                  protected loadingService: TdLoadingService,
                  protected route: ActivatedRoute
      ) {
229df284   Yarik   Big map commit
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
          super();
      }
  
      protected createColumnDefs(): any[] {
          return [
              {
                  headerName: '#',
                  width: 30,
                  checkboxSelection: true,
                  suppressSorting: true,
                  suppressMenu: true,
                  pinned: true,
              },
              {
                  headerName: 'ID',
                  field: 'id',
              },
              {
                  headerName: 'Назва дороги',
                  field: 'roadId',
                  editable: true,
                  cellEditorFramework: EditorComponent,
                  cellRendererFramework: RendererComponent,
                  cellEditorParams: {
                      data: this.roads,
                      valueCol: 'roadId',
                      labelCol: 'name',
                  },
              },
              {
                  headerName: 'Номер з\'їзду транспортної розв\'язки',
                  field: 'crossSectionId',
                  editable: true,
                  cellEditorFramework: EditorComponent,
                  cellRendererFramework: RendererComponent,
                  cellEditorParams: {
                      data: this.crosssections,
                      valueCol: 'id',
                      labelCol: 'name',
                  },
              },
              {
                  headerName: 'Назва органу управління (балансоутримувача)',
                  field: 'authorityName',
                  editable: true,
              },
              {
                  headerName: 'Номер ділянки дороги',
                  field: 'roadSectionNumber',
                  editable: true,
              },
              {
                  headerName: 'Початок (псевдогеодані)',
                  field: 'begin',
                  editable: true,
              },
              {
                  headerName: 'Кінець (псевдогеодані)',
                  field: 'end',
                  editable: true,
              },
              {
                  headerName: 'Довжина (у метрах)',
                  field: 'length',
                  editable: false,
              },
              {
                  headerName: 'Координати вісі правого проїзду',
                  field: 'rightCoords',
                  editable: true,
              },
              {
                  headerName: 'Схема початку/межі збірного об’єкту',
                  field: 'beginScheme',
                  editable: true,
              },
              {
                  headerName: 'Схема кінця/межі збірного об’єкту',
                  field: 'endScheme',
                  editable: true,
              },
          ];
      }
229df284   Yarik   Big map commit
115
116
117
118
119
120
      protected initFunction(): void {
          this.dataService.getModels().then((models: any) => {
              this.roads = models.roadSelectListDsM as RoadSelectList[];
              this.crosssections = models.crossSectionSelectListDsM as CrossSectionSelectList[];
          }).then(() => {
              this.bootstrapGrid();
7462a6be   Yarik   Authority and con...
121
122
123
124
125
126
127
128
129
              this.filterRoad();
          });
      }
      public ngOnDestroy() {
          this.roadSub.unsubscribe();
      }
      protected filterRoad(): void {
          this.roadSub = this.route.params.subscribe(params => {
              this.roadId = params['roadId'];
229df284   Yarik   Big map commit
130
          });
7462a6be   Yarik   Authority and con...
131
132
133
134
135
136
137
138
139
140
          if (this.roadId) {
              setTimeout(() => {
                  let filter = this.gridOptions.api.getFilterInstance('roadId');
                  filter.setModel({
                      type: 'equals',
                      filter: this.roadId
                  });
                  this.gridOptions.api.onFilterChanged();
              }, 0);
          }
229df284   Yarik   Big map commit
141
142
      }
  }