redoc/lib/components/Redoc/redoc.js

29 lines
658 B
JavaScript
Raw Normal View History

'use strict';
import {Component, View} from 'angular2/angular2';
import {SchemaManager} from '../../utils/SchemaManager';
2015-10-08 23:27:02 +03:00
import {ApiInfo} from '../ApiInfo/api-info';
2015-10-08 23:21:51 +03:00
import {PathsList} from '../PathsList/paths-list';
@Component({
selector: 'redoc',
bindings: [SchemaManager]
})
@View({
templateUrl: './lib/components/Redoc/redoc.html',
2015-10-08 23:27:02 +03:00
directives: [ApiInfo, PathsList]
})
export class Redoc {
constructor(schemaMgr) {
this.data = null;
this.schema = schemaMgr.schema;
this.extractData();
}
extractData() {
2015-10-09 10:50:02 +03:00
this.data = this.schema;
//TODO: check and apply hooks to modify data
}
}
2015-10-09 10:50:02 +03:00
Redoc.parameters = [[SchemaManager]];