1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
function graphQLFetcher(graphQLParams) {
return fetch(
window.graphqlEndpoint,
{
method: 'post',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(graphQLParams),
credentials: 'omit',
},
).then(function (response) {
return response.json().catch(function () {
return response.text();
});
});
}
ReactDOM.render(
React.createElement(GraphiQL, {
fetcher: graphQLFetcher,
defaultVariableEditorOpen: false,
defaultQuery: '#\n' +
'# Welcome to the packages.gentoo.org GraphQL API Explorer\n' +
'#\n' +
'# Powered by GraphiQL, an in-browser tool for exploring GraphQL APIs, as well as \n' +
'# writing, validating, and testing GraphQL queries.\n' +
'#\n' +
'#\n' +
'# Please click on "Examples & History" above to view some exemplary queries,\n' +
'# or run the below query to get started.\n' +
'#\n' +
'{\n' +
' packages(Name: "gentoo-sources"){\n' +
' Atom,\n' +
' Maintainers {\n' +
' Name\n' +
' }\n' +
' }\n' +
'}',
}),
document.getElementById('graphiql'),
);
/*
* Add gentoo Logo
*/
var gentooLogo= "<img src=\"https://www.gentoo.org/assets/img/logo/gentoo-signet.svg\" style=\"height: 30px;vertical-align:middle;\">";
document.getElementsByClassName("title")[0].innerHTML = gentooLogo;
/*
* Add examples
*/
document.getElementsByClassName("history-title")[0].innerHTML = "Examples & History";
document.getElementsByClassName("toolbar-button")[3].innerHTML = "Examples & History";
var favorites = window.localStorage.getItem("graphiql:favorites");
if(favorites == null){
window.localStorage.setItem("graphiql:favorites", '{"favorites":[{"query":"\\n{\\n packages(Name: \\"gentoo-sources\\"){\\n Atom,\\n Maintainers {\\n Name\\n }\\n }\\n}","variables":null,"label":"Search Packages By Name","favorite":true},{"query":"\\n{\\n addedPackages(Limit: 25){\\n Atom\\n }\\n}","variables":null,"label":"Added packages","favorite":true},{"query":"\\n{\\n stabilizedVersions(Limit: 25){\\n Atom,\\n Version\\n }\\n}","variables":null,"label":"Stabilized Versions","favorite":true},{"query":"\\n{\\n versions(Atom: \\"x11-wm/xmonad\\"){\\n Version\\n }\\n}","variables":null,"label":"Versions By Atom","favorite":true},{"query":"\\n{\\n useflags(Name: \\"doc\\", Scope: \\"local\\"){\\n Id\\n }\\n}","variables":null,"label":"Useflags By Name and Scope","favorite":true},{"query":"\\n{\\n pkgCheckResults(Atom: \\"x11-wm/xmonad\\"){\\n Class\\n Message\\n }\\n}","variables":null,"label":"pkgcheck Warnings by Atom","favorite":true},{"query":"#\\n# Welcome to the packages.gentoo.org GraphQL API Explorer\\n#\\n# Powered by GraphiQL, an in-browser tool for exploring GraphQL APIs, as well as \\n# writing, validating, and testing GraphQL queries.\\n#\\n#\\n# Please click on \\"Examples & History\\" above to view some exemplary queries,\\n# or run the below query to get started.\\n#\\n{\\n lastCommitTime\\n}","variables":null,"label":"Last Update","favorite":true},{"query":"\\n{\\n category(Name: \\"x11-wm\\"){\\n Packages{\\n Name\\n }\\n }\\n}","variables":null,"label":"Packages in Category v1","favorite":true},{"query":"\\n{\\n packages(Category: \\"x11-wm\\"){\\n Name\\n }\\n}","variables":null,"label":"Packages in Category v2","favorite":true},{"query":"\\n{\\n masks(AuthorEmail: \\"larry@gentoo.org\\"){\\n Versions\\n }\\n}","variables":null,"label":"Masked Versions by Author Email","favorite":true},{"query":"\\n{\\n outdatedPackages(Atom: \\"x11-wm/xmonad-contrib\\"){\\n GentooVersion\\n NewestVersion\\n }\\n}","variables":null,"label":"Outdated Package by Atom","favorite":true}]}');
window.localStorage.setItem("graphiql:queries", '{"queries":[]}');
window.localStorage.setItem("graphiql:query", '## Welcome to the packages.gentoo.org GraphQL API Explorer## Powered by GraphiQL, an in-browser tool for exploring GraphQL APIs, as well as # writing, validating, and testing GraphQL queries.### Please click on "Examples & History" above to view some exemplary queries,# or run the below query to get started.#{ packages(Name: "gentoo-sources"){ Atom, Maintainers { Name } }}');
window.localStorage.setItem("graphiql:editorFlex", '1');
window.localStorage.setItem("graphiql:docExplorerWidth", '350');
window.localStorage.setItem("graphiql:variableEditorHeight", '200');
window.localStorage.setItem("graphiql:historyPaneOpen", 'true');
location.reload();
}
|