2015-10-07 12:47:57 +03:00
|
|
|
'use strict';
|
2016-08-28 21:46:10 +03:00
|
|
|
import { Component, ChangeDetectionStrategy, OnInit } from '@angular/core';
|
2016-08-22 12:12:13 +03:00
|
|
|
import { SpecManager, BaseComponent } from '../base';
|
2016-07-21 13:35:27 +03:00
|
|
|
import { OptionsService, MenuService } from '../../services/index';
|
2015-10-07 12:47:57 +03:00
|
|
|
|
2016-08-22 12:12:13 +03:00
|
|
|
@Component({
|
2015-10-09 23:19:35 +03:00
|
|
|
selector: 'api-info',
|
2016-05-25 18:34:31 +03:00
|
|
|
styleUrls: ['./api-info.css'],
|
2016-08-22 12:12:13 +03:00
|
|
|
templateUrl: './api-info.html',
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2015-10-07 12:47:57 +03:00
|
|
|
})
|
2016-08-28 21:46:10 +03:00
|
|
|
export class ApiInfo extends BaseComponent implements OnInit {
|
|
|
|
info: any = {};
|
2016-05-25 18:34:31 +03:00
|
|
|
specUrl: String;
|
2016-10-31 11:15:04 +03:00
|
|
|
constructor(specMgr: SpecManager, private optionsService: OptionsService) {
|
2016-06-23 17:36:38 +03:00
|
|
|
super(specMgr);
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|
2016-06-13 20:54:24 +03:00
|
|
|
|
2016-07-20 11:07:08 +03:00
|
|
|
init() {
|
|
|
|
this.info = this.componentSchema.info;
|
2016-05-06 12:46:41 +03:00
|
|
|
this.specUrl = this.optionsService.options.specUrl;
|
2016-08-30 20:16:06 +03:00
|
|
|
if (!isNaN(parseInt(this.info.version.substring(0, 1)))) {
|
2016-07-20 11:07:08 +03:00
|
|
|
this.info.version = 'v' + this.info.version;
|
2016-07-01 18:09:42 +03:00
|
|
|
}
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|
2016-08-28 21:46:10 +03:00
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
this.preinit();
|
|
|
|
}
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|