-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathContextMenus.tsx
More file actions
141 lines (131 loc) · 3.42 KB
/
ContextMenus.tsx
File metadata and controls
141 lines (131 loc) · 3.42 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
135
136
137
138
139
140
141
/* eslint no-alert: "off" */
/* eslint no-console: "off" */
import React, { Component } from 'react';
import {
Button,
ContextActions,
KEY,
MODIFIER,
type ResolvableContextAction,
Shortcut,
} from '@deephaven/components';
import {
vsBell,
dhFilePrint,
vsQuestion,
type IconDefinition,
} from '@deephaven/icons';
import SampleSection from './SampleSection';
interface ContextMenuItem {
title: string;
icon?: IconDefinition;
action?: () => void;
shortcut?: Shortcut;
group?: number;
order?: number;
disabled?: boolean;
}
class ContextMenus extends Component {
constructor(props: Record<string, never>) {
super(props);
this.makeContextMenuItems = this.makeContextMenuItems.bind(this);
}
makeContextMenuItems(iteration?: number): Array<ContextMenuItem> {
const suffix = iteration !== undefined ? ` ${iteration}` : '';
return [
{
title: `Show Alert${suffix}`,
icon: vsBell,
action: () => {
alert(`Alert${suffix}!`);
},
shortcut: new Shortcut({
id: 'STYLEGUIDE.SHOW_ALERT',
name: 'Show Alert',
shortcut: [MODIFIER.CTRL, KEY.A],
macShortcut: [MODIFIER.CMD, KEY.A],
}),
},
{
title: `Log Message${suffix}`,
icon: dhFilePrint,
action: () => {
console.log(`Logging a message${suffix}!`);
},
shortcut: new Shortcut({
id: 'STYLEGUIDE.LOG_MESSAGE',
name: 'Log Message',
shortcut: [MODIFIER.CTRL, KEY.L],
macShortcut: [MODIFIER.CMD, KEY.L],
}),
},
{
title: 'Sub-menu',
actions: () => this.makeContextMenuItems((iteration ?? 0) + 1),
order: 3,
},
].concat(
new Array(10).fill({
title: `Disabled Option${suffix}`,
disabled: true,
order: 2,
})
);
}
render(): React.ReactElement {
const contextActions = this.makeContextMenuItems();
const globalActions: Array<ContextMenuItem> = [
{
title: 'Show Shortcuts',
icon: vsQuestion,
action: () => {
alert('Show keyboard shortcuts!');
},
shortcut: new Shortcut({
id: 'STYLEGUIDE.SHOW_SHORTCUTS',
name: 'Show Shortcuts',
shortcut: [MODIFIER.CTRL, KEY.SLASH],
macShortcut: [MODIFIER.CMD, KEY.SLASH],
}),
group: ContextActions.groups.global,
},
];
const actions = globalActions.concat(contextActions);
const delayedActions: ResolvableContextAction = () =>
new Promise(resolve => {
setTimeout(() => {
resolve(contextActions);
}, 3000);
});
return (
<SampleSection name="context-menus">
<h2 className="ui-title">Context Menu</h2>
<Button
kind="primary"
style={{
cursor: 'default',
marginBottom: '1rem',
marginRight: '1rem',
}}
onClick={() => undefined}
>
Right Click Me
<ContextActions actions={actions} />
</Button>
<Button
kind="tertiary"
style={{
cursor: 'default',
marginBottom: '1rem',
marginRight: '1rem',
}}
onClick={() => undefined}
>
Right Click Me
<ContextActions actions={delayedActions} />
</Button>
</SampleSection>
);
}
}
export default ContextMenus;