redoc/lib/components/RequestSamples/request-samples.ts

46 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-01-31 20:37:51 +03:00
'use strict';
2016-08-22 12:12:13 +03:00
import { Component, ViewChildren, QueryList, EventEmitter, Input,
2016-08-28 21:46:10 +03:00
ChangeDetectionStrategy, OnInit } from '@angular/core';
2016-08-22 12:12:13 +03:00
import { BaseComponent, SpecManager } from '../base';
2016-01-31 20:37:51 +03:00
import JsonPointer from '../../utils/JsonPointer';
2016-08-22 12:12:13 +03:00
import { Tabs } from '../../shared/components/index';
2016-05-06 00:48:41 +03:00
import { RedocEventsService } from '../../services/index';
2016-02-03 17:47:20 +03:00
2016-08-22 12:12:13 +03:00
@Component({
2016-01-31 20:37:51 +03:00
selector: 'request-samples',
templateUrl: './request-samples.html',
styleUrls: ['./request-samples.css'],
2016-08-22 12:12:13 +03:00
changeDetection: ChangeDetectionStrategy.OnPush
2016-01-31 20:37:51 +03:00
})
2016-08-28 21:46:10 +03:00
export class RequestSamples extends BaseComponent implements OnInit {
2016-08-22 12:12:13 +03:00
@Input() pointer:string;
@Input() schemaPointer:string;
@ViewChildren(Tabs) childQuery:QueryList<Tabs>;
childTabs: Tabs;
selectedLang: EventEmitter<any>;
samples: Array<any>;
constructor(specMgr:SpecManager, public events:RedocEventsService) {
super(specMgr);
2016-06-06 19:32:20 +03:00
2016-05-18 16:59:54 +03:00
this.selectedLang = this.events.samplesLanguageChanged;
2016-05-06 00:48:41 +03:00
}
2016-02-03 17:47:20 +03:00
changeLangNotify(lang) {
2016-05-06 00:48:41 +03:00
this.events.samplesLanguageChanged.next(lang);
2016-02-03 17:47:20 +03:00
}
init() {
this.schemaPointer = JsonPointer.join(this.schemaPointer, 'schema');;
this.samples = this.componentSchema['x-code-samples'] || [];
2016-01-31 20:37:51 +03:00
}
2016-08-28 21:46:10 +03:00
ngOnInit() {
this.preinit();
}
2016-01-31 20:37:51 +03:00
}