mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 17:51:51 +02:00
* Update test for the loading spinner component * Create a story for the loading spinner component * Move role and use CSS for spacing instead * Add a classname prop * Reuse LoadingSpinner * Use OLSpinner instead of Spinner * Use data-testid since status role was moved * Wait for journals to load * Use `isLoading` prop instead and fix the button's height * Use `isLoading` prop instead * Use LoadingSpinner instead and remove spacing * Update test for the loading spinner component * Use `isLoading` prop instead * Add aria-describedby to layout button for processing state * Replace `spinner` to `ol-spinner` * Scope status * Remove redundant `div.loading` --------- Co-authored-by: Antoine Clausse <antoine.clausse@overleaf.com> GitOrigin-RevId: 8f43b991f8f458b2abd5a4661913ac9b972d892a
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import { forwardRef } from 'react'
|
|
import { Button as BS5Button } from 'react-bootstrap'
|
|
import type { ButtonProps } from '@/shared/components/types/button-props'
|
|
import classNames from 'classnames'
|
|
import { useTranslation } from 'react-i18next'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
import OLSpinner from '../ol/ol-spinner'
|
|
|
|
const Button = forwardRef<HTMLButtonElement, ButtonProps>(
|
|
(
|
|
{
|
|
children,
|
|
className,
|
|
leadingIcon,
|
|
isLoading = false,
|
|
loadingLabel,
|
|
trailingIcon,
|
|
variant = 'primary',
|
|
...props
|
|
},
|
|
ref
|
|
) => {
|
|
const { t } = useTranslation()
|
|
|
|
const buttonClassName = classNames('d-inline-grid', className, {
|
|
'button-loading': isLoading,
|
|
})
|
|
|
|
const loadingSpinnerClassName =
|
|
props.size === 'lg' ? 'loading-spinner-large' : 'loading-spinner-small'
|
|
const materialIconClassName =
|
|
props.size === 'lg' ? 'icon-large' : 'icon-small'
|
|
|
|
const leadingIconComponent =
|
|
leadingIcon && typeof leadingIcon === 'string' ? (
|
|
<MaterialIcon type={leadingIcon} className={materialIconClassName} />
|
|
) : (
|
|
leadingIcon
|
|
)
|
|
|
|
const trailingIconComponent =
|
|
trailingIcon && typeof trailingIcon === 'string' ? (
|
|
<MaterialIcon type={trailingIcon} className={materialIconClassName} />
|
|
) : (
|
|
trailingIcon
|
|
)
|
|
|
|
return (
|
|
<BS5Button
|
|
className={buttonClassName}
|
|
variant={variant}
|
|
{...props}
|
|
ref={ref}
|
|
disabled={isLoading || props.disabled}
|
|
data-ol-loading={isLoading}
|
|
role={undefined}
|
|
>
|
|
{isLoading && (
|
|
<span className="spinner-container">
|
|
<OLSpinner size="sm" className={loadingSpinnerClassName} />
|
|
<span className="visually-hidden">
|
|
{loadingLabel ?? t('loading')}
|
|
</span>
|
|
</span>
|
|
)}
|
|
<span className="button-content" aria-hidden={isLoading}>
|
|
{leadingIconComponent}
|
|
{children}
|
|
{trailingIconComponent}
|
|
</span>
|
|
</BS5Button>
|
|
)
|
|
}
|
|
)
|
|
Button.displayName = 'Button'
|
|
|
|
export default Button
|