source: src/components/snackbar/snackbar-provider.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 2.1 KB
Line 
1'use client';
2
3import { useRef } from 'react';
4import { SnackbarProvider as NotistackProvider, closeSnackbar } from 'notistack';
5// @mui
6import Collapse from '@mui/material/Collapse';
7import IconButton from '@mui/material/IconButton';
8//
9import Iconify from '../iconify';
10import { useSettingsContext } from '../settings';
11//
12import { StyledIcon, StyledNotistack } from './styles';
13
14// ----------------------------------------------------------------------
15
16type Props = {
17 children: React.ReactNode;
18};
19
20export 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}
Note: See TracBrowser for help on using the repository browser.