-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathActionsMenu.tsx
More file actions
134 lines (125 loc) · 3.52 KB
/
ActionsMenu.tsx
File metadata and controls
134 lines (125 loc) · 3.52 KB
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
133
134
import type { ComponentProps } from 'react';
import { useState } from 'react';
import {
Button,
ContextMenu,
ContextMenuButton,
IconBolt,
useContextMenuContext,
useDialogIsOpen,
useDialogOnNearestManager,
} from 'stream-chat-react';
import {
NotificationPromptDialog,
notificationPromptDialogId,
} from './NotificationPromptDialog';
import {
AttachmentPromptDialog,
attachmentPromptDialogId,
} from './AttachmentPromptDialog';
const actionsMenuDialogId = 'app-actions-menu';
const ActionsMenuButton = ({
iconOnly,
isOpen,
onClick,
refCallback,
}: {
iconOnly: boolean;
isOpen: boolean;
onClick: ComponentProps<'button'>['onClick'];
refCallback: (element: HTMLButtonElement | null) => void;
}) => (
<div className='str-chat__chat-view__selector-button-container'>
<Button
appearance='ghost'
aria-expanded={isOpen}
aria-haspopup='true'
aria-label='Open actions'
className='str-chat__chat-view__selector-button app__settings-group_button'
onClick={onClick}
ref={refCallback}
variant='secondary'
>
<IconBolt />
{!iconOnly && (
<div className='str-chat__chat-view__selector-button-text'>Actions</div>
)}
</Button>
{iconOnly && (
<div
aria-hidden='true'
className='str-chat__chat-view__selector-button-tooltip str-chat__tooltip'
>
Actions
</div>
)}
</div>
);
export const ActionsMenu = ({ iconOnly = true }: { iconOnly?: boolean }) => (
<ActionsMenuInner iconOnly={iconOnly} />
);
function TriggerNotificationAction({ onTrigger }: { onTrigger: () => void }) {
const { closeMenu } = useContextMenuContext();
return (
<ContextMenuButton
label='Trigger Notification'
onClick={() => {
closeMenu();
onTrigger();
}}
/>
);
}
function TriggerAttachmentAction({ onTrigger }: { onTrigger: () => void }) {
const { closeMenu } = useContextMenuContext();
return (
<ContextMenuButton
label='Message Composer'
onClick={() => {
closeMenu();
onTrigger();
}}
/>
);
}
const ActionsMenuInner = ({ iconOnly }: { iconOnly: boolean }) => {
const [menuButtonElement, setMenuButtonElement] = useState<HTMLButtonElement | null>(
null,
);
const { dialog: actionsMenuDialog, dialogManager } = useDialogOnNearestManager({
id: actionsMenuDialogId,
});
const { dialog: notificationDialog } = useDialogOnNearestManager({
id: notificationPromptDialogId,
});
const { dialog: attachmentDialog } = useDialogOnNearestManager({
id: attachmentPromptDialogId,
});
const menuIsOpen = useDialogIsOpen(actionsMenuDialogId, dialogManager?.id);
return (
<div className='app__actions-menu-anchor'>
<ActionsMenuButton
iconOnly={iconOnly}
isOpen={menuIsOpen}
onClick={() => actionsMenuDialog.toggle()}
refCallback={setMenuButtonElement}
/>
<ContextMenu
backLabel='Back'
className='app__actions-menu'
dialogManagerId={dialogManager?.id}
id={actionsMenuDialogId}
onClose={actionsMenuDialog.close}
placement='right-start'
referenceElement={menuButtonElement}
tabIndex={-1}
trapFocus
>
<TriggerNotificationAction onTrigger={notificationDialog.open} />
<TriggerAttachmentAction onTrigger={attachmentDialog.open} />
</ContextMenu>
<NotificationPromptDialog referenceElement={menuButtonElement} />
<AttachmentPromptDialog referenceElement={menuButtonElement} />
</div>
);
};