63 lines
1.8 KiB
Dart
63 lines
1.8 KiB
Dart
|
import 'dart:io';
|
||
|
|
||
|
import 'package:angel_framework/angel_framework.dart';
|
||
|
|
||
|
RequestHandler graphiql({String graphqlEndpoint: '/graphql'}) {
|
||
|
return (req, res) {
|
||
|
res
|
||
|
..contentType = new ContentType('text', 'html')
|
||
|
..write(renderGraphiql(graphqlEndpoint: graphqlEndpoint))
|
||
|
..end();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
String renderGraphiql({String graphqlEndpoint: '/graphql'}) {
|
||
|
return '''
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Angel GraphQL</title>
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/graphiql/0.11.11/graphiql.min.css">
|
||
|
<style>
|
||
|
html, body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
html, body, #app {
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.2.0/umd/react.production.min.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.2.0/umd/react-dom.production.min.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/graphiql/0.11.11/graphiql.min.js"></script>
|
||
|
<script>
|
||
|
window.onload = function() {
|
||
|
function graphQLFetcher(graphQLParams) {
|
||
|
return fetch('$graphqlEndpoint', {
|
||
|
method: 'post',
|
||
|
headers: { 'Content-Type': 'application/json' },
|
||
|
body: JSON.stringify(graphQLParams)
|
||
|
}).then(function(response) {
|
||
|
return response.json();
|
||
|
});
|
||
|
}
|
||
|
ReactDOM.render(
|
||
|
React.createElement(
|
||
|
GraphiQL,
|
||
|
{fetcher: graphQLFetcher}
|
||
|
),
|
||
|
document.getElementById('app')
|
||
|
);
|
||
|
};
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
'''
|
||
|
.trim();
|
||
|
}
|