redoc/lib/components/Method/method.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

2015-10-08 23:21:51 +03:00
'use strict';
import {JsonPointer} from '../../utils/JsonPointer';
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
@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) {
super(schemaMgr);
2015-10-08 23:21:51 +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;
this.data.method = JsonPointer.baseName(this.pointer);
this.data.path = JsonPointer.baseName(this.pointer, 2);
this.data.methodInfo = this.componentSchema;
2015-10-25 14:26:38 +03:00
this.data.bodyParam = this.findBodyParam();
}
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
}
}