mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
31 lines
878 B
TypeScript
31 lines
878 B
TypeScript
'use strict';
|
|
import { Component, ChangeDetectionStrategy, OnInit } from '@angular/core';
|
|
import { SpecManager, BaseComponent } from '../base';
|
|
import { OptionsService, MenuService } from '../../services/index';
|
|
|
|
@Component({
|
|
selector: 'api-info',
|
|
styleUrls: ['./api-info.css'],
|
|
templateUrl: './api-info.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class ApiInfo extends BaseComponent implements OnInit {
|
|
info: any = {};
|
|
specUrl: String;
|
|
constructor(specMgr:SpecManager, private optionsService:OptionsService, private menuServ: MenuService) {
|
|
super(specMgr);
|
|
}
|
|
|
|
init() {
|
|
this.info = this.componentSchema.info;
|
|
this.specUrl = this.optionsService.options.specUrl;
|
|
if (parseInt(this.info.version.substring(0, 1)) !== NaN) {
|
|
this.info.version = 'v' + this.info.version;
|
|
}
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.preinit();
|
|
}
|
|
}
|