From 4c6194c4c2b5506f6d482347b0c13033ef17b5c7 Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Fri, 24 Apr 2026 07:43:33 -0700 Subject: initial commit --- source/graphiql/markup.ts | 309 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 309 insertions(+) create mode 100755 source/graphiql/markup.ts (limited to 'source/graphiql/markup.ts') diff --git a/source/graphiql/markup.ts b/source/graphiql/markup.ts new file mode 100755 index 0000000..6bacbf3 --- /dev/null +++ b/source/graphiql/markup.ts @@ -0,0 +1,309 @@ + + + +/*** EXPORT ------------------------------------------- ***/ + +export const getLoadingMarkup = () => ({ + container: ` + + +
+ + +
Loading + GraphQL Playground +
+
+ `, + script: ` + const loadingWrapper = document.getElementById("loading-wrapper"); + + if (loadingWrapper) + loadingWrapper.classList.add("fadeOut"); + ` +}); -- cgit v1.2.3