Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
ShMcK merged 1 commit intomasterfromfeature/dont-flash-loading
Mar 30, 2020
Merged
Changes fromall 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 deletionsweb-app/src/containers/Loading/index.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff 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

[8]ページ先頭

©2009-2025 Movatter.jp