-
Notifications
You must be signed in to change notification settings - Fork 245
/
Copy pathindex.tsx
30 lines (27 loc) · 865 Bytes
/
index.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
import React from 'react';
import { PluginSlot } from '@openedx/frontend-plugin-framework';
import { UpgradeNotificationState } from '../../courseware/course/new-sidebar/SidebarContext';
export const NotificationWidgetSlot = ({
courseId,
notificationCurrentState,
setNotificationCurrentState,
toggleSidebar,
} : NotificationWidgetSlotProps) => (
<PluginSlot
id="org.openedx.frontend.learning.notification_widget.v1"
idAliases={['notification_widget_slot']}
pluginProps={{
courseId,
model: 'coursewareMeta',
notificationCurrentState,
setNotificationCurrentState,
toggleSidebar,
}}
/>
);
interface NotificationWidgetSlotProps {
courseId: string;
notificationCurrentState: UpgradeNotificationState;
setNotificationCurrentState: React.Dispatch<UpgradeNotificationState>;
toggleSidebar: () => void;
}