storybook/docs/snippets/react/document-screen-with-graphql.js.mdx
2021-09-03 23:31:04 +01:00

60 lines
1.0 KiB
Plaintext

```js
// YourPage.js | YourPage.jsx | YourPage.ts | YourPage.tsx
import React from 'react';
import { useQuery, gql } from '@apollo/client';
import { PageLayout } from './PageLayout';
import { DocumentHeader } from './DocumentHeader';
import { DocumentList } from './DocumentList';
const AllInfoQuery = gql`
query AllInfo {
user {
userID
name
}
document {
id
userID
title
brief
status
}
subdocuments {
id
userID
title
content
status
}
}
`;
function useFetchInfo() {
const { loading, error, data } = useQuery(AllInfoQuery);
return { loading, error, data };
}
export function DocumentScreen() {
const { loading, error, data } = useFetchInfo();
if (loading) {
return <p>Loading...</p>;
}
if (error) {
return <p>There was an error fetching the data!</p>;
}
return (
<PageLayout user={data.user}>
<DocumentHeader document={data.document} />
<DocumentList documents={data.subdocuments} />
</PageLayout>
);
}
```