2015-10-08 23:21:51 +03:00
|
|
|
'use strict';
|
|
|
|
|
2016-05-09 22:55:16 +03:00
|
|
|
import { forwardRef } from '@angular/core';
|
2016-05-06 00:48:41 +03:00
|
|
|
import { RedocComponent, BaseComponent } 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
|
|
|
|
2015-10-09 23:19:35 +03:00
|
|
|
@RedocComponent({
|
2015-10-08 23:21:51 +03:00
|
|
|
selector: 'methods-list',
|
|
|
|
templateUrl: './lib/components/MethodsList/methods-list.html',
|
2015-10-10 16:01:41 +03:00
|
|
|
styleUrls: ['./lib/components/MethodsList/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 {
|
2015-10-08 23:21:51 +03:00
|
|
|
|
|
|
|
constructor(schemaMgr) {
|
2015-10-09 23:19:35 +03:00
|
|
|
super(schemaMgr);
|
2015-10-08 23:21:51 +03:00
|
|
|
}
|
|
|
|
|
2015-10-09 23:19:35 +03:00
|
|
|
prepareModel() {
|
2015-10-08 23:21:51 +03:00
|
|
|
this.data = {};
|
2015-10-18 19:32:11 +03:00
|
|
|
// follow SwaggerUI behavior for cases when one method has more than one tag:
|
|
|
|
// duplicate methods
|
2015-10-08 23:21:51 +03:00
|
|
|
|
2015-10-18 19:32:11 +03:00
|
|
|
let menuStructure = this.schemaMgr.buildMenuTree();
|
2015-10-29 00:22:12 +03:00
|
|
|
let tags = Array.from(menuStructure.entries())
|
2015-10-18 19:32:11 +03:00
|
|
|
.map((entry) => {
|
2015-10-29 00:22:12 +03:00
|
|
|
let [tag, {description, methods}] = entry;
|
2015-10-18 19:32:11 +03:00
|
|
|
// inject tag name into method info
|
2015-10-29 00:49:31 +03:00
|
|
|
methods = methods || [];
|
2015-10-18 19:32:11 +03:00
|
|
|
methods.forEach(method => {
|
|
|
|
method.tag = tag;
|
|
|
|
});
|
2015-10-29 00:22:12 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|