[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | import { useRef } from 'react';
|
---|
| 4 | import { SnackbarProvider as NotistackProvider, closeSnackbar } from 'notistack';
|
---|
| 5 | // @mui
|
---|
| 6 | import Collapse from '@mui/material/Collapse';
|
---|
| 7 | import IconButton from '@mui/material/IconButton';
|
---|
| 8 | //
|
---|
| 9 | import Iconify from '../iconify';
|
---|
| 10 | import { useSettingsContext } from '../settings';
|
---|
| 11 | //
|
---|
| 12 | import { StyledIcon, StyledNotistack } from './styles';
|
---|
| 13 |
|
---|
| 14 | // ----------------------------------------------------------------------
|
---|
| 15 |
|
---|
| 16 | type Props = {
|
---|
| 17 | children: React.ReactNode;
|
---|
| 18 | };
|
---|
| 19 |
|
---|
| 20 | export default function SnackbarProvider({ children }: Props) {
|
---|
| 21 | const settings = useSettingsContext();
|
---|
| 22 |
|
---|
| 23 | const isRTL = settings.themeDirection === 'rtl';
|
---|
| 24 |
|
---|
| 25 | const notistackRef = useRef<any>(null);
|
---|
| 26 |
|
---|
| 27 | return (
|
---|
| 28 | <NotistackProvider
|
---|
| 29 | ref={notistackRef}
|
---|
| 30 | maxSnack={5}
|
---|
| 31 | preventDuplicate
|
---|
| 32 | autoHideDuration={3000}
|
---|
| 33 | TransitionComponent={isRTL ? Collapse : undefined}
|
---|
| 34 | variant="success" // Set default variant
|
---|
| 35 | anchorOrigin={{ vertical: 'top', horizontal: 'right' }}
|
---|
| 36 | iconVariant={{
|
---|
| 37 | info: (
|
---|
| 38 | <StyledIcon color="info">
|
---|
| 39 | <Iconify icon="eva:info-fill" width={24} />
|
---|
| 40 | </StyledIcon>
|
---|
| 41 | ),
|
---|
| 42 | success: (
|
---|
| 43 | <StyledIcon color="success">
|
---|
| 44 | <Iconify icon="eva:checkmark-circle-2-fill" width={24} />
|
---|
| 45 | </StyledIcon>
|
---|
| 46 | ),
|
---|
| 47 | warning: (
|
---|
| 48 | <StyledIcon color="warning">
|
---|
| 49 | <Iconify icon="eva:alert-triangle-fill" width={24} />
|
---|
| 50 | </StyledIcon>
|
---|
| 51 | ),
|
---|
| 52 | error: (
|
---|
| 53 | <StyledIcon color="error">
|
---|
| 54 | <Iconify icon="solar:danger-bold" width={24} />
|
---|
| 55 | </StyledIcon>
|
---|
| 56 | ),
|
---|
| 57 | }}
|
---|
| 58 | Components={{
|
---|
| 59 | default: StyledNotistack,
|
---|
| 60 | info: StyledNotistack,
|
---|
| 61 | success: StyledNotistack,
|
---|
| 62 | warning: StyledNotistack,
|
---|
| 63 | error: StyledNotistack,
|
---|
| 64 | }}
|
---|
| 65 | // with close as default
|
---|
| 66 | action={(snackbarId) => (
|
---|
| 67 | <IconButton size="small" onClick={() => closeSnackbar(snackbarId)} sx={{ p: 0.5 }}>
|
---|
| 68 | <Iconify width={16} icon="mingcute:close-line" />
|
---|
| 69 | </IconButton>
|
---|
| 70 | )}
|
---|
| 71 | >
|
---|
| 72 | {children}
|
---|
| 73 | </NotistackProvider>
|
---|
| 74 | );
|
---|
| 75 | }
|
---|