redoc/lib/components/MethodsList/methods-list.ts
Roman Hotsiy 53b4f55876 Refactor
2016-06-22 21:53:11 +03:00

46 lines
1.2 KiB
TypeScript

'use strict';
import { forwardRef } from '@angular/core';
import { RedocComponent, BaseComponent, SpecManager } from '../base';
import { Method } from '../Method/method';
import { EncodeURIComponentPipe } from '../../utils/pipes';
@RedocComponent({
selector: 'methods-list',
templateUrl: './methods-list.html',
styleUrls: ['./methods-list.css'],
directives: [ forwardRef(() => Method) ],
pipes: [ EncodeURIComponentPipe ],
detect: true
})
export class MethodsList extends BaseComponent {
data:any;
constructor(schemaMgr:SpecManager) {
super(schemaMgr);
}
prepareModel() {
this.data = {};
// follow SwaggerUI behavior for cases when one method has more than one tag:
// duplicate methods
let menuStructure = this.schemaMgr.buildMenuTree();
let tags = Array.from<any>(menuStructure.entries())
.map((entry) => {
let [tag, {description, methods}] = entry;
// inject tag name into method info
methods = methods || [];
methods.forEach(method => {
method.tag = tag;
});
return {
name: tag,
description: description,
methods: methods
};
});
this.data.tags = tags;
// TODO: check $ref field
}
}