mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-07 09:55:43 -04:00
32 lines
999 B
TypeScript
32 lines
999 B
TypeScript
/*
|
|
SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import React from 'react'
|
|
import { Alert } from 'react-bootstrap'
|
|
import { HedgeDocLogo, HedgeDocLogoSize } from '../common/hedge-doc-logo/hedge-doc-logo'
|
|
import { ShowIf } from '../common/show-if/show-if'
|
|
|
|
export interface LoadingScreenProps {
|
|
failedTitle?: string
|
|
}
|
|
|
|
export const LoadingScreen: React.FC<LoadingScreenProps> = ({ failedTitle }) => {
|
|
return (
|
|
<div className="loader middle text-light overflow-hidden">
|
|
<div className="mb-3 text-light">
|
|
<span className={`d-block ${failedTitle ? 'animation-shake' : 'animation-jump'}`}>
|
|
<HedgeDocLogo size={HedgeDocLogoSize.BIG}/>
|
|
</span>
|
|
</div>
|
|
<ShowIf condition={!!failedTitle}>
|
|
<Alert variant={'danger'}>
|
|
The task '{failedTitle}' failed.<br/>
|
|
For further information look into the browser console.
|
|
</Alert>
|
|
</ShowIf>
|
|
</div>
|
|
)
|
|
}
|