Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Last active March 27, 2018 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gc-codesnippets/93e8d1739eb01306f5a1e6908abd53cc to your computer and use it in GitHub Desktop.
Save gc-codesnippets/93e8d1739eb01306f5a1e6908abd53cc to your computer and use it in GitHub Desktop.
<Query query={DRAFTS_QUERY}>
{({ data, loading, error }) => {
if (loading) {
return (
<div className="flex w-100 h-100 items-center justify-center pt7">
<div>Loading ...</div>
</div>
)
}
if (error) {
return (
<div className="flex w-100 h-100 items-center justify-center pt7">
<div>An unexpected error occured.</div>
</div>
)
}
return (
<Fragment>
<div className="flex justify-between items-center">
<h1>Drafts</h1>
</div>
{data.drafts &&
data.drafts.map(draft => (
<Post
key={draft.id}
post={draft}
isDraft={!draft.isPublished}
/>
))}
{this.props.children}
</Fragment>
)
}}
</Query>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment