src/app/modules/profile/bup/bup.ts
Просмотр БУПа (Базовый учебный план) обучающегося
selector | profile-bup |
styleUrls | bup.scss |
templateUrl | ./bup.html |
Properties |
Methods |
constructor(commonService: CommonService, settingsService: SettingsService)
|
|||||||||
Defined in src/app/modules/profile/bup/bup.ts:31
|
|||||||||
Конструктор
Parameters :
|
getData |
getData()
|
Defined in src/app/modules/profile/bup/bup.ts:67
|
Получение данных
Returns :
void
|
getOptions |
getOptions()
|
Defined in src/app/modules/profile/bup/bup.ts:52
|
Получение настроек
Returns :
void
|
ngOnInit |
ngOnInit()
|
Defined in src/app/modules/profile/bup/bup.ts:44
|
Получение настроек и данных
Returns :
void
|
bup |
bup:
|
Type : any
|
Defined in src/app/modules/profile/bup/bup.ts:22
|
БУП |
header |
header:
|
Type : string
|
Default value : Учебный план
|
Defined in src/app/modules/profile/bup/bup.ts:18
|
Заголовок |
loading |
loading:
|
Type : boolean
|
Defined in src/app/modules/profile/bup/bup.ts:31
|
Индикатор загрузки основных данных |
options |
options:
|
Type : any
|
Defined in src/app/modules/profile/bup/bup.ts:26
|
Настройки интерфейса |
import { Component, OnInit } from '@angular/core';
import { CommonService } from 'glx.ui/components/kernel/services/common.service';
import { SettingsService } from 'glx.ui/components/kernel/services/settings.service';
/**
* Просмотр БУПа (Базовый учебный план) обучающегося
*/
@Component({
selector: 'profile-bup',
templateUrl: './bup.html',
styleUrls: ['./bup.scss']
})
export class ProfileBupComponent implements OnInit {
/**
* Заголовок
* @type {string}
*/
header: string = 'Учебный план';
/**
* БУП
*/
bup: any;
/**
* Настройки интерфейса
*/
options: any;
/**
* Индикатор загрузки основных данных
* @type {boolean}
*/
loading: boolean;
/**
* Конструктор
* @param {CommonService} commonService
* @param {SettingsService} settingsService
*/
constructor(private commonService: CommonService, private settingsService: SettingsService) {
}
/**
* Получение настроек и данных
*/
ngOnInit() {
this.getOptions();
this.getData();
}
/**
* Получение настроек
*/
getOptions() {
this.settingsService.getSection('bup')
.subscribe(
data => {
this.options = data.bupOptions;
this.header = data.bupOptions.header;
},
error => {
console.error(error);
});
}
/**
* Получение данных
*/
getData() {
let loaderTimeout = setTimeout(() => {
this.loading = true;
}, 200);
this.commonService.get('bups')
.subscribe(
data => {
if (typeof data === 'object') {
this.bup = data;
} else {
this.bup = {
sections: []
};
}
},
error => {
console.error(error);
},
() => {
clearTimeout(loaderTimeout);
this.loading = false;
});
setTimeout(() => {
clearTimeout(loaderTimeout);
this.loading = false;
}, 10000);
}
}
<glx-page-title-bx
[header]="header"
></glx-page-title-bx>
<div class="bup-wrapper">
<glx-loading-banner
[loading]="loading"
[svg]="true"
text="Подождите, идет загрузка..."
></glx-loading-banner>
<glx-bup-viewer
*ngIf="!loading && bup && options"
[data]="bup"
[options]="options"
></glx-bup-viewer>
</div>