Last active
December 14, 2020 05:51
-
-
Save nksaraf/d503c5b47239149ccb9f62ffd9263072 to your computer and use it in GitHub Desktop.
magiql-ide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Options { | |
uri: string; | |
cdn?: string; | |
version?: string; | |
} | |
export declare function renderGraphiQL(props: Options): string; | |
export default function renderGraphiQL(props: Options): string; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import manifest from "@magiql/ide/dist/_assets/manifest.json"; | |
import pkg from "@magiql/ide/package.json"; | |
const html = ({ uri, cdn = "https://unpkg.com", version = pkg.version }) => ` | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta | |
name="viewport" | |
content="width=device-width, initial-scale=1, shrink-to-fit=no" | |
/> | |
<meta name="theme-color" content="#000000" /> | |
<style> | |
#MAGIQL_IDE_CONFIG { | |
display: none; | |
} | |
</style> | |
<link rel="icon" href="${cdn}/@magiql/ide/dist/favicon.ico" /> | |
</head> | |
<body> | |
<noscript> You need to enable JavaScript to run this app. </noscript> | |
<div id="root"></div> | |
<div id="MAGIQL_IDE_CONFIG"></div> | |
<script> | |
console.log(window.location); | |
document.getElementById('MAGIQL_IDE_CONFIG').innerHTML = JSON.stringify({ uri: ${uri.startsWith('/') ? `window.location.origin + "${uri}"` : `"${uri}"`} }); | |
</script> | |
<script type="module" src="${cdn}/@magiql/ide@${version}/dist/_assets/${manifest["index.js"]}"></script> | |
</body> | |
</html> | |
`; | |
export function renderGraphiQL(props) { | |
return html(props); | |
} | |
export default renderGraphiQL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const manifest = require("@magiql/ide/dist/_assets/manifest.json"); | |
const pkg = require("@magiql/ide/package.json"); | |
const html = ({ uri, cdn = "https://unpkg.com", version = pkg.version }) => ` | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta | |
name="viewport" | |
content="width=device-width, initial-scale=1, shrink-to-fit=no" | |
/> | |
<meta name="theme-color" content="#000000" /> | |
<style> | |
#MAGIQL_IDE_CONFIG { | |
display: none; | |
} | |
</style> | |
<link rel="icon" href="${cdn}/@magiql/ide/dist/favicon.ico" /> | |
</head> | |
<body> | |
<noscript> You need to enable JavaScript to run this app. </noscript> | |
<div id="root"></div> | |
<div id="MAGIQL_IDE_CONFIG"></div> | |
<script> | |
console.log(window.location); | |
document.getElementById('MAGIQL_IDE_CONFIG').innerHTML = JSON.stringify({ uri: ${uri.startsWith('/') ? `window.location.origin + "${uri}"` : `"${uri}"`} }); | |
</script> | |
<script type="module" src="${cdn}/@magiql/ide@${version}/dist/_assets/${manifest["index.js"]}"></script> | |
</body> | |
</html> | |
`; | |
function renderGraphiQL(props) { | |
return html(props); | |
} | |
module.exports = { | |
default: renderGraphiQL, | |
renderGraphiQL | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "graphiql", | |
"dependencies": { | |
"@magiql/ide": "latest" | |
}, | |
"version": "0.0.2", | |
"main": "index.js", | |
"module": "index.esm.js", | |
"types": "index.d.ts" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment