redoc/lib/components/ApiLogo/api-logo.js
2016-02-11 13:38:44 +02:00

23 lines
567 B
JavaScript

'use strict';
import {RedocComponent, BaseComponent} from '../base';
@RedocComponent({
selector: 'api-logo',
styleUrls: ['./lib/components/ApiLogo/api-logo.css'],
templateUrl: './lib/components/ApiLogo/api-logo.html'
})
export default class ApiLogo extends BaseComponent {
constructor(schemaMgr) {
super(schemaMgr);
}
prepareModel() {
this.data = {};
let logoInfo = this.componentSchema.info['x-logo'];
if (!logoInfo) return;
this.data.imgUrl = logoInfo.url;
this.data.bgColor = logoInfo.backgroundColor || 'transparent';
}
}