redoc/lib/components/ApiInfo/api-info.ts

36 lines
961 B
TypeScript
Raw Normal View History

'use strict';
2016-12-29 20:20:29 +03:00
import { Component, ChangeDetectionStrategy, OnInit, ElementRef } from '@angular/core';
2016-08-22 12:12:13 +03:00
import { SpecManager, BaseComponent } from '../base';
2016-12-29 20:20:29 +03:00
import { OptionsService, Marker } from '../../services/index';
2016-08-22 12:12:13 +03:00
@Component({
selector: 'api-info',
styleUrls: ['./api-info.css'],
2016-08-22 12:12:13 +03:00
templateUrl: './api-info.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
2016-08-28 21:46:10 +03:00
export class ApiInfo extends BaseComponent implements OnInit {
info: any = {};
specUrl: String;
2016-12-29 20:20:29 +03:00
constructor(specMgr: SpecManager,
private optionsService: OptionsService,
elRef: ElementRef,
marker: Marker
) {
super(specMgr);
2016-12-29 20:20:29 +03:00
marker.addElement(elRef.nativeElement);
}
2016-06-13 20:54:24 +03:00
init() {
this.info = this.componentSchema.info;
2016-05-06 12:46:41 +03:00
this.specUrl = this.optionsService.options.specUrl;
if (!isNaN(parseInt(this.info.version.toString().substring(0, 1)))) {
this.info.version = 'v' + this.info.version;
2016-07-01 18:09:42 +03:00
}
}
2016-08-28 21:46:10 +03:00
ngOnInit() {
this.preinit();
}
}