chore: remove the bonus page

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-09-06 11:01:55 +02:00
parent 87516c49f7
commit 45b6d35c1b
@@ -1,83 +0,0 @@
/*
* Copyright 2020 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// @ts-check
// NOTE: This file is intentionally .jsx, so that there is one file in this repo where we make sure .jsx files work.
import React from 'react';
import { useApi } from '@backstage/core-plugin-api';
import useAsync from 'react-use/lib/useAsync';
import 'graphiql/graphiql.css';
import { graphQlBrowseApiRef } from '../../lib/api';
import { GraphiQLBrowser } from '../GraphiQLBrowser';
import { Typography } from '@material-ui/core';
import {
Content,
Header,
HeaderLabel,
Page,
Progress,
} from '@backstage/core-components';
/** @public */
export const GraphiQLPage = () => {
const graphQlBrowseApi = useApi(graphQlBrowseApiRef);
const endpoints = useAsync(() => graphQlBrowseApi.getEndpoints());
/** @type JSX.Element */
let content;
if (endpoints.loading) {
content = (
<Content>
<Progress />
</Content>
);
} else if (endpoints.error) {
content = (
<Content>
<Typography variant="h4" color="error">
{/* TODO: provide a proper error component */}
Failed to load GraphQL endpoints, {String(endpoints.error)}
</Typography>
</Content>
);
} else if (!endpoints.value) {
content = (
<Content>
<Typography variant="h4" color="error">
No GraphQL endpoints available
</Typography>
</Content>
);
} else {
content = (
<Content noPadding>
<GraphiQLBrowser endpoints={endpoints.value} />
</Content>
);
}
return (
<Page themeId="tool">
<Header title="GraphiQL">
<HeaderLabel label="Owner" value="Spotify" />
<HeaderLabel label="Lifecycle" value="Alpha" />
</Header>
{content}
</Page>
);
};