-
Notifications
You must be signed in to change notification settings - Fork 1
/
NotificationProvider.tsx
132 lines (122 loc) · 2.86 KB
/
NotificationProvider.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable react-refresh/only-export-components */
import React, { ReactNode, useState } from 'react';
import '../index.scss';
import UserNotification from '../components/UserNotification/UserNotification';
import ChoiceNotification from '../components/ChoiceNotification/ChoiceNotification';
import { MyAudio, usePlayAudio } from './AudioProvider';
const NotificationContext = React.createContext({
showNotification: (
_heading: string,
_info: string,
_buttonText?: string
) => {},
showChoice: (
_heading: string,
_info: string,
_onAccept: () => void,
_onReject: () => void,
_acceptText?: string,
_rejectText?: string
) => {},
});
/**
* Hook to get the showNotification function
* @returns A function to show a notification to the user
*/
export function useShowNotification() {
const context = React.useContext(NotificationContext);
if (!context) {
throw new Error(
'useShowNotification must be used within a NotificationProvider'
);
}
return context.showNotification;
}
/**
* Hook to get the showChoice function
* @returns A function to show a choice notification to the user
*/
export function useShowChoiceNotification() {
const context = React.useContext(NotificationContext);
if (!context) {
throw new Error(
'useShowChoiceNotification must be used within a NotificationProvider'
);
}
return context.showChoice;
}
interface Props {
children: ReactNode;
}
/**
* The notification provider
* @param children The children of the component
*/
export function NotificationProvider({ children }: Props) {
const [element, setElement] = useState<JSX.Element>();
const [visible, setVisible] = useState(false);
const playSound = usePlayAudio();
// Display the notification
const showNotification = (
pHeading: string,
pInfo: string,
btnText = 'Close'
) => {
setElement(
<UserNotification
onClose={close}
heading={pHeading}
info={pInfo}
btnText={btnText}
></UserNotification>
);
setVisible(true);
playSound(MyAudio.POP);
};
// Display a choice dialog
const showChoice = (
pHeading: string,
pInfo: string,
pOnAccept: () => void,
pOnReject: () => void,
pAcceptText = 'Yes',
pRejectText = 'No'
) => {
setElement(
<ChoiceNotification
heading={pHeading}
info={pInfo}
onAccept={() => {
pOnAccept();
close();
}}
onReject={() => {
pOnReject();
close();
}}
acceptText={pAcceptText}
rejectText={pRejectText}
></ChoiceNotification>
);
setVisible(true);
playSound(MyAudio.POP);
};
// Close the notification
const close = () => {
setVisible(false);
};
return (
<>
<NotificationContext.Provider
value={{
showNotification: showNotification,
showChoice: showChoice,
}}
>
{children}
</NotificationContext.Provider>
<>{visible && element}</>
</>
);
}