Refactor abcframe

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-03-28 21:38:03 +02:00
parent 76cae637e6
commit ed6ab1b1fe
9 changed files with 2687 additions and 94 deletions

View file

@ -0,0 +1,45 @@
/*
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import React, { Fragment } from 'react'
import { Trans, useTranslation } from 'react-i18next'
import { WaitSpinner } from './wait-spinner/wait-spinner'
import { Alert } from 'react-bootstrap'
export interface AsyncLoadingBoundaryProps {
loading: boolean
error?: boolean
componentName: string
}
/**
* Indicates that a component currently loading or an error occurred.
* It's meant to be used in combination with useAsync from react-use.
*
* @param loading Indicates that the component is currently loading. Setting this will show a spinner instead of the children.
* @param error Indicates that an error occurred during the loading process. Setting this to any non-null value will show an error message instead of the children.
* @param componentName The name of the component that is currently loading. It will be shown in the error message.
* @param children The child {@link ReactElement elements} that are only shown if the component isn't in loading or error state
*/
export const AsyncLoadingBoundary: React.FC<AsyncLoadingBoundaryProps> = ({
loading,
error,
componentName,
children
}) => {
useTranslation()
if (error === true) {
return (
<Alert variant={'danger'}>
<Trans i18nKey={'common.errorWhileLoading'} values={{ name: componentName }} />
</Alert>
)
} else if (loading) {
return <WaitSpinner />
} else {
return <Fragment>{children}</Fragment>
}
}