mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-10-30 23:37:28 +03:00 
			
		
		
		
	Use Reflect.metadate decorator instead of Class.parameters Add fallback old syntax of flexbox Other minor styling fixes
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| import {JsonPointer} from '../../utils/JsonPointer';
 | |
| import {RedocComponent, BaseComponent} from '../base';
 | |
| 
 | |
| import ParamsList from '../ParamsList/params-list';
 | |
| import ResponsesList from '../ResponsesList/responses-list';
 | |
| import ResponsesSamples from '../ResponsesSamples/responses-samples';
 | |
| import SchemaSample from '../SchemaSample/schema-sample';
 | |
| import RequestSamples from '../RequestSamples/request-samples';
 | |
| 
 | |
| @RedocComponent({
 | |
|   selector: 'method',
 | |
|   templateUrl: './lib/components/Method/method.html',
 | |
|   styleUrls: ['./lib/components/Method/method.css'],
 | |
|   directives: [ParamsList, ResponsesList, ResponsesSamples, SchemaSample, RequestSamples],
 | |
|   inputs: ['tag']
 | |
| })
 | |
| export default class Method extends BaseComponent {
 | |
|   constructor(schemaMgr) {
 | |
|     super(schemaMgr);
 | |
|   }
 | |
| 
 | |
|   prepareModel() {
 | |
|     this.data = {};
 | |
|     this.data.apiUrl = this.schemaMgr.apiUrl;
 | |
|     this.data.httpMethod = JsonPointer.baseName(this.pointer);
 | |
|     this.data.path = JsonPointer.baseName(this.pointer, 2);
 | |
|     this.data.methodInfo = this.componentSchema;
 | |
|     this.data.methodInfo.tags = this.filterMainTags(this.data.methodInfo.tags);
 | |
|     this.data.bodyParam = this.findBodyParam();
 | |
|     if (this.componentSchema.operationId) {
 | |
|       this.data.methodAnchor = 'operation/' + this.componentSchema.operationId;
 | |
|     } else {
 | |
|       this.data.methodAnchor = 'tag/' + this.tag + this.pointer;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   filterMainTags(tags) {
 | |
|     var tagsMap = this.schemaMgr.getTagsMap();
 | |
|     if (!tags) return [];
 | |
|     return tags.filter(tag => tagsMap[tag] && tagsMap[tag]['x-traitTag']);
 | |
|   }
 | |
| 
 | |
|   findBodyParam() {
 | |
|     let pathParams = this.schemaMgr.getMethodParams(this.pointer, true);
 | |
|     let bodyParam = pathParams.find(param => param.in === 'body');
 | |
|     return bodyParam;
 | |
|   }
 | |
| }
 |