mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Component, ElementRef, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
import { Observable } from 'rxjs';
|
|
|
|
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
|
|
const GraphiQL = require('graphiql');
|
|
|
|
/* tslint:disable:use-view-encapsulation */
|
|
|
|
import {
|
|
AppsState,
|
|
GraphQlService,
|
|
LocalStoreService
|
|
} from '@app/shared';
|
|
|
|
@Component({
|
|
selector: 'sqx-graphql-page',
|
|
styleUrls: ['./graphql-page.component.scss'],
|
|
templateUrl: './graphql-page.component.html',
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class GraphQLPageComponent implements OnInit {
|
|
@ViewChild('graphiQLContainer')
|
|
public graphiQLContainer: ElementRef;
|
|
|
|
constructor(
|
|
public readonly appsState: AppsState,
|
|
private readonly graphQlService: GraphQlService,
|
|
private readonly localStoreService: LocalStoreService
|
|
) {
|
|
}
|
|
|
|
public ngOnInit() {
|
|
ReactDOM.render(
|
|
React.createElement(GraphiQL, {
|
|
fetcher: (params: any) => {
|
|
return this.request(params);
|
|
},
|
|
onEditQuery: (query: string) => {
|
|
this.localStoreService.set('graphiQlQuery', query);
|
|
},
|
|
query: this.localStoreService.get('graphiQlQuery')
|
|
}),
|
|
this.graphiQLContainer.nativeElement
|
|
);
|
|
}
|
|
|
|
private request(params: any) {
|
|
return this.graphQlService.query(this.appsState.appName, params).catch(response => Observable.of(response.error)).toPromise();
|
|
}
|
|
}
|
|
|
|
|