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

43 lines
1.1 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';
import { SchemaHelper } from '../../services/index';
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 {
tags:Array<any> = [];
constructor(specMgr:SpecManager) {
super(specMgr);
2015-10-08 23:21:51 +03:00
}
init() {
let tags = SchemaHelper.buildMenuTree(this.specMgr.schema);
this.tags = tags.filter(tagInfo => !tagInfo.virtual);
this.tags.forEach(tagInfo => {
// inject tag name into method info
tagInfo.methods = tagInfo.methods || [];
tagInfo.methods.forEach(method => {
2016-07-01 18:33:42 +03:00
method.tag = tagInfo.name;
});
});
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
}