Skip to content

dont flash loader #173

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions web-app/src/containers/Loading/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Message from '../../components/Message'

interface Props {
text: string
context: T.MachineContext
context?: T.MachineContext
}

const styles = {
Expand All @@ -16,19 +16,36 @@ const styles = {
flexDirection: 'column' as 'column',
alignItems: 'center',
justifyContent: 'center',
width: '100%',
height: '100%',
},
}

const LoadingPage = ({ text, context }: Props) => {
const { error } = context
if (error) {
const [showLoading, setShowHiding] = React.useState(false)

React.useEffect(() => {
// wait some time before showing loading indicator
const timeout = setTimeout(() => {
setShowHiding(true)
}, 600)
return () => {
clearTimeout(timeout)
}
}, [])

if (context && context.error) {
return (
<div css={styles.page}>
<Message type="error" title={error.title} content={error.description} />
<Message type="error" title={context.error.title} content={context.error.description} />
</div>
)
}

// don't flash loader
if (!showLoading) {
return null
}

return (
<div css={styles.page}>
<Loading text={text} />
Expand Down