redoc/lib/components/MethodsList/methods-list.ts

54 lines
1.3 KiB
TypeScript
Raw Normal View History

2015-10-08 23:21:51 +03:00
'use strict';
2016-05-09 22:55:16 +03:00
import { forwardRef } from '@angular/core';
2016-06-22 21:17:48 +03:00
import { RedocComponent, BaseComponent, SpecManager } from '../base';
2016-05-09 22:55:16 +03:00
import { Method } from '../Method/method';
2016-05-06 00:48:41 +03:00
import { EncodeURIComponentPipe } from '../../utils/pipes';
2015-10-08 23:21:51 +03:00
@RedocComponent({
2015-10-08 23:21:51 +03:00
selector: 'methods-list',
templateUrl: './methods-list.html',
styleUrls: ['./methods-list.css'],
2016-05-09 22:55:16 +03:00
directives: [ forwardRef(() => Method) ],
2016-05-18 16:59:54 +03:00
pipes: [ EncodeURIComponentPipe ],
detect: true
2015-10-08 23:21:51 +03:00
})
2016-05-06 00:48:41 +03:00
export class MethodsList extends BaseComponent {
data:any;
constructor(specMgr:SpecManager) {
super(specMgr);
2015-10-08 23:21:51 +03:00
}
prepareModel() {
2015-10-08 23:21:51 +03:00
this.data = {};
// follow SwaggerUI behavior for cases when one method has more than one tag:
// duplicate methods
2015-10-08 23:21:51 +03:00
let menuStructure = this.specMgr.buildMenuTree();
let tags = Array.from<any>(menuStructure.entries())
.map((entry) => {
let [tag, {description, methods}] = entry;
// inject tag name into method info
2015-10-29 00:49:31 +03:00
methods = methods || [];
methods.forEach(method => {
method.tag = tag;
});
return {
name: tag,
description: description,
methods: methods
};
});
this.data.tags = tags;
2015-10-10 15:34:46 +03:00
// TODO: check $ref field
2015-10-08 23:21:51 +03:00
}
2016-06-30 16:42:36 +03:00
trackByPointer(idx, el) {
return el.pointer;
}
2016-07-01 16:30:35 +03:00
trackByTagName(idx, el) {
return el.name;
}
2015-10-08 23:21:51 +03:00
}