mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-20 08:44:42 +00:00
43 lines
1.2 KiB
TypeScript
43 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
|