2015-10-08 23:21:51 +03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import {JsonPointer} from '../../utils/JsonPointer';
|
2015-10-09 23:19:35 +03:00
|
|
|
import {RedocComponent, BaseComponent} from '../base';
|
2015-10-27 20:44:08 +03:00
|
|
|
import ParamsList from '../ParamsList/params-list';
|
|
|
|
import ResponsesList from '../ResponsesList/responses-list';
|
|
|
|
import ResponsesSamples from '../ResponsesSamples/responses-samples';
|
|
|
|
import SchemaSample from '../SchemaSample/schema-sample';
|
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: 'method',
|
2015-10-10 15:34:46 +03:00
|
|
|
templateUrl: './lib/components/Method/method.html',
|
2015-10-10 16:01:41 +03:00
|
|
|
styleUrls: ['./lib/components/Method/method.css'],
|
2015-10-25 14:26:38 +03:00
|
|
|
directives: [ParamsList, ResponsesList, ResponsesSamples, SchemaSample]
|
2015-10-08 23:21:51 +03:00
|
|
|
})
|
2015-10-27 20:44:08 +03:00
|
|
|
export default class Method 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-11-17 01:03:09 +03:00
|
|
|
this.data.apiUrl = this.schemaMgr.apiUrl;
|
2015-10-09 08:31:09 +03:00
|
|
|
this.data.method = JsonPointer.baseName(this.pointer);
|
|
|
|
this.data.path = JsonPointer.baseName(this.pointer, 2);
|
2015-10-09 23:19:35 +03:00
|
|
|
this.data.methodInfo = this.componentSchema;
|
2015-11-17 02:34:13 +03:00
|
|
|
this.data.methodInfo.tags = this.filterMainTags(this.data.methodInfo.tags);
|
2015-10-25 14:26:38 +03:00
|
|
|
this.data.bodyParam = this.findBodyParam();
|
|
|
|
}
|
|
|
|
|
2015-11-17 02:34:13 +03:00
|
|
|
filterMainTags(tags) {
|
|
|
|
var tagsMap = this.schemaMgr.getTagsMap();
|
2015-11-18 21:34:06 +03:00
|
|
|
return tags.filter(tag => tagsMap[tag] && tagsMap[tag]['x-secondaryTag']);
|
2015-11-17 02:34:13 +03:00
|
|
|
}
|
|
|
|
|
2015-10-25 14:26:38 +03:00
|
|
|
findBodyParam() {
|
|
|
|
let pathParams = this.schemaMgr.getMethodParams(JsonPointer.join(this.pointer, 'parameters'), true);
|
|
|
|
let bodyParam = pathParams.find(param => param.in === 'body');
|
|
|
|
return bodyParam;
|
2015-10-08 23:21:51 +03:00
|
|
|
}
|
|
|
|
}
|