mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 15:03:30 +00:00
[web] Bootstrap 5 notifications GitOrigin-RevId: 4409f1b76923d96f1b8297beb35a383d9aa7ec8c
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import Notification from '@/shared/components/notification'
|
|
import { Alert, AlertProps } from 'react-bootstrap'
|
|
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
|
|
import classnames from 'classnames'
|
|
|
|
type NotificationWrapperProps = React.ComponentProps<typeof Notification> & {
|
|
bs3Props?: {
|
|
icon: React.ReactElement
|
|
className?: string
|
|
}
|
|
}
|
|
|
|
function NotificationWrapper(props: NotificationWrapperProps) {
|
|
const { bs3Props, ...notificationProps } = props
|
|
|
|
const alertProps = {
|
|
// Map `error` to `danger`
|
|
bsStyle:
|
|
notificationProps.type === 'error' ? 'danger' : notificationProps.type,
|
|
className: classnames(notificationProps.className, bs3Props?.className),
|
|
onDismiss: notificationProps.onDismiss,
|
|
} as const satisfies AlertProps
|
|
|
|
return (
|
|
<BootstrapVersionSwitcher
|
|
bs3={
|
|
<Alert {...alertProps}>
|
|
{bs3Props?.icon}
|
|
{bs3Props?.icon && ' '}
|
|
{notificationProps.content}
|
|
</Alert>
|
|
}
|
|
bs5={
|
|
<div className="notification-list">
|
|
<Notification {...notificationProps} />
|
|
</div>
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default NotificationWrapper
|