@radix-ui/react-context-menu 0.1.7-rc.21 → 0.1.7-rc.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +24 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +75 -64
- package/dist/index.js.map +1 -1
- package/dist/index.module.js +78 -67
- package/dist/index.module.js.map +1 -1
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -4,11 +4,16 @@ import { Primitive } from "@radix-ui/react-primitive";
|
|
|
4
4
|
import * as MenuPrimitive from "@radix-ui/react-menu";
|
|
5
5
|
type Direction = 'ltr' | 'rtl';
|
|
6
6
|
export const createContextMenuScope: import("@radix-ui/react-context").CreateScope;
|
|
7
|
+
type MenuRootProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Root>;
|
|
7
8
|
export interface ContextMenuProps {
|
|
8
9
|
children?: React.ReactNode;
|
|
9
10
|
onOpenChange?(open: boolean): void;
|
|
10
11
|
dir?: Direction;
|
|
11
12
|
modal?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* @see https://github.com/theKashey/react-remove-scroll#usage
|
|
15
|
+
*/
|
|
16
|
+
allowPinchZoom?: MenuRootProps['allowPinchZoom'];
|
|
12
17
|
}
|
|
13
18
|
export const ContextMenu: React.FC<ContextMenuProps>;
|
|
14
19
|
type PrimitiveSpanProps = Radix.ComponentPropsWithoutRef<typeof Primitive.span>;
|
|
@@ -16,7 +21,7 @@ export interface ContextMenuTriggerProps extends PrimitiveSpanProps {
|
|
|
16
21
|
}
|
|
17
22
|
export const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuTriggerProps & React.RefAttributes<HTMLSpanElement>>;
|
|
18
23
|
type MenuContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Content>;
|
|
19
|
-
export interface ContextMenuContentProps extends Omit<MenuContentProps, 'portalled' | 'side' | 'align'> {
|
|
24
|
+
export interface ContextMenuContentProps extends Omit<MenuContentProps, 'portalled' | 'side' | 'sideOffset' | 'align'> {
|
|
20
25
|
}
|
|
21
26
|
export const ContextMenuContent: React.ForwardRefExoticComponent<ContextMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
22
27
|
type MenuGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Group>;
|
|
@@ -31,10 +36,6 @@ type MenuItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Item>;
|
|
|
31
36
|
export interface ContextMenuItemProps extends MenuItemProps {
|
|
32
37
|
}
|
|
33
38
|
export const ContextMenuItem: React.ForwardRefExoticComponent<ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
-
type MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;
|
|
35
|
-
export interface ContextMenuTriggerItemProps extends MenuSubTriggerProps {
|
|
36
|
-
}
|
|
37
|
-
export const ContextMenuTriggerItem: React.ForwardRefExoticComponent<ContextMenuTriggerItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
38
39
|
type MenuCheckboxItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>;
|
|
39
40
|
export interface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {
|
|
40
41
|
}
|
|
@@ -59,18 +60,35 @@ type MenuArrowProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Arrow>
|
|
|
59
60
|
export interface ContextMenuArrowProps extends MenuArrowProps {
|
|
60
61
|
}
|
|
61
62
|
export const ContextMenuArrow: React.ForwardRefExoticComponent<ContextMenuArrowProps & React.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
export interface ContextMenuSubProps {
|
|
64
|
+
children?: React.ReactNode;
|
|
65
|
+
open?: boolean;
|
|
66
|
+
defaultOpen?: boolean;
|
|
67
|
+
onOpenChange?(open: boolean): void;
|
|
68
|
+
}
|
|
69
|
+
export const ContextMenuSub: React.FC<ContextMenuSubProps>;
|
|
70
|
+
type MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;
|
|
71
|
+
export interface ContextMenuSubTriggerProps extends MenuSubTriggerProps {
|
|
72
|
+
}
|
|
73
|
+
export const ContextMenuSubTrigger: React.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>>;
|
|
74
|
+
type MenuSubContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubContent>;
|
|
75
|
+
export interface ContextMenuSubContentProps extends MenuSubContentProps {
|
|
76
|
+
}
|
|
77
|
+
export const ContextMenuSubContent: React.ForwardRefExoticComponent<ContextMenuSubContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
62
78
|
export const Root: React.FC<ContextMenuProps>;
|
|
63
79
|
export const Trigger: React.ForwardRefExoticComponent<ContextMenuTriggerProps & React.RefAttributes<HTMLSpanElement>>;
|
|
64
80
|
export const Content: React.ForwardRefExoticComponent<ContextMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
65
81
|
export const Group: React.ForwardRefExoticComponent<ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
66
82
|
export const Label: React.ForwardRefExoticComponent<ContextMenuLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
67
83
|
export const Item: React.ForwardRefExoticComponent<ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
68
|
-
export const TriggerItem: React.ForwardRefExoticComponent<ContextMenuTriggerItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
69
84
|
export const CheckboxItem: React.ForwardRefExoticComponent<ContextMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
70
85
|
export const RadioGroup: React.ForwardRefExoticComponent<ContextMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
71
86
|
export const RadioItem: React.ForwardRefExoticComponent<ContextMenuRadioItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
72
87
|
export const ItemIndicator: React.ForwardRefExoticComponent<ContextMenuItemIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
73
88
|
export const Separator: React.ForwardRefExoticComponent<ContextMenuSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
74
89
|
export const Arrow: React.ForwardRefExoticComponent<ContextMenuArrowProps & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
export const Sub: React.FC<ContextMenuSubProps>;
|
|
91
|
+
export const SubTrigger: React.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>>;
|
|
92
|
+
export const SubContent: React.ForwardRefExoticComponent<ContextMenuSubContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
75
93
|
|
|
76
94
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;
|
|
1
|
+
{"mappings":"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","sources":["packages/react/context-menu/src/packages/react/context-menu/src/ContextMenu.tsx","packages/react/context-menu/src/packages/react/context-menu/src/index.ts","packages/react/context-menu/src/index.ts"],"sourcesContent":[null,null,"export * from './ContextMenu';\n"],"names":[],"version":3,"file":"index.d.ts.map"}
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ var $l8XVT$radixuireactcontext = require("@radix-ui/react-context");
|
|
|
5
5
|
var $l8XVT$radixuireactprimitive = require("@radix-ui/react-primitive");
|
|
6
6
|
var $l8XVT$radixuireactmenu = require("@radix-ui/react-menu");
|
|
7
7
|
var $l8XVT$radixuireactusecallbackref = require("@radix-ui/react-use-callback-ref");
|
|
8
|
+
var $l8XVT$radixuireactusecontrollablestate = require("@radix-ui/react-use-controllable-state");
|
|
8
9
|
|
|
9
10
|
function $parcel$exportWildcard(dest, source) {
|
|
10
11
|
Object.keys(source).forEach(function(key) {
|
|
@@ -37,26 +38,31 @@ $parcel$export($5de197f6cd80e8e9$exports, "ContextMenuContent", () => $5de197f6c
|
|
|
37
38
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuGroup", () => $5de197f6cd80e8e9$export$9860523b0fcdd664);
|
|
38
39
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuLabel", () => $5de197f6cd80e8e9$export$d4b9d3b609a10742);
|
|
39
40
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuItem", () => $5de197f6cd80e8e9$export$16a26dc176a49100);
|
|
40
|
-
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuTriggerItem", () => $5de197f6cd80e8e9$export$105a322f21932c2b);
|
|
41
41
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuCheckboxItem", () => $5de197f6cd80e8e9$export$b6adbe51d5d8b7ec);
|
|
42
42
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuRadioGroup", () => $5de197f6cd80e8e9$export$db5c89af5ed9aa07);
|
|
43
43
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuRadioItem", () => $5de197f6cd80e8e9$export$8a727d09a7d9bfc2);
|
|
44
44
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuItemIndicator", () => $5de197f6cd80e8e9$export$9ed8194dee42d94b);
|
|
45
45
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuSeparator", () => $5de197f6cd80e8e9$export$8d6b009fadfe1207);
|
|
46
46
|
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuArrow", () => $5de197f6cd80e8e9$export$f47d0a58228a61e2);
|
|
47
|
+
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuSub", () => $5de197f6cd80e8e9$export$5bc21d1c00c4b201);
|
|
48
|
+
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuSubTrigger", () => $5de197f6cd80e8e9$export$30b2b5c64556d316);
|
|
49
|
+
$parcel$export($5de197f6cd80e8e9$exports, "ContextMenuSubContent", () => $5de197f6cd80e8e9$export$2c967063bd2dc512);
|
|
47
50
|
$parcel$export($5de197f6cd80e8e9$exports, "Root", () => $5de197f6cd80e8e9$export$be92b6f5f03c0fe9);
|
|
48
51
|
$parcel$export($5de197f6cd80e8e9$exports, "Trigger", () => $5de197f6cd80e8e9$export$41fb9f06171c75f4);
|
|
49
52
|
$parcel$export($5de197f6cd80e8e9$exports, "Content", () => $5de197f6cd80e8e9$export$7c6e2c02157bb7d2);
|
|
50
53
|
$parcel$export($5de197f6cd80e8e9$exports, "Group", () => $5de197f6cd80e8e9$export$eb2fcfdbd7ba97d4);
|
|
51
54
|
$parcel$export($5de197f6cd80e8e9$exports, "Label", () => $5de197f6cd80e8e9$export$b04be29aa201d4f5);
|
|
52
55
|
$parcel$export($5de197f6cd80e8e9$exports, "Item", () => $5de197f6cd80e8e9$export$6d08773d2e66f8f2);
|
|
53
|
-
$parcel$export($5de197f6cd80e8e9$exports, "TriggerItem", () => $5de197f6cd80e8e9$export$6d0911d397e3b965);
|
|
54
56
|
$parcel$export($5de197f6cd80e8e9$exports, "CheckboxItem", () => $5de197f6cd80e8e9$export$16ce288f89fa631c);
|
|
55
57
|
$parcel$export($5de197f6cd80e8e9$exports, "RadioGroup", () => $5de197f6cd80e8e9$export$a98f0dcb43a68a25);
|
|
56
58
|
$parcel$export($5de197f6cd80e8e9$exports, "RadioItem", () => $5de197f6cd80e8e9$export$371ab307eab489c0);
|
|
57
59
|
$parcel$export($5de197f6cd80e8e9$exports, "ItemIndicator", () => $5de197f6cd80e8e9$export$c3468e2714d175fa);
|
|
58
60
|
$parcel$export($5de197f6cd80e8e9$exports, "Separator", () => $5de197f6cd80e8e9$export$1ff3c3f08ae963c0);
|
|
59
61
|
$parcel$export($5de197f6cd80e8e9$exports, "Arrow", () => $5de197f6cd80e8e9$export$21b07c8f274aebd5);
|
|
62
|
+
$parcel$export($5de197f6cd80e8e9$exports, "Sub", () => $5de197f6cd80e8e9$export$d7a01e11500dfb6f);
|
|
63
|
+
$parcel$export($5de197f6cd80e8e9$exports, "SubTrigger", () => $5de197f6cd80e8e9$export$2ea8a7a591ac5eac);
|
|
64
|
+
$parcel$export($5de197f6cd80e8e9$exports, "SubContent", () => $5de197f6cd80e8e9$export$6d4de93b380beddf);
|
|
65
|
+
|
|
60
66
|
|
|
61
67
|
|
|
62
68
|
|
|
@@ -74,9 +80,8 @@ const [$5de197f6cd80e8e9$var$createContextMenuContext, $5de197f6cd80e8e9$export$
|
|
|
74
80
|
const $5de197f6cd80e8e9$var$useMenuScope = $l8XVT$radixuireactmenu.createMenuScope();
|
|
75
81
|
const [$5de197f6cd80e8e9$var$ContextMenuProvider, $5de197f6cd80e8e9$var$useContextMenuContext] = $5de197f6cd80e8e9$var$createContextMenuContext($5de197f6cd80e8e9$var$CONTEXT_MENU_NAME);
|
|
76
82
|
const $5de197f6cd80e8e9$export$8dc6765e8be191c7 = (props)=>{
|
|
77
|
-
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , dir: dir , modal: modal = true } = props;
|
|
83
|
+
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , dir: dir , modal: modal = true , allowPinchZoom: allowPinchZoom } = props;
|
|
78
84
|
const [open1, setOpen] = $l8XVT$react.useState(false);
|
|
79
|
-
const contentContext = $5de197f6cd80e8e9$var$useContentContext($5de197f6cd80e8e9$var$CONTEXT_MENU_NAME, __scopeContextMenu);
|
|
80
85
|
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
81
86
|
const handleOpenChangeProp = $l8XVT$radixuireactusecallbackref.useCallbackRef(onOpenChange);
|
|
82
87
|
const handleOpenChange = $l8XVT$react.useCallback((open)=>{
|
|
@@ -85,18 +90,8 @@ const $5de197f6cd80e8e9$export$8dc6765e8be191c7 = (props)=>{
|
|
|
85
90
|
}, [
|
|
86
91
|
handleOpenChangeProp
|
|
87
92
|
]);
|
|
88
|
-
return
|
|
93
|
+
return /*#__PURE__*/ $l8XVT$react.createElement($5de197f6cd80e8e9$var$ContextMenuProvider, {
|
|
89
94
|
scope: __scopeContextMenu,
|
|
90
|
-
isRootMenu: false,
|
|
91
|
-
open: open1,
|
|
92
|
-
onOpenChange: handleOpenChange,
|
|
93
|
-
modal: modal
|
|
94
|
-
}, /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.Sub, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, {
|
|
95
|
-
open: open1,
|
|
96
|
-
onOpenChange: handleOpenChange
|
|
97
|
-
}), children)) : /*#__PURE__*/ $l8XVT$react.createElement($5de197f6cd80e8e9$var$ContextMenuProvider, {
|
|
98
|
-
scope: __scopeContextMenu,
|
|
99
|
-
isRootMenu: true,
|
|
100
95
|
open: open1,
|
|
101
96
|
onOpenChange: handleOpenChange,
|
|
102
97
|
modal: modal
|
|
@@ -104,7 +99,8 @@ const $5de197f6cd80e8e9$export$8dc6765e8be191c7 = (props)=>{
|
|
|
104
99
|
dir: dir,
|
|
105
100
|
open: open1,
|
|
106
101
|
onOpenChange: handleOpenChange,
|
|
107
|
-
modal: modal
|
|
102
|
+
modal: modal,
|
|
103
|
+
allowPinchZoom: allowPinchZoom
|
|
108
104
|
}), children));
|
|
109
105
|
};
|
|
110
106
|
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$8dc6765e8be191c7, {
|
|
@@ -142,10 +138,7 @@ const $5de197f6cd80e8e9$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $l8XVT$react.for
|
|
|
142
138
|
, [
|
|
143
139
|
clearLongPress
|
|
144
140
|
]);
|
|
145
|
-
return /*#__PURE__*/ $l8XVT$react.createElement($
|
|
146
|
-
scope: __scopeContextMenu,
|
|
147
|
-
isInsideContent: false
|
|
148
|
-
}, /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.Anchor, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, {
|
|
141
|
+
return /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$react.Fragment, null, /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.Anchor, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, {
|
|
149
142
|
virtualRef: virtualRef
|
|
150
143
|
})), /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactprimitive.Primitive.span, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, triggerProps, {
|
|
151
144
|
ref: forwardedRef // prevent iOS context menu from appearing
|
|
@@ -158,8 +151,8 @@ const $5de197f6cd80e8e9$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $l8XVT$react.for
|
|
|
158
151
|
// clearing the long press here because some platforms already support
|
|
159
152
|
// long press to trigger a `contextmenu` event
|
|
160
153
|
clearLongPress();
|
|
161
|
-
event.preventDefault();
|
|
162
154
|
handleOpen(event);
|
|
155
|
+
event.preventDefault();
|
|
163
156
|
}),
|
|
164
157
|
onPointerDown: $l8XVT$radixuiprimitive.composeEventHandlers(props.onPointerDown, $5de197f6cd80e8e9$var$whenTouchOrPen((event)=>{
|
|
165
158
|
// clear the long press here in case there's multiple touch points
|
|
@@ -178,36 +171,7 @@ const $5de197f6cd80e8e9$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $l8XVT$react.for
|
|
|
178
171
|
/* -------------------------------------------------------------------------------------------------
|
|
179
172
|
* ContextMenuContent
|
|
180
173
|
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$CONTENT_NAME = 'ContextMenuContent';
|
|
181
|
-
const [$5de197f6cd80e8e9$var$ContentProvider, $5de197f6cd80e8e9$var$useContentContext] = $5de197f6cd80e8e9$var$createContextMenuContext($5de197f6cd80e8e9$var$CONTENT_NAME, {
|
|
182
|
-
isInsideContent: false
|
|
183
|
-
});
|
|
184
174
|
const $5de197f6cd80e8e9$export$572205900c9369e = /*#__PURE__*/ $l8XVT$react.forwardRef((props, forwardedRef)=>{
|
|
185
|
-
const { __scopeContextMenu: __scopeContextMenu , ...contentProps } = props;
|
|
186
|
-
const context = $5de197f6cd80e8e9$var$useContextMenuContext($5de197f6cd80e8e9$var$CONTENT_NAME, __scopeContextMenu);
|
|
187
|
-
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
188
|
-
const commonProps = {
|
|
189
|
-
...contentProps,
|
|
190
|
-
style: {
|
|
191
|
-
...props.style,
|
|
192
|
-
// re-namespace exposed content custom property
|
|
193
|
-
['--radix-context-menu-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
194
|
-
}
|
|
195
|
-
};
|
|
196
|
-
return /*#__PURE__*/ $l8XVT$react.createElement($5de197f6cd80e8e9$var$ContentProvider, {
|
|
197
|
-
scope: __scopeContextMenu,
|
|
198
|
-
isInsideContent: true
|
|
199
|
-
}, context.isRootMenu ? /*#__PURE__*/ $l8XVT$react.createElement($5de197f6cd80e8e9$var$ContextMenuRootContent, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({
|
|
200
|
-
__scopeContextMenu: __scopeContextMenu
|
|
201
|
-
}, commonProps, {
|
|
202
|
-
ref: forwardedRef
|
|
203
|
-
})) : /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.Content, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, commonProps, {
|
|
204
|
-
ref: forwardedRef
|
|
205
|
-
})));
|
|
206
|
-
});
|
|
207
|
-
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$572205900c9369e, {
|
|
208
|
-
displayName: $5de197f6cd80e8e9$var$CONTENT_NAME
|
|
209
|
-
});
|
|
210
|
-
/* ---------------------------------------------------------------------------------------------- */ const $5de197f6cd80e8e9$var$ContextMenuRootContent = /*#__PURE__*/ $l8XVT$react.forwardRef((props, forwardedRef)=>{
|
|
211
175
|
const { __scopeContextMenu: __scopeContextMenu , ...contentProps } = props;
|
|
212
176
|
const context = $5de197f6cd80e8e9$var$useContextMenuContext($5de197f6cd80e8e9$var$CONTENT_NAME, __scopeContextMenu);
|
|
213
177
|
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
@@ -228,9 +192,17 @@ const $5de197f6cd80e8e9$export$572205900c9369e = /*#__PURE__*/ $l8XVT$react.forw
|
|
|
228
192
|
var _props$onInteractOuts;
|
|
229
193
|
(_props$onInteractOuts = props.onInteractOutside) === null || _props$onInteractOuts === void 0 || _props$onInteractOuts.call(props, event);
|
|
230
194
|
if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;
|
|
195
|
+
},
|
|
196
|
+
style: {
|
|
197
|
+
...props.style,
|
|
198
|
+
// re-namespace exposed content custom property
|
|
199
|
+
['--radix-context-menu-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
231
200
|
}
|
|
232
201
|
}));
|
|
233
202
|
});
|
|
203
|
+
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$572205900c9369e, {
|
|
204
|
+
displayName: $5de197f6cd80e8e9$var$CONTENT_NAME
|
|
205
|
+
});
|
|
234
206
|
/* -------------------------------------------------------------------------------------------------
|
|
235
207
|
* ContextMenuGroup
|
|
236
208
|
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$GROUP_NAME = 'ContextMenuGroup';
|
|
@@ -270,19 +242,6 @@ const $5de197f6cd80e8e9$export$16a26dc176a49100 = /*#__PURE__*/ $l8XVT$react.for
|
|
|
270
242
|
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$16a26dc176a49100, {
|
|
271
243
|
displayName: $5de197f6cd80e8e9$var$ITEM_NAME
|
|
272
244
|
});
|
|
273
|
-
/* -------------------------------------------------------------------------------------------------
|
|
274
|
-
* ContextMenuTriggerItem
|
|
275
|
-
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$TRIGGER_ITEM_NAME = 'ContextMenuTriggerItem';
|
|
276
|
-
const $5de197f6cd80e8e9$export$105a322f21932c2b = /*#__PURE__*/ $l8XVT$react.forwardRef((props, forwardedRef)=>{
|
|
277
|
-
const { __scopeContextMenu: __scopeContextMenu , ...triggerItemProps } = props;
|
|
278
|
-
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
279
|
-
return /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.SubTrigger, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, triggerItemProps, {
|
|
280
|
-
ref: forwardedRef
|
|
281
|
-
}));
|
|
282
|
-
});
|
|
283
|
-
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$105a322f21932c2b, {
|
|
284
|
-
displayName: $5de197f6cd80e8e9$var$TRIGGER_ITEM_NAME
|
|
285
|
-
});
|
|
286
245
|
/* -------------------------------------------------------------------------------------------------
|
|
287
246
|
* ContextMenuCheckboxItem
|
|
288
247
|
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';
|
|
@@ -361,6 +320,56 @@ const $5de197f6cd80e8e9$export$f47d0a58228a61e2 = /*#__PURE__*/ $l8XVT$react.for
|
|
|
361
320
|
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$f47d0a58228a61e2, {
|
|
362
321
|
displayName: $5de197f6cd80e8e9$var$ARROW_NAME
|
|
363
322
|
});
|
|
323
|
+
/* -------------------------------------------------------------------------------------------------
|
|
324
|
+
* ContextMenuSub
|
|
325
|
+
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$SUB_NAME = 'ContextMenuSub';
|
|
326
|
+
const $5de197f6cd80e8e9$export$5bc21d1c00c4b201 = (props)=>{
|
|
327
|
+
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , open: openProp , defaultOpen: defaultOpen } = props;
|
|
328
|
+
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
329
|
+
const [open, setOpen] = $l8XVT$radixuireactusecontrollablestate.useControllableState({
|
|
330
|
+
prop: openProp,
|
|
331
|
+
defaultProp: defaultOpen,
|
|
332
|
+
onChange: onOpenChange
|
|
333
|
+
});
|
|
334
|
+
return /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.Sub, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, {
|
|
335
|
+
open: open,
|
|
336
|
+
onOpenChange: setOpen
|
|
337
|
+
}), children);
|
|
338
|
+
};
|
|
339
|
+
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$5bc21d1c00c4b201, {
|
|
340
|
+
displayName: $5de197f6cd80e8e9$var$SUB_NAME
|
|
341
|
+
});
|
|
342
|
+
/* -------------------------------------------------------------------------------------------------
|
|
343
|
+
* ContextMenuSubTrigger
|
|
344
|
+
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$SUB_TRIGGER_NAME = 'ContextMenuSubTrigger';
|
|
345
|
+
const $5de197f6cd80e8e9$export$30b2b5c64556d316 = /*#__PURE__*/ $l8XVT$react.forwardRef((props, forwardedRef)=>{
|
|
346
|
+
const { __scopeContextMenu: __scopeContextMenu , ...triggerItemProps } = props;
|
|
347
|
+
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
348
|
+
return /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.SubTrigger, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, triggerItemProps, {
|
|
349
|
+
ref: forwardedRef
|
|
350
|
+
}));
|
|
351
|
+
});
|
|
352
|
+
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$30b2b5c64556d316, {
|
|
353
|
+
displayName: $5de197f6cd80e8e9$var$SUB_TRIGGER_NAME
|
|
354
|
+
});
|
|
355
|
+
/* -------------------------------------------------------------------------------------------------
|
|
356
|
+
* ContextMenuSubContent
|
|
357
|
+
* -----------------------------------------------------------------------------------------------*/ const $5de197f6cd80e8e9$var$SUB_CONTENT_NAME = 'ContextMenuSubContent';
|
|
358
|
+
const $5de197f6cd80e8e9$export$2c967063bd2dc512 = /*#__PURE__*/ $l8XVT$react.forwardRef((props, forwardedRef)=>{
|
|
359
|
+
const { __scopeContextMenu: __scopeContextMenu , ...subContentProps } = props;
|
|
360
|
+
const menuScope = $5de197f6cd80e8e9$var$useMenuScope(__scopeContextMenu);
|
|
361
|
+
return /*#__PURE__*/ $l8XVT$react.createElement($l8XVT$radixuireactmenu.SubContent, ($parcel$interopDefault($l8XVT$babelruntimehelpersextends))({}, menuScope, subContentProps, {
|
|
362
|
+
ref: forwardedRef,
|
|
363
|
+
style: {
|
|
364
|
+
...props.style,
|
|
365
|
+
// re-namespace exposed content custom property
|
|
366
|
+
['--radix-context-menu-sub-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
367
|
+
}
|
|
368
|
+
}));
|
|
369
|
+
});
|
|
370
|
+
/*#__PURE__*/ Object.assign($5de197f6cd80e8e9$export$2c967063bd2dc512, {
|
|
371
|
+
displayName: $5de197f6cd80e8e9$var$SUB_CONTENT_NAME
|
|
372
|
+
});
|
|
364
373
|
/* -----------------------------------------------------------------------------------------------*/ function $5de197f6cd80e8e9$var$whenTouchOrPen(handler) {
|
|
365
374
|
return (event)=>event.pointerType !== 'mouse' ? handler(event) : undefined
|
|
366
375
|
;
|
|
@@ -371,13 +380,15 @@ const $5de197f6cd80e8e9$export$7c6e2c02157bb7d2 = $5de197f6cd80e8e9$export$57220
|
|
|
371
380
|
const $5de197f6cd80e8e9$export$eb2fcfdbd7ba97d4 = $5de197f6cd80e8e9$export$9860523b0fcdd664;
|
|
372
381
|
const $5de197f6cd80e8e9$export$b04be29aa201d4f5 = $5de197f6cd80e8e9$export$d4b9d3b609a10742;
|
|
373
382
|
const $5de197f6cd80e8e9$export$6d08773d2e66f8f2 = $5de197f6cd80e8e9$export$16a26dc176a49100;
|
|
374
|
-
const $5de197f6cd80e8e9$export$6d0911d397e3b965 = $5de197f6cd80e8e9$export$105a322f21932c2b;
|
|
375
383
|
const $5de197f6cd80e8e9$export$16ce288f89fa631c = $5de197f6cd80e8e9$export$b6adbe51d5d8b7ec;
|
|
376
384
|
const $5de197f6cd80e8e9$export$a98f0dcb43a68a25 = $5de197f6cd80e8e9$export$db5c89af5ed9aa07;
|
|
377
385
|
const $5de197f6cd80e8e9$export$371ab307eab489c0 = $5de197f6cd80e8e9$export$8a727d09a7d9bfc2;
|
|
378
386
|
const $5de197f6cd80e8e9$export$c3468e2714d175fa = $5de197f6cd80e8e9$export$9ed8194dee42d94b;
|
|
379
387
|
const $5de197f6cd80e8e9$export$1ff3c3f08ae963c0 = $5de197f6cd80e8e9$export$8d6b009fadfe1207;
|
|
380
388
|
const $5de197f6cd80e8e9$export$21b07c8f274aebd5 = $5de197f6cd80e8e9$export$f47d0a58228a61e2;
|
|
389
|
+
const $5de197f6cd80e8e9$export$d7a01e11500dfb6f = $5de197f6cd80e8e9$export$5bc21d1c00c4b201;
|
|
390
|
+
const $5de197f6cd80e8e9$export$2ea8a7a591ac5eac = $5de197f6cd80e8e9$export$30b2b5c64556d316;
|
|
391
|
+
const $5de197f6cd80e8e9$export$6d4de93b380beddf = $5de197f6cd80e8e9$export$2c967063bd2dc512;
|
|
381
392
|
|
|
382
393
|
|
|
383
394
|
$parcel$exportWildcard(module.exports, $5de197f6cd80e8e9$exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/react/context-menu/src/index.ts","packages/react/context-menu/src/ContextMenu.tsx"],"sourcesContent":["export * from './ContextMenu';\n","import * as React from 'react';\nimport { composeEventHandlers } from '@radix-ui/primitive';\nimport { createContextScope } from '@radix-ui/react-context';\nimport { Primitive } from '@radix-ui/react-primitive';\nimport * as MenuPrimitive from '@radix-ui/react-menu';\nimport { createMenuScope } from '@radix-ui/react-menu';\nimport { useCallbackRef } from '@radix-ui/react-use-callback-ref';\n\nimport type * as Radix from '@radix-ui/react-primitive';\nimport type { Scope } from '@radix-ui/react-context';\n\ntype Direction = 'ltr' | 'rtl';\ntype Point = { x: number; y: number };\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenu\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTEXT_MENU_NAME = 'ContextMenu';\n\ntype ScopedProps<P> = P & { __scopeContextMenu?: Scope };\nconst [createContextMenuContext, createContextMenuScope] = createContextScope(CONTEXT_MENU_NAME, [\n createMenuScope,\n]);\nconst useMenuScope = createMenuScope();\n\ntype ContextMenuContextValue = {\n isRootMenu: boolean;\n open: boolean;\n onOpenChange(open: boolean): void;\n modal: boolean;\n};\n\nconst [ContextMenuProvider, useContextMenuContext] =\n createContextMenuContext<ContextMenuContextValue>(CONTEXT_MENU_NAME);\n\ninterface ContextMenuProps {\n children?: React.ReactNode;\n onOpenChange?(open: boolean): void;\n dir?: Direction;\n modal?: boolean;\n}\n\nconst ContextMenu: React.FC<ContextMenuProps> = (props: ScopedProps<ContextMenuProps>) => {\n const { __scopeContextMenu, children, onOpenChange, dir, modal = true } = props;\n const [open, setOpen] = React.useState(false);\n const contentContext = useContentContext(CONTEXT_MENU_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const handleOpenChangeProp = useCallbackRef(onOpenChange);\n\n const handleOpenChange = React.useCallback(\n (open: boolean) => {\n setOpen(open);\n handleOpenChangeProp(open);\n },\n [handleOpenChangeProp]\n );\n\n return contentContext.isInsideContent ? (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n isRootMenu={false}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Sub {...menuScope} open={open} onOpenChange={handleOpenChange}>\n {children}\n </MenuPrimitive.Sub>\n </ContextMenuProvider>\n ) : (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n isRootMenu={true}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Root\n {...menuScope}\n dir={dir}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n {children}\n </MenuPrimitive.Root>\n </ContextMenuProvider>\n );\n};\n\nContextMenu.displayName = CONTEXT_MENU_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_NAME = 'ContextMenuTrigger';\n\ntype ContextMenuTriggerElement = React.ElementRef<typeof Primitive.span>;\ntype PrimitiveSpanProps = Radix.ComponentPropsWithoutRef<typeof Primitive.span>;\ninterface ContextMenuTriggerProps extends PrimitiveSpanProps {}\n\nconst ContextMenuTrigger = React.forwardRef<ContextMenuTriggerElement, ContextMenuTriggerProps>(\n (props: ScopedProps<ContextMenuTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerProps } = props;\n const context = useContextMenuContext(TRIGGER_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const pointRef = React.useRef<Point>({ x: 0, y: 0 });\n const virtualRef = React.useRef({\n getBoundingClientRect: () => DOMRect.fromRect({ width: 0, height: 0, ...pointRef.current }),\n });\n const longPressTimerRef = React.useRef(0);\n const clearLongPress = React.useCallback(\n () => window.clearTimeout(longPressTimerRef.current),\n []\n );\n const handleOpen = (event: React.MouseEvent | React.PointerEvent) => {\n pointRef.current = { x: event.clientX, y: event.clientY };\n context.onOpenChange(true);\n };\n\n React.useEffect(() => clearLongPress, [clearLongPress]);\n\n return (\n <ContentProvider scope={__scopeContextMenu} isInsideContent={false}>\n <MenuPrimitive.Anchor {...menuScope} virtualRef={virtualRef} />\n <Primitive.span\n {...triggerProps}\n ref={forwardedRef}\n // prevent iOS context menu from appearing\n style={{ WebkitTouchCallout: 'none', ...props.style }}\n onContextMenu={composeEventHandlers(props.onContextMenu, (event) => {\n // clearing the long press here because some platforms already support\n // long press to trigger a `contextmenu` event\n clearLongPress();\n event.preventDefault();\n handleOpen(event);\n })}\n onPointerDown={composeEventHandlers(\n props.onPointerDown,\n whenTouchOrPen((event) => {\n // clear the long press here in case there's multiple touch points\n clearLongPress();\n longPressTimerRef.current = window.setTimeout(() => handleOpen(event), 700);\n })\n )}\n onPointerMove={composeEventHandlers(props.onPointerMove, whenTouchOrPen(clearLongPress))}\n onPointerCancel={composeEventHandlers(\n props.onPointerCancel,\n whenTouchOrPen(clearLongPress)\n )}\n onPointerUp={composeEventHandlers(props.onPointerUp, whenTouchOrPen(clearLongPress))}\n />\n </ContentProvider>\n );\n }\n);\n\nContextMenuTrigger.displayName = TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTENT_NAME = 'ContextMenuContent';\n\nconst [ContentProvider, useContentContext] = createContextMenuContext(CONTENT_NAME, {\n isInsideContent: false,\n});\n\ntype ContextMenuContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuContentProps extends Omit<MenuContentProps, 'portalled' | 'side' | 'align'> {}\n\nconst ContextMenuContent = React.forwardRef<ContextMenuContentElement, ContextMenuContentProps>(\n (props: ScopedProps<ContextMenuContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n\n const commonProps = {\n ...contentProps,\n style: {\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n },\n };\n\n return (\n <ContentProvider scope={__scopeContextMenu} isInsideContent={true}>\n {context.isRootMenu ? (\n <ContextMenuRootContent\n __scopeContextMenu={__scopeContextMenu}\n {...commonProps}\n ref={forwardedRef}\n />\n ) : (\n <MenuPrimitive.Content {...menuScope} {...commonProps} ref={forwardedRef} />\n )}\n </ContentProvider>\n );\n }\n);\n\nContextMenuContent.displayName = CONTENT_NAME;\n\n/* ---------------------------------------------------------------------------------------------- */\n\ntype ContextMenuRootContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuRootContentProps extends ScopedProps<MenuContentProps> {}\n\nconst ContextMenuRootContent = React.forwardRef<\n ContextMenuRootContentElement,\n ContextMenuRootContentProps\n>((props, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const hasInteractedOutsideRef = React.useRef(false);\n return (\n <MenuPrimitive.Content\n {...menuScope}\n {...contentProps}\n ref={forwardedRef}\n portalled\n side=\"right\"\n sideOffset={2}\n align=\"start\"\n onCloseAutoFocus={(event) => {\n props.onCloseAutoFocus?.(event);\n\n if (!event.defaultPrevented && hasInteractedOutsideRef.current) {\n event.preventDefault();\n }\n\n hasInteractedOutsideRef.current = false;\n }}\n onInteractOutside={(event) => {\n props.onInteractOutside?.(event);\n\n if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;\n }}\n />\n );\n});\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst GROUP_NAME = 'ContextMenuGroup';\n\ntype ContextMenuGroupElement = React.ElementRef<typeof MenuPrimitive.Group>;\ntype MenuGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Group>;\ninterface ContextMenuGroupProps extends MenuGroupProps {}\n\nconst ContextMenuGroup = React.forwardRef<ContextMenuGroupElement, ContextMenuGroupProps>(\n (props: ScopedProps<ContextMenuGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...groupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Group {...menuScope} {...groupProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuGroup.displayName = GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuLabel\n * -----------------------------------------------------------------------------------------------*/\n\nconst LABEL_NAME = 'ContextMenuLabel';\n\ntype ContextMenuLabelElement = React.ElementRef<typeof MenuPrimitive.Label>;\ntype MenuLabelProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Label>;\ninterface ContextMenuLabelProps extends MenuLabelProps {}\n\nconst ContextMenuLabel = React.forwardRef<ContextMenuLabelElement, ContextMenuLabelProps>(\n (props: ScopedProps<ContextMenuLabelProps>, forwardedRef) => {\n const { __scopeContextMenu, ...labelProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Label {...menuScope} {...labelProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuLabel.displayName = LABEL_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst ITEM_NAME = 'ContextMenuItem';\n\ntype ContextMenuItemElement = React.ElementRef<typeof MenuPrimitive.Item>;\ntype MenuItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Item>;\ninterface ContextMenuItemProps extends MenuItemProps {}\n\nconst ContextMenuItem = React.forwardRef<ContextMenuItemElement, ContextMenuItemProps>(\n (props: ScopedProps<ContextMenuItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Item {...menuScope} {...itemProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuItem.displayName = ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTriggerItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_ITEM_NAME = 'ContextMenuTriggerItem';\n\ntype ContextMenuTriggerItemElement = React.ElementRef<typeof MenuPrimitive.SubTrigger>;\ntype MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;\ninterface ContextMenuTriggerItemProps extends MenuSubTriggerProps {}\n\nconst ContextMenuTriggerItem = React.forwardRef<\n ContextMenuTriggerItemElement,\n ContextMenuTriggerItemProps\n>((props: ScopedProps<ContextMenuTriggerItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.SubTrigger {...menuScope} {...triggerItemProps} ref={forwardedRef} />;\n});\n\nContextMenuTriggerItem.displayName = TRIGGER_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuCheckboxItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';\n\ntype ContextMenuCheckboxItemElement = React.ElementRef<typeof MenuPrimitive.CheckboxItem>;\ntype MenuCheckboxItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>;\ninterface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}\n\nconst ContextMenuCheckboxItem = React.forwardRef<\n ContextMenuCheckboxItemElement,\n ContextMenuCheckboxItemProps\n>((props: ScopedProps<ContextMenuCheckboxItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...checkboxItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.CheckboxItem {...menuScope} {...checkboxItemProps} ref={forwardedRef} />;\n});\n\nContextMenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_GROUP_NAME = 'ContextMenuRadioGroup';\n\ntype ContextMenuRadioGroupElement = React.ElementRef<typeof MenuPrimitive.RadioGroup>;\ntype MenuRadioGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioGroup>;\ninterface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}\n\nconst ContextMenuRadioGroup = React.forwardRef<\n ContextMenuRadioGroupElement,\n ContextMenuRadioGroupProps\n>((props: ScopedProps<ContextMenuRadioGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioGroupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioGroup {...menuScope} {...radioGroupProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioGroup.displayName = RADIO_GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_ITEM_NAME = 'ContextMenuRadioItem';\n\ntype ContextMenuRadioItemElement = React.ElementRef<typeof MenuPrimitive.RadioItem>;\ntype MenuRadioItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioItem>;\ninterface ContextMenuRadioItemProps extends MenuRadioItemProps {}\n\nconst ContextMenuRadioItem = React.forwardRef<\n ContextMenuRadioItemElement,\n ContextMenuRadioItemProps\n>((props: ScopedProps<ContextMenuRadioItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioItem {...menuScope} {...radioItemProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioItem.displayName = RADIO_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItemIndicator\n * -----------------------------------------------------------------------------------------------*/\n\nconst INDICATOR_NAME = 'ContextMenuItemIndicator';\n\ntype ContextMenuItemIndicatorElement = React.ElementRef<typeof MenuPrimitive.ItemIndicator>;\ntype MenuItemIndicatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.ItemIndicator>;\ninterface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}\n\nconst ContextMenuItemIndicator = React.forwardRef<\n ContextMenuItemIndicatorElement,\n ContextMenuItemIndicatorProps\n>((props: ScopedProps<ContextMenuItemIndicatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemIndicatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.ItemIndicator {...menuScope} {...itemIndicatorProps} ref={forwardedRef} />;\n});\n\nContextMenuItemIndicator.displayName = INDICATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSeparator\n * -----------------------------------------------------------------------------------------------*/\n\nconst SEPARATOR_NAME = 'ContextMenuSeparator';\n\ntype ContextMenuSeparatorElement = React.ElementRef<typeof MenuPrimitive.Separator>;\ntype MenuSeparatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Separator>;\ninterface ContextMenuSeparatorProps extends MenuSeparatorProps {}\n\nconst ContextMenuSeparator = React.forwardRef<\n ContextMenuSeparatorElement,\n ContextMenuSeparatorProps\n>((props: ScopedProps<ContextMenuSeparatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...separatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Separator {...menuScope} {...separatorProps} ref={forwardedRef} />;\n});\n\nContextMenuSeparator.displayName = SEPARATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuArrow\n * -----------------------------------------------------------------------------------------------*/\n\nconst ARROW_NAME = 'ContextMenuArrow';\n\ntype ContextMenuArrowElement = React.ElementRef<typeof MenuPrimitive.Arrow>;\ntype MenuArrowProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Arrow>;\ninterface ContextMenuArrowProps extends MenuArrowProps {}\n\nconst ContextMenuArrow = React.forwardRef<ContextMenuArrowElement, ContextMenuArrowProps>(\n (props: ScopedProps<ContextMenuArrowProps>, forwardedRef) => {\n const { __scopeContextMenu, ...arrowProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Arrow {...menuScope} {...arrowProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuArrow.displayName = ARROW_NAME;\n\n/* -----------------------------------------------------------------------------------------------*/\n\nfunction whenTouchOrPen<E>(handler: React.PointerEventHandler<E>): React.PointerEventHandler<E> {\n return (event) => (event.pointerType !== 'mouse' ? handler(event) : undefined);\n}\n\nconst Root = ContextMenu;\nconst Trigger = ContextMenuTrigger;\nconst Content = ContextMenuContent;\nconst Group = ContextMenuGroup;\nconst Label = ContextMenuLabel;\nconst Item = ContextMenuItem;\nconst TriggerItem = ContextMenuTriggerItem;\nconst CheckboxItem = ContextMenuCheckboxItem;\nconst RadioGroup = ContextMenuRadioGroup;\nconst RadioItem = ContextMenuRadioItem;\nconst ItemIndicator = ContextMenuItemIndicator;\nconst Separator = ContextMenuSeparator;\nconst Arrow = ContextMenuArrow;\n\nexport {\n createContextMenuScope,\n //\n ContextMenu,\n ContextMenuTrigger,\n ContextMenuContent,\n ContextMenuGroup,\n ContextMenuLabel,\n ContextMenuItem,\n ContextMenuTriggerItem,\n ContextMenuCheckboxItem,\n ContextMenuRadioGroup,\n ContextMenuRadioItem,\n ContextMenuItemIndicator,\n ContextMenuSeparator,\n ContextMenuArrow,\n //\n Root,\n Trigger,\n Content,\n Group,\n Label,\n Item,\n TriggerItem,\n CheckboxItem,\n RadioGroup,\n RadioItem,\n ItemIndicator,\n Separator,\n Arrow,\n};\nexport type {\n ContextMenuProps,\n ContextMenuTriggerProps,\n ContextMenuContentProps,\n ContextMenuGroupProps,\n ContextMenuLabelProps,\n ContextMenuItemProps,\n ContextMenuTriggerItemProps,\n ContextMenuCheckboxItemProps,\n ContextMenuRadioGroupProps,\n ContextMenuRadioItemProps,\n ContextMenuItemIndicatorProps,\n ContextMenuSeparatorProps,\n ContextMenuArrowProps,\n};\n"],"names":["React","composeEventHandlers","createContextScope","Primitive","MenuPrimitive","createMenuScope","useCallbackRef","CONTEXT_MENU_NAME","createContextMenuContext","createContextMenuScope","useMenuScope","ContextMenuProvider","useContextMenuContext","ContextMenu","props","__scopeContextMenu","children","onOpenChange","dir","modal","open","setOpen","useState","contentContext","useContentContext","menuScope","handleOpenChangeProp","handleOpenChange","useCallback","isInsideContent","TRIGGER_NAME","ContextMenuTrigger","forwardRef","forwardedRef","triggerProps","context","pointRef","useRef","x","y","virtualRef","getBoundingClientRect","DOMRect","fromRect","width","height","current","longPressTimerRef","clearLongPress","window","clearTimeout","handleOpen","event","clientX","clientY","useEffect","WebkitTouchCallout","style","onContextMenu","preventDefault","onPointerDown","whenTouchOrPen","setTimeout","onPointerMove","onPointerCancel","onPointerUp","CONTENT_NAME","ContentProvider","ContextMenuContent","contentProps","commonProps","isRootMenu","ContextMenuRootContent","hasInteractedOutsideRef","onCloseAutoFocus","defaultPrevented","onInteractOutside","GROUP_NAME","ContextMenuGroup","groupProps","LABEL_NAME","ContextMenuLabel","labelProps","ITEM_NAME","ContextMenuItem","itemProps","TRIGGER_ITEM_NAME","ContextMenuTriggerItem","triggerItemProps","CHECKBOX_ITEM_NAME","ContextMenuCheckboxItem","checkboxItemProps","RADIO_GROUP_NAME","ContextMenuRadioGroup","radioGroupProps","RADIO_ITEM_NAME","ContextMenuRadioItem","radioItemProps","INDICATOR_NAME","ContextMenuItemIndicator","itemIndicatorProps","SEPARATOR_NAME","ContextMenuSeparator","separatorProps","ARROW_NAME","ContextMenuArrow","arrowProps","handler","pointerType","undefined","Root","Trigger","Content","Group","Label","Item","TriggerItem","CheckboxItem","RadioGroup","RadioItem","ItemIndicator","Separator","Arrow"],"version":3,"file":"index.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/react/context-menu/src/index.ts","packages/react/context-menu/src/ContextMenu.tsx"],"sourcesContent":["export * from './ContextMenu';\n","import * as React from 'react';\nimport { composeEventHandlers } from '@radix-ui/primitive';\nimport { createContextScope } from '@radix-ui/react-context';\nimport { Primitive } from '@radix-ui/react-primitive';\nimport * as MenuPrimitive from '@radix-ui/react-menu';\nimport { createMenuScope } from '@radix-ui/react-menu';\nimport { useCallbackRef } from '@radix-ui/react-use-callback-ref';\nimport { useControllableState } from '@radix-ui/react-use-controllable-state';\n\nimport type * as Radix from '@radix-ui/react-primitive';\nimport type { Scope } from '@radix-ui/react-context';\n\ntype Direction = 'ltr' | 'rtl';\ntype Point = { x: number; y: number };\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenu\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTEXT_MENU_NAME = 'ContextMenu';\n\ntype ScopedProps<P> = P & { __scopeContextMenu?: Scope };\nconst [createContextMenuContext, createContextMenuScope] = createContextScope(CONTEXT_MENU_NAME, [\n createMenuScope,\n]);\nconst useMenuScope = createMenuScope();\n\ntype ContextMenuContextValue = {\n open: boolean;\n onOpenChange(open: boolean): void;\n modal: boolean;\n};\n\nconst [ContextMenuProvider, useContextMenuContext] =\n createContextMenuContext<ContextMenuContextValue>(CONTEXT_MENU_NAME);\n\ntype MenuRootProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Root>;\ninterface ContextMenuProps {\n children?: React.ReactNode;\n onOpenChange?(open: boolean): void;\n dir?: Direction;\n modal?: boolean;\n /**\n * @see https://github.com/theKashey/react-remove-scroll#usage\n */\n allowPinchZoom?: MenuRootProps['allowPinchZoom'];\n}\n\nconst ContextMenu: React.FC<ContextMenuProps> = (props: ScopedProps<ContextMenuProps>) => {\n const { __scopeContextMenu, children, onOpenChange, dir, modal = true, allowPinchZoom } = props;\n const [open, setOpen] = React.useState(false);\n const menuScope = useMenuScope(__scopeContextMenu);\n const handleOpenChangeProp = useCallbackRef(onOpenChange);\n\n const handleOpenChange = React.useCallback(\n (open: boolean) => {\n setOpen(open);\n handleOpenChangeProp(open);\n },\n [handleOpenChangeProp]\n );\n\n return (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Root\n {...menuScope}\n dir={dir}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n allowPinchZoom={allowPinchZoom}\n >\n {children}\n </MenuPrimitive.Root>\n </ContextMenuProvider>\n );\n};\n\nContextMenu.displayName = CONTEXT_MENU_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_NAME = 'ContextMenuTrigger';\n\ntype ContextMenuTriggerElement = React.ElementRef<typeof Primitive.span>;\ntype PrimitiveSpanProps = Radix.ComponentPropsWithoutRef<typeof Primitive.span>;\ninterface ContextMenuTriggerProps extends PrimitiveSpanProps {}\n\nconst ContextMenuTrigger = React.forwardRef<ContextMenuTriggerElement, ContextMenuTriggerProps>(\n (props: ScopedProps<ContextMenuTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerProps } = props;\n const context = useContextMenuContext(TRIGGER_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const pointRef = React.useRef<Point>({ x: 0, y: 0 });\n const virtualRef = React.useRef({\n getBoundingClientRect: () => DOMRect.fromRect({ width: 0, height: 0, ...pointRef.current }),\n });\n const longPressTimerRef = React.useRef(0);\n const clearLongPress = React.useCallback(\n () => window.clearTimeout(longPressTimerRef.current),\n []\n );\n const handleOpen = (event: React.MouseEvent | React.PointerEvent) => {\n pointRef.current = { x: event.clientX, y: event.clientY };\n context.onOpenChange(true);\n };\n\n React.useEffect(() => clearLongPress, [clearLongPress]);\n\n return (\n <>\n <MenuPrimitive.Anchor {...menuScope} virtualRef={virtualRef} />\n <Primitive.span\n {...triggerProps}\n ref={forwardedRef}\n // prevent iOS context menu from appearing\n style={{ WebkitTouchCallout: 'none', ...props.style }}\n onContextMenu={composeEventHandlers(props.onContextMenu, (event) => {\n // clearing the long press here because some platforms already support\n // long press to trigger a `contextmenu` event\n clearLongPress();\n handleOpen(event);\n event.preventDefault();\n })}\n onPointerDown={composeEventHandlers(\n props.onPointerDown,\n whenTouchOrPen((event) => {\n // clear the long press here in case there's multiple touch points\n clearLongPress();\n longPressTimerRef.current = window.setTimeout(() => handleOpen(event), 700);\n })\n )}\n onPointerMove={composeEventHandlers(props.onPointerMove, whenTouchOrPen(clearLongPress))}\n onPointerCancel={composeEventHandlers(\n props.onPointerCancel,\n whenTouchOrPen(clearLongPress)\n )}\n onPointerUp={composeEventHandlers(props.onPointerUp, whenTouchOrPen(clearLongPress))}\n />\n </>\n );\n }\n);\n\nContextMenuTrigger.displayName = TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTENT_NAME = 'ContextMenuContent';\n\ntype ContextMenuContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuContentProps\n extends Omit<MenuContentProps, 'portalled' | 'side' | 'sideOffset' | 'align'> {}\n\nconst ContextMenuContent = React.forwardRef<ContextMenuContentElement, ContextMenuContentProps>(\n (props: ScopedProps<ContextMenuContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const hasInteractedOutsideRef = React.useRef(false);\n\n return (\n <MenuPrimitive.Content\n {...menuScope}\n {...contentProps}\n ref={forwardedRef}\n portalled\n side=\"right\"\n sideOffset={2}\n align=\"start\"\n onCloseAutoFocus={(event) => {\n props.onCloseAutoFocus?.(event);\n\n if (!event.defaultPrevented && hasInteractedOutsideRef.current) {\n event.preventDefault();\n }\n\n hasInteractedOutsideRef.current = false;\n }}\n onInteractOutside={(event) => {\n props.onInteractOutside?.(event);\n\n if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;\n }}\n style={{\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n }}\n />\n );\n }\n);\n\nContextMenuContent.displayName = CONTENT_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst GROUP_NAME = 'ContextMenuGroup';\n\ntype ContextMenuGroupElement = React.ElementRef<typeof MenuPrimitive.Group>;\ntype MenuGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Group>;\ninterface ContextMenuGroupProps extends MenuGroupProps {}\n\nconst ContextMenuGroup = React.forwardRef<ContextMenuGroupElement, ContextMenuGroupProps>(\n (props: ScopedProps<ContextMenuGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...groupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Group {...menuScope} {...groupProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuGroup.displayName = GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuLabel\n * -----------------------------------------------------------------------------------------------*/\n\nconst LABEL_NAME = 'ContextMenuLabel';\n\ntype ContextMenuLabelElement = React.ElementRef<typeof MenuPrimitive.Label>;\ntype MenuLabelProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Label>;\ninterface ContextMenuLabelProps extends MenuLabelProps {}\n\nconst ContextMenuLabel = React.forwardRef<ContextMenuLabelElement, ContextMenuLabelProps>(\n (props: ScopedProps<ContextMenuLabelProps>, forwardedRef) => {\n const { __scopeContextMenu, ...labelProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Label {...menuScope} {...labelProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuLabel.displayName = LABEL_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst ITEM_NAME = 'ContextMenuItem';\n\ntype ContextMenuItemElement = React.ElementRef<typeof MenuPrimitive.Item>;\ntype MenuItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Item>;\ninterface ContextMenuItemProps extends MenuItemProps {}\n\nconst ContextMenuItem = React.forwardRef<ContextMenuItemElement, ContextMenuItemProps>(\n (props: ScopedProps<ContextMenuItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Item {...menuScope} {...itemProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuItem.displayName = ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuCheckboxItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';\n\ntype ContextMenuCheckboxItemElement = React.ElementRef<typeof MenuPrimitive.CheckboxItem>;\ntype MenuCheckboxItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>;\ninterface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}\n\nconst ContextMenuCheckboxItem = React.forwardRef<\n ContextMenuCheckboxItemElement,\n ContextMenuCheckboxItemProps\n>((props: ScopedProps<ContextMenuCheckboxItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...checkboxItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.CheckboxItem {...menuScope} {...checkboxItemProps} ref={forwardedRef} />;\n});\n\nContextMenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_GROUP_NAME = 'ContextMenuRadioGroup';\n\ntype ContextMenuRadioGroupElement = React.ElementRef<typeof MenuPrimitive.RadioGroup>;\ntype MenuRadioGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioGroup>;\ninterface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}\n\nconst ContextMenuRadioGroup = React.forwardRef<\n ContextMenuRadioGroupElement,\n ContextMenuRadioGroupProps\n>((props: ScopedProps<ContextMenuRadioGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioGroupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioGroup {...menuScope} {...radioGroupProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioGroup.displayName = RADIO_GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_ITEM_NAME = 'ContextMenuRadioItem';\n\ntype ContextMenuRadioItemElement = React.ElementRef<typeof MenuPrimitive.RadioItem>;\ntype MenuRadioItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioItem>;\ninterface ContextMenuRadioItemProps extends MenuRadioItemProps {}\n\nconst ContextMenuRadioItem = React.forwardRef<\n ContextMenuRadioItemElement,\n ContextMenuRadioItemProps\n>((props: ScopedProps<ContextMenuRadioItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioItem {...menuScope} {...radioItemProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioItem.displayName = RADIO_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItemIndicator\n * -----------------------------------------------------------------------------------------------*/\n\nconst INDICATOR_NAME = 'ContextMenuItemIndicator';\n\ntype ContextMenuItemIndicatorElement = React.ElementRef<typeof MenuPrimitive.ItemIndicator>;\ntype MenuItemIndicatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.ItemIndicator>;\ninterface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}\n\nconst ContextMenuItemIndicator = React.forwardRef<\n ContextMenuItemIndicatorElement,\n ContextMenuItemIndicatorProps\n>((props: ScopedProps<ContextMenuItemIndicatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemIndicatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.ItemIndicator {...menuScope} {...itemIndicatorProps} ref={forwardedRef} />;\n});\n\nContextMenuItemIndicator.displayName = INDICATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSeparator\n * -----------------------------------------------------------------------------------------------*/\n\nconst SEPARATOR_NAME = 'ContextMenuSeparator';\n\ntype ContextMenuSeparatorElement = React.ElementRef<typeof MenuPrimitive.Separator>;\ntype MenuSeparatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Separator>;\ninterface ContextMenuSeparatorProps extends MenuSeparatorProps {}\n\nconst ContextMenuSeparator = React.forwardRef<\n ContextMenuSeparatorElement,\n ContextMenuSeparatorProps\n>((props: ScopedProps<ContextMenuSeparatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...separatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Separator {...menuScope} {...separatorProps} ref={forwardedRef} />;\n});\n\nContextMenuSeparator.displayName = SEPARATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuArrow\n * -----------------------------------------------------------------------------------------------*/\n\nconst ARROW_NAME = 'ContextMenuArrow';\n\ntype ContextMenuArrowElement = React.ElementRef<typeof MenuPrimitive.Arrow>;\ntype MenuArrowProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Arrow>;\ninterface ContextMenuArrowProps extends MenuArrowProps {}\n\nconst ContextMenuArrow = React.forwardRef<ContextMenuArrowElement, ContextMenuArrowProps>(\n (props: ScopedProps<ContextMenuArrowProps>, forwardedRef) => {\n const { __scopeContextMenu, ...arrowProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Arrow {...menuScope} {...arrowProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuArrow.displayName = ARROW_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSub\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_NAME = 'ContextMenuSub';\n\ninterface ContextMenuSubProps {\n children?: React.ReactNode;\n open?: boolean;\n defaultOpen?: boolean;\n onOpenChange?(open: boolean): void;\n}\n\nconst ContextMenuSub: React.FC<ContextMenuSubProps> = (props: ScopedProps<ContextMenuSubProps>) => {\n const { __scopeContextMenu, children, onOpenChange, open: openProp, defaultOpen } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n const [open, setOpen] = useControllableState({\n prop: openProp,\n defaultProp: defaultOpen,\n onChange: onOpenChange,\n });\n\n return (\n <MenuPrimitive.Sub {...menuScope} open={open} onOpenChange={setOpen}>\n {children}\n </MenuPrimitive.Sub>\n );\n};\n\nContextMenuSub.displayName = SUB_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSubTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_TRIGGER_NAME = 'ContextMenuSubTrigger';\n\ntype ContextMenuSubTriggerElement = React.ElementRef<typeof MenuPrimitive.SubTrigger>;\ntype MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;\ninterface ContextMenuSubTriggerProps extends MenuSubTriggerProps {}\n\nconst ContextMenuSubTrigger = React.forwardRef<\n ContextMenuSubTriggerElement,\n ContextMenuSubTriggerProps\n>((props: ScopedProps<ContextMenuSubTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.SubTrigger {...menuScope} {...triggerItemProps} ref={forwardedRef} />;\n});\n\nContextMenuSubTrigger.displayName = SUB_TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSubContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_CONTENT_NAME = 'ContextMenuSubContent';\n\ntype ContextMenuSubContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuSubContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubContent>;\ninterface ContextMenuSubContentProps extends MenuSubContentProps {}\n\nconst ContextMenuSubContent = React.forwardRef<\n ContextMenuSubContentElement,\n ContextMenuSubContentProps\n>((props: ScopedProps<ContextMenuSubContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...subContentProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n\n return (\n <MenuPrimitive.SubContent\n {...menuScope}\n {...subContentProps}\n ref={forwardedRef}\n style={{\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-sub-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n }}\n />\n );\n});\n\nContextMenuSubContent.displayName = SUB_CONTENT_NAME;\n\n/* -----------------------------------------------------------------------------------------------*/\n\nfunction whenTouchOrPen<E>(handler: React.PointerEventHandler<E>): React.PointerEventHandler<E> {\n return (event) => (event.pointerType !== 'mouse' ? handler(event) : undefined);\n}\n\nconst Root = ContextMenu;\nconst Trigger = ContextMenuTrigger;\nconst Content = ContextMenuContent;\nconst Group = ContextMenuGroup;\nconst Label = ContextMenuLabel;\nconst Item = ContextMenuItem;\nconst CheckboxItem = ContextMenuCheckboxItem;\nconst RadioGroup = ContextMenuRadioGroup;\nconst RadioItem = ContextMenuRadioItem;\nconst ItemIndicator = ContextMenuItemIndicator;\nconst Separator = ContextMenuSeparator;\nconst Arrow = ContextMenuArrow;\nconst Sub = ContextMenuSub;\nconst SubTrigger = ContextMenuSubTrigger;\nconst SubContent = ContextMenuSubContent;\n\nexport {\n createContextMenuScope,\n //\n ContextMenu,\n ContextMenuTrigger,\n ContextMenuContent,\n ContextMenuGroup,\n ContextMenuLabel,\n ContextMenuItem,\n ContextMenuCheckboxItem,\n ContextMenuRadioGroup,\n ContextMenuRadioItem,\n ContextMenuItemIndicator,\n ContextMenuSeparator,\n ContextMenuArrow,\n ContextMenuSub,\n ContextMenuSubTrigger,\n ContextMenuSubContent,\n //\n Root,\n Trigger,\n Content,\n Group,\n Label,\n Item,\n CheckboxItem,\n RadioGroup,\n RadioItem,\n ItemIndicator,\n Separator,\n Arrow,\n Sub,\n SubTrigger,\n SubContent,\n};\nexport type {\n ContextMenuProps,\n ContextMenuTriggerProps,\n ContextMenuContentProps,\n ContextMenuGroupProps,\n ContextMenuLabelProps,\n ContextMenuItemProps,\n ContextMenuCheckboxItemProps,\n ContextMenuRadioGroupProps,\n ContextMenuRadioItemProps,\n ContextMenuItemIndicatorProps,\n ContextMenuSeparatorProps,\n ContextMenuArrowProps,\n ContextMenuSubProps,\n ContextMenuSubTriggerProps,\n ContextMenuSubContentProps,\n};\n"],"names":["React","composeEventHandlers","createContextScope","Primitive","MenuPrimitive","createMenuScope","useCallbackRef","useControllableState","CONTEXT_MENU_NAME","createContextMenuContext","createContextMenuScope","useMenuScope","ContextMenuProvider","useContextMenuContext","ContextMenu","props","__scopeContextMenu","children","onOpenChange","dir","modal","allowPinchZoom","open","setOpen","useState","menuScope","handleOpenChangeProp","handleOpenChange","useCallback","TRIGGER_NAME","ContextMenuTrigger","forwardRef","forwardedRef","triggerProps","context","pointRef","useRef","x","y","virtualRef","getBoundingClientRect","DOMRect","fromRect","width","height","current","longPressTimerRef","clearLongPress","window","clearTimeout","handleOpen","event","clientX","clientY","useEffect","WebkitTouchCallout","style","onContextMenu","preventDefault","onPointerDown","whenTouchOrPen","setTimeout","onPointerMove","onPointerCancel","onPointerUp","CONTENT_NAME","ContextMenuContent","contentProps","hasInteractedOutsideRef","onCloseAutoFocus","defaultPrevented","onInteractOutside","GROUP_NAME","ContextMenuGroup","groupProps","LABEL_NAME","ContextMenuLabel","labelProps","ITEM_NAME","ContextMenuItem","itemProps","CHECKBOX_ITEM_NAME","ContextMenuCheckboxItem","checkboxItemProps","RADIO_GROUP_NAME","ContextMenuRadioGroup","radioGroupProps","RADIO_ITEM_NAME","ContextMenuRadioItem","radioItemProps","INDICATOR_NAME","ContextMenuItemIndicator","itemIndicatorProps","SEPARATOR_NAME","ContextMenuSeparator","separatorProps","ARROW_NAME","ContextMenuArrow","arrowProps","SUB_NAME","ContextMenuSub","openProp","defaultOpen","prop","defaultProp","onChange","SUB_TRIGGER_NAME","ContextMenuSubTrigger","triggerItemProps","SUB_CONTENT_NAME","ContextMenuSubContent","subContentProps","handler","pointerType","undefined","Root","Trigger","Content","Group","Label","Item","CheckboxItem","RadioGroup","RadioItem","ItemIndicator","Separator","Arrow","Sub","SubTrigger","SubContent"],"version":3,"file":"index.js.map"}
|
package/dist/index.module.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import $3TiJz$babelruntimehelpersesmextends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import {useState as $3TiJz$useState, useCallback as $3TiJz$useCallback, createElement as $3TiJz$createElement, forwardRef as $3TiJz$forwardRef, useRef as $3TiJz$useRef, useEffect as $3TiJz$useEffect} from "react";
|
|
2
|
+
import {useState as $3TiJz$useState, useCallback as $3TiJz$useCallback, createElement as $3TiJz$createElement, forwardRef as $3TiJz$forwardRef, useRef as $3TiJz$useRef, useEffect as $3TiJz$useEffect, Fragment as $3TiJz$Fragment} from "react";
|
|
3
3
|
import {composeEventHandlers as $3TiJz$composeEventHandlers} from "@radix-ui/primitive";
|
|
4
4
|
import {createContextScope as $3TiJz$createContextScope} from "@radix-ui/react-context";
|
|
5
5
|
import {Primitive as $3TiJz$Primitive} from "@radix-ui/react-primitive";
|
|
6
|
-
import {createMenuScope as $3TiJz$createMenuScope,
|
|
6
|
+
import {createMenuScope as $3TiJz$createMenuScope, Root as $3TiJz$Root, Anchor as $3TiJz$Anchor, Content as $3TiJz$Content, Group as $3TiJz$Group, Label as $3TiJz$Label, Item as $3TiJz$Item, CheckboxItem as $3TiJz$CheckboxItem, RadioGroup as $3TiJz$RadioGroup, RadioItem as $3TiJz$RadioItem, ItemIndicator as $3TiJz$ItemIndicator, Separator as $3TiJz$Separator, Arrow as $3TiJz$Arrow, Sub as $3TiJz$Sub, SubTrigger as $3TiJz$SubTrigger, SubContent as $3TiJz$SubContent} from "@radix-ui/react-menu";
|
|
7
7
|
import {useCallbackRef as $3TiJz$useCallbackRef} from "@radix-ui/react-use-callback-ref";
|
|
8
|
+
import {useControllableState as $3TiJz$useControllableState} from "@radix-ui/react-use-controllable-state";
|
|
8
9
|
|
|
9
10
|
function $parcel$export(e, n, v, s) {
|
|
10
11
|
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
@@ -18,26 +19,31 @@ $parcel$export($1b0217ee4a91d156$exports, "ContextMenuContent", () => $1b0217ee4
|
|
|
18
19
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuGroup", () => $1b0217ee4a91d156$export$9860523b0fcdd664);
|
|
19
20
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuLabel", () => $1b0217ee4a91d156$export$d4b9d3b609a10742);
|
|
20
21
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuItem", () => $1b0217ee4a91d156$export$16a26dc176a49100);
|
|
21
|
-
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuTriggerItem", () => $1b0217ee4a91d156$export$105a322f21932c2b);
|
|
22
22
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuCheckboxItem", () => $1b0217ee4a91d156$export$b6adbe51d5d8b7ec);
|
|
23
23
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuRadioGroup", () => $1b0217ee4a91d156$export$db5c89af5ed9aa07);
|
|
24
24
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuRadioItem", () => $1b0217ee4a91d156$export$8a727d09a7d9bfc2);
|
|
25
25
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuItemIndicator", () => $1b0217ee4a91d156$export$9ed8194dee42d94b);
|
|
26
26
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuSeparator", () => $1b0217ee4a91d156$export$8d6b009fadfe1207);
|
|
27
27
|
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuArrow", () => $1b0217ee4a91d156$export$f47d0a58228a61e2);
|
|
28
|
+
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuSub", () => $1b0217ee4a91d156$export$5bc21d1c00c4b201);
|
|
29
|
+
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuSubTrigger", () => $1b0217ee4a91d156$export$30b2b5c64556d316);
|
|
30
|
+
$parcel$export($1b0217ee4a91d156$exports, "ContextMenuSubContent", () => $1b0217ee4a91d156$export$2c967063bd2dc512);
|
|
28
31
|
$parcel$export($1b0217ee4a91d156$exports, "Root", () => $1b0217ee4a91d156$export$be92b6f5f03c0fe9);
|
|
29
32
|
$parcel$export($1b0217ee4a91d156$exports, "Trigger", () => $1b0217ee4a91d156$export$41fb9f06171c75f4);
|
|
30
33
|
$parcel$export($1b0217ee4a91d156$exports, "Content", () => $1b0217ee4a91d156$export$7c6e2c02157bb7d2);
|
|
31
34
|
$parcel$export($1b0217ee4a91d156$exports, "Group", () => $1b0217ee4a91d156$export$eb2fcfdbd7ba97d4);
|
|
32
35
|
$parcel$export($1b0217ee4a91d156$exports, "Label", () => $1b0217ee4a91d156$export$b04be29aa201d4f5);
|
|
33
36
|
$parcel$export($1b0217ee4a91d156$exports, "Item", () => $1b0217ee4a91d156$export$6d08773d2e66f8f2);
|
|
34
|
-
$parcel$export($1b0217ee4a91d156$exports, "TriggerItem", () => $1b0217ee4a91d156$export$6d0911d397e3b965);
|
|
35
37
|
$parcel$export($1b0217ee4a91d156$exports, "CheckboxItem", () => $1b0217ee4a91d156$export$16ce288f89fa631c);
|
|
36
38
|
$parcel$export($1b0217ee4a91d156$exports, "RadioGroup", () => $1b0217ee4a91d156$export$a98f0dcb43a68a25);
|
|
37
39
|
$parcel$export($1b0217ee4a91d156$exports, "RadioItem", () => $1b0217ee4a91d156$export$371ab307eab489c0);
|
|
38
40
|
$parcel$export($1b0217ee4a91d156$exports, "ItemIndicator", () => $1b0217ee4a91d156$export$c3468e2714d175fa);
|
|
39
41
|
$parcel$export($1b0217ee4a91d156$exports, "Separator", () => $1b0217ee4a91d156$export$1ff3c3f08ae963c0);
|
|
40
42
|
$parcel$export($1b0217ee4a91d156$exports, "Arrow", () => $1b0217ee4a91d156$export$21b07c8f274aebd5);
|
|
43
|
+
$parcel$export($1b0217ee4a91d156$exports, "Sub", () => $1b0217ee4a91d156$export$d7a01e11500dfb6f);
|
|
44
|
+
$parcel$export($1b0217ee4a91d156$exports, "SubTrigger", () => $1b0217ee4a91d156$export$2ea8a7a591ac5eac);
|
|
45
|
+
$parcel$export($1b0217ee4a91d156$exports, "SubContent", () => $1b0217ee4a91d156$export$6d4de93b380beddf);
|
|
46
|
+
|
|
41
47
|
|
|
42
48
|
|
|
43
49
|
|
|
@@ -55,9 +61,8 @@ const [$1b0217ee4a91d156$var$createContextMenuContext, $1b0217ee4a91d156$export$
|
|
|
55
61
|
const $1b0217ee4a91d156$var$useMenuScope = $3TiJz$createMenuScope();
|
|
56
62
|
const [$1b0217ee4a91d156$var$ContextMenuProvider, $1b0217ee4a91d156$var$useContextMenuContext] = $1b0217ee4a91d156$var$createContextMenuContext($1b0217ee4a91d156$var$CONTEXT_MENU_NAME);
|
|
57
63
|
const $1b0217ee4a91d156$export$8dc6765e8be191c7 = (props)=>{
|
|
58
|
-
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , dir: dir , modal: modal = true } = props;
|
|
64
|
+
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , dir: dir , modal: modal = true , allowPinchZoom: allowPinchZoom } = props;
|
|
59
65
|
const [open1, setOpen] = $3TiJz$useState(false);
|
|
60
|
-
const contentContext = $1b0217ee4a91d156$var$useContentContext($1b0217ee4a91d156$var$CONTEXT_MENU_NAME, __scopeContextMenu);
|
|
61
66
|
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
62
67
|
const handleOpenChangeProp = $3TiJz$useCallbackRef(onOpenChange);
|
|
63
68
|
const handleOpenChange = $3TiJz$useCallback((open)=>{
|
|
@@ -66,18 +71,8 @@ const $1b0217ee4a91d156$export$8dc6765e8be191c7 = (props)=>{
|
|
|
66
71
|
}, [
|
|
67
72
|
handleOpenChangeProp
|
|
68
73
|
]);
|
|
69
|
-
return
|
|
74
|
+
return /*#__PURE__*/ $3TiJz$createElement($1b0217ee4a91d156$var$ContextMenuProvider, {
|
|
70
75
|
scope: __scopeContextMenu,
|
|
71
|
-
isRootMenu: false,
|
|
72
|
-
open: open1,
|
|
73
|
-
onOpenChange: handleOpenChange,
|
|
74
|
-
modal: modal
|
|
75
|
-
}, /*#__PURE__*/ $3TiJz$createElement($3TiJz$Sub, $3TiJz$babelruntimehelpersesmextends({}, menuScope, {
|
|
76
|
-
open: open1,
|
|
77
|
-
onOpenChange: handleOpenChange
|
|
78
|
-
}), children)) : /*#__PURE__*/ $3TiJz$createElement($1b0217ee4a91d156$var$ContextMenuProvider, {
|
|
79
|
-
scope: __scopeContextMenu,
|
|
80
|
-
isRootMenu: true,
|
|
81
76
|
open: open1,
|
|
82
77
|
onOpenChange: handleOpenChange,
|
|
83
78
|
modal: modal
|
|
@@ -85,7 +80,8 @@ const $1b0217ee4a91d156$export$8dc6765e8be191c7 = (props)=>{
|
|
|
85
80
|
dir: dir,
|
|
86
81
|
open: open1,
|
|
87
82
|
onOpenChange: handleOpenChange,
|
|
88
|
-
modal: modal
|
|
83
|
+
modal: modal,
|
|
84
|
+
allowPinchZoom: allowPinchZoom
|
|
89
85
|
}), children));
|
|
90
86
|
};
|
|
91
87
|
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$8dc6765e8be191c7, {
|
|
@@ -123,10 +119,7 @@ const $1b0217ee4a91d156$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $3TiJz$forwardRe
|
|
|
123
119
|
, [
|
|
124
120
|
clearLongPress
|
|
125
121
|
]);
|
|
126
|
-
return /*#__PURE__*/ $3TiJz$createElement($
|
|
127
|
-
scope: __scopeContextMenu,
|
|
128
|
-
isInsideContent: false
|
|
129
|
-
}, /*#__PURE__*/ $3TiJz$createElement($3TiJz$Anchor, $3TiJz$babelruntimehelpersesmextends({}, menuScope, {
|
|
122
|
+
return /*#__PURE__*/ $3TiJz$createElement($3TiJz$Fragment, null, /*#__PURE__*/ $3TiJz$createElement($3TiJz$Anchor, $3TiJz$babelruntimehelpersesmextends({}, menuScope, {
|
|
130
123
|
virtualRef: virtualRef
|
|
131
124
|
})), /*#__PURE__*/ $3TiJz$createElement($3TiJz$Primitive.span, $3TiJz$babelruntimehelpersesmextends({}, triggerProps, {
|
|
132
125
|
ref: forwardedRef // prevent iOS context menu from appearing
|
|
@@ -139,8 +132,8 @@ const $1b0217ee4a91d156$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $3TiJz$forwardRe
|
|
|
139
132
|
// clearing the long press here because some platforms already support
|
|
140
133
|
// long press to trigger a `contextmenu` event
|
|
141
134
|
clearLongPress();
|
|
142
|
-
event.preventDefault();
|
|
143
135
|
handleOpen(event);
|
|
136
|
+
event.preventDefault();
|
|
144
137
|
}),
|
|
145
138
|
onPointerDown: $3TiJz$composeEventHandlers(props.onPointerDown, $1b0217ee4a91d156$var$whenTouchOrPen((event)=>{
|
|
146
139
|
// clear the long press here in case there's multiple touch points
|
|
@@ -159,36 +152,7 @@ const $1b0217ee4a91d156$export$be6fc7b1d5b0beb9 = /*#__PURE__*/ $3TiJz$forwardRe
|
|
|
159
152
|
/* -------------------------------------------------------------------------------------------------
|
|
160
153
|
* ContextMenuContent
|
|
161
154
|
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$CONTENT_NAME = 'ContextMenuContent';
|
|
162
|
-
const [$1b0217ee4a91d156$var$ContentProvider, $1b0217ee4a91d156$var$useContentContext] = $1b0217ee4a91d156$var$createContextMenuContext($1b0217ee4a91d156$var$CONTENT_NAME, {
|
|
163
|
-
isInsideContent: false
|
|
164
|
-
});
|
|
165
155
|
const $1b0217ee4a91d156$export$572205900c9369e = /*#__PURE__*/ $3TiJz$forwardRef((props, forwardedRef)=>{
|
|
166
|
-
const { __scopeContextMenu: __scopeContextMenu , ...contentProps } = props;
|
|
167
|
-
const context = $1b0217ee4a91d156$var$useContextMenuContext($1b0217ee4a91d156$var$CONTENT_NAME, __scopeContextMenu);
|
|
168
|
-
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
169
|
-
const commonProps = {
|
|
170
|
-
...contentProps,
|
|
171
|
-
style: {
|
|
172
|
-
...props.style,
|
|
173
|
-
// re-namespace exposed content custom property
|
|
174
|
-
['--radix-context-menu-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
175
|
-
}
|
|
176
|
-
};
|
|
177
|
-
return /*#__PURE__*/ $3TiJz$createElement($1b0217ee4a91d156$var$ContentProvider, {
|
|
178
|
-
scope: __scopeContextMenu,
|
|
179
|
-
isInsideContent: true
|
|
180
|
-
}, context.isRootMenu ? /*#__PURE__*/ $3TiJz$createElement($1b0217ee4a91d156$var$ContextMenuRootContent, $3TiJz$babelruntimehelpersesmextends({
|
|
181
|
-
__scopeContextMenu: __scopeContextMenu
|
|
182
|
-
}, commonProps, {
|
|
183
|
-
ref: forwardedRef
|
|
184
|
-
})) : /*#__PURE__*/ $3TiJz$createElement($3TiJz$Content, $3TiJz$babelruntimehelpersesmextends({}, menuScope, commonProps, {
|
|
185
|
-
ref: forwardedRef
|
|
186
|
-
})));
|
|
187
|
-
});
|
|
188
|
-
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$572205900c9369e, {
|
|
189
|
-
displayName: $1b0217ee4a91d156$var$CONTENT_NAME
|
|
190
|
-
});
|
|
191
|
-
/* ---------------------------------------------------------------------------------------------- */ const $1b0217ee4a91d156$var$ContextMenuRootContent = /*#__PURE__*/ $3TiJz$forwardRef((props, forwardedRef)=>{
|
|
192
156
|
const { __scopeContextMenu: __scopeContextMenu , ...contentProps } = props;
|
|
193
157
|
const context = $1b0217ee4a91d156$var$useContextMenuContext($1b0217ee4a91d156$var$CONTENT_NAME, __scopeContextMenu);
|
|
194
158
|
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
@@ -209,9 +173,17 @@ const $1b0217ee4a91d156$export$572205900c9369e = /*#__PURE__*/ $3TiJz$forwardRef
|
|
|
209
173
|
var _props$onInteractOuts;
|
|
210
174
|
(_props$onInteractOuts = props.onInteractOutside) === null || _props$onInteractOuts === void 0 || _props$onInteractOuts.call(props, event);
|
|
211
175
|
if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;
|
|
176
|
+
},
|
|
177
|
+
style: {
|
|
178
|
+
...props.style,
|
|
179
|
+
// re-namespace exposed content custom property
|
|
180
|
+
['--radix-context-menu-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
212
181
|
}
|
|
213
182
|
}));
|
|
214
183
|
});
|
|
184
|
+
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$572205900c9369e, {
|
|
185
|
+
displayName: $1b0217ee4a91d156$var$CONTENT_NAME
|
|
186
|
+
});
|
|
215
187
|
/* -------------------------------------------------------------------------------------------------
|
|
216
188
|
* ContextMenuGroup
|
|
217
189
|
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$GROUP_NAME = 'ContextMenuGroup';
|
|
@@ -251,19 +223,6 @@ const $1b0217ee4a91d156$export$16a26dc176a49100 = /*#__PURE__*/ $3TiJz$forwardRe
|
|
|
251
223
|
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$16a26dc176a49100, {
|
|
252
224
|
displayName: $1b0217ee4a91d156$var$ITEM_NAME
|
|
253
225
|
});
|
|
254
|
-
/* -------------------------------------------------------------------------------------------------
|
|
255
|
-
* ContextMenuTriggerItem
|
|
256
|
-
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$TRIGGER_ITEM_NAME = 'ContextMenuTriggerItem';
|
|
257
|
-
const $1b0217ee4a91d156$export$105a322f21932c2b = /*#__PURE__*/ $3TiJz$forwardRef((props, forwardedRef)=>{
|
|
258
|
-
const { __scopeContextMenu: __scopeContextMenu , ...triggerItemProps } = props;
|
|
259
|
-
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
260
|
-
return /*#__PURE__*/ $3TiJz$createElement($3TiJz$SubTrigger, $3TiJz$babelruntimehelpersesmextends({}, menuScope, triggerItemProps, {
|
|
261
|
-
ref: forwardedRef
|
|
262
|
-
}));
|
|
263
|
-
});
|
|
264
|
-
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$105a322f21932c2b, {
|
|
265
|
-
displayName: $1b0217ee4a91d156$var$TRIGGER_ITEM_NAME
|
|
266
|
-
});
|
|
267
226
|
/* -------------------------------------------------------------------------------------------------
|
|
268
227
|
* ContextMenuCheckboxItem
|
|
269
228
|
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';
|
|
@@ -342,6 +301,56 @@ const $1b0217ee4a91d156$export$f47d0a58228a61e2 = /*#__PURE__*/ $3TiJz$forwardRe
|
|
|
342
301
|
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$f47d0a58228a61e2, {
|
|
343
302
|
displayName: $1b0217ee4a91d156$var$ARROW_NAME
|
|
344
303
|
});
|
|
304
|
+
/* -------------------------------------------------------------------------------------------------
|
|
305
|
+
* ContextMenuSub
|
|
306
|
+
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$SUB_NAME = 'ContextMenuSub';
|
|
307
|
+
const $1b0217ee4a91d156$export$5bc21d1c00c4b201 = (props)=>{
|
|
308
|
+
const { __scopeContextMenu: __scopeContextMenu , children: children , onOpenChange: onOpenChange , open: openProp , defaultOpen: defaultOpen } = props;
|
|
309
|
+
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
310
|
+
const [open, setOpen] = $3TiJz$useControllableState({
|
|
311
|
+
prop: openProp,
|
|
312
|
+
defaultProp: defaultOpen,
|
|
313
|
+
onChange: onOpenChange
|
|
314
|
+
});
|
|
315
|
+
return /*#__PURE__*/ $3TiJz$createElement($3TiJz$Sub, $3TiJz$babelruntimehelpersesmextends({}, menuScope, {
|
|
316
|
+
open: open,
|
|
317
|
+
onOpenChange: setOpen
|
|
318
|
+
}), children);
|
|
319
|
+
};
|
|
320
|
+
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$5bc21d1c00c4b201, {
|
|
321
|
+
displayName: $1b0217ee4a91d156$var$SUB_NAME
|
|
322
|
+
});
|
|
323
|
+
/* -------------------------------------------------------------------------------------------------
|
|
324
|
+
* ContextMenuSubTrigger
|
|
325
|
+
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$SUB_TRIGGER_NAME = 'ContextMenuSubTrigger';
|
|
326
|
+
const $1b0217ee4a91d156$export$30b2b5c64556d316 = /*#__PURE__*/ $3TiJz$forwardRef((props, forwardedRef)=>{
|
|
327
|
+
const { __scopeContextMenu: __scopeContextMenu , ...triggerItemProps } = props;
|
|
328
|
+
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
329
|
+
return /*#__PURE__*/ $3TiJz$createElement($3TiJz$SubTrigger, $3TiJz$babelruntimehelpersesmextends({}, menuScope, triggerItemProps, {
|
|
330
|
+
ref: forwardedRef
|
|
331
|
+
}));
|
|
332
|
+
});
|
|
333
|
+
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$30b2b5c64556d316, {
|
|
334
|
+
displayName: $1b0217ee4a91d156$var$SUB_TRIGGER_NAME
|
|
335
|
+
});
|
|
336
|
+
/* -------------------------------------------------------------------------------------------------
|
|
337
|
+
* ContextMenuSubContent
|
|
338
|
+
* -----------------------------------------------------------------------------------------------*/ const $1b0217ee4a91d156$var$SUB_CONTENT_NAME = 'ContextMenuSubContent';
|
|
339
|
+
const $1b0217ee4a91d156$export$2c967063bd2dc512 = /*#__PURE__*/ $3TiJz$forwardRef((props, forwardedRef)=>{
|
|
340
|
+
const { __scopeContextMenu: __scopeContextMenu , ...subContentProps } = props;
|
|
341
|
+
const menuScope = $1b0217ee4a91d156$var$useMenuScope(__scopeContextMenu);
|
|
342
|
+
return /*#__PURE__*/ $3TiJz$createElement($3TiJz$SubContent, $3TiJz$babelruntimehelpersesmextends({}, menuScope, subContentProps, {
|
|
343
|
+
ref: forwardedRef,
|
|
344
|
+
style: {
|
|
345
|
+
...props.style,
|
|
346
|
+
// re-namespace exposed content custom property
|
|
347
|
+
['--radix-context-menu-sub-content-transform-origin']: 'var(--radix-popper-transform-origin)'
|
|
348
|
+
}
|
|
349
|
+
}));
|
|
350
|
+
});
|
|
351
|
+
/*#__PURE__*/ Object.assign($1b0217ee4a91d156$export$2c967063bd2dc512, {
|
|
352
|
+
displayName: $1b0217ee4a91d156$var$SUB_CONTENT_NAME
|
|
353
|
+
});
|
|
345
354
|
/* -----------------------------------------------------------------------------------------------*/ function $1b0217ee4a91d156$var$whenTouchOrPen(handler) {
|
|
346
355
|
return (event)=>event.pointerType !== 'mouse' ? handler(event) : undefined
|
|
347
356
|
;
|
|
@@ -352,16 +361,18 @@ const $1b0217ee4a91d156$export$7c6e2c02157bb7d2 = $1b0217ee4a91d156$export$57220
|
|
|
352
361
|
const $1b0217ee4a91d156$export$eb2fcfdbd7ba97d4 = $1b0217ee4a91d156$export$9860523b0fcdd664;
|
|
353
362
|
const $1b0217ee4a91d156$export$b04be29aa201d4f5 = $1b0217ee4a91d156$export$d4b9d3b609a10742;
|
|
354
363
|
const $1b0217ee4a91d156$export$6d08773d2e66f8f2 = $1b0217ee4a91d156$export$16a26dc176a49100;
|
|
355
|
-
const $1b0217ee4a91d156$export$6d0911d397e3b965 = $1b0217ee4a91d156$export$105a322f21932c2b;
|
|
356
364
|
const $1b0217ee4a91d156$export$16ce288f89fa631c = $1b0217ee4a91d156$export$b6adbe51d5d8b7ec;
|
|
357
365
|
const $1b0217ee4a91d156$export$a98f0dcb43a68a25 = $1b0217ee4a91d156$export$db5c89af5ed9aa07;
|
|
358
366
|
const $1b0217ee4a91d156$export$371ab307eab489c0 = $1b0217ee4a91d156$export$8a727d09a7d9bfc2;
|
|
359
367
|
const $1b0217ee4a91d156$export$c3468e2714d175fa = $1b0217ee4a91d156$export$9ed8194dee42d94b;
|
|
360
368
|
const $1b0217ee4a91d156$export$1ff3c3f08ae963c0 = $1b0217ee4a91d156$export$8d6b009fadfe1207;
|
|
361
369
|
const $1b0217ee4a91d156$export$21b07c8f274aebd5 = $1b0217ee4a91d156$export$f47d0a58228a61e2;
|
|
370
|
+
const $1b0217ee4a91d156$export$d7a01e11500dfb6f = $1b0217ee4a91d156$export$5bc21d1c00c4b201;
|
|
371
|
+
const $1b0217ee4a91d156$export$2ea8a7a591ac5eac = $1b0217ee4a91d156$export$30b2b5c64556d316;
|
|
372
|
+
const $1b0217ee4a91d156$export$6d4de93b380beddf = $1b0217ee4a91d156$export$2c967063bd2dc512;
|
|
362
373
|
|
|
363
374
|
|
|
364
375
|
|
|
365
376
|
|
|
366
|
-
export {$1b0217ee4a91d156$export$1059331f43ddcc82 as createContextMenuScope, $1b0217ee4a91d156$export$8dc6765e8be191c7 as ContextMenu, $1b0217ee4a91d156$export$be6fc7b1d5b0beb9 as ContextMenuTrigger, $1b0217ee4a91d156$export$572205900c9369e as ContextMenuContent, $1b0217ee4a91d156$export$9860523b0fcdd664 as ContextMenuGroup, $1b0217ee4a91d156$export$d4b9d3b609a10742 as ContextMenuLabel, $1b0217ee4a91d156$export$16a26dc176a49100 as ContextMenuItem, $1b0217ee4a91d156$export$
|
|
377
|
+
export {$1b0217ee4a91d156$export$1059331f43ddcc82 as createContextMenuScope, $1b0217ee4a91d156$export$8dc6765e8be191c7 as ContextMenu, $1b0217ee4a91d156$export$be6fc7b1d5b0beb9 as ContextMenuTrigger, $1b0217ee4a91d156$export$572205900c9369e as ContextMenuContent, $1b0217ee4a91d156$export$9860523b0fcdd664 as ContextMenuGroup, $1b0217ee4a91d156$export$d4b9d3b609a10742 as ContextMenuLabel, $1b0217ee4a91d156$export$16a26dc176a49100 as ContextMenuItem, $1b0217ee4a91d156$export$b6adbe51d5d8b7ec as ContextMenuCheckboxItem, $1b0217ee4a91d156$export$db5c89af5ed9aa07 as ContextMenuRadioGroup, $1b0217ee4a91d156$export$8a727d09a7d9bfc2 as ContextMenuRadioItem, $1b0217ee4a91d156$export$9ed8194dee42d94b as ContextMenuItemIndicator, $1b0217ee4a91d156$export$8d6b009fadfe1207 as ContextMenuSeparator, $1b0217ee4a91d156$export$f47d0a58228a61e2 as ContextMenuArrow, $1b0217ee4a91d156$export$5bc21d1c00c4b201 as ContextMenuSub, $1b0217ee4a91d156$export$30b2b5c64556d316 as ContextMenuSubTrigger, $1b0217ee4a91d156$export$2c967063bd2dc512 as ContextMenuSubContent, $1b0217ee4a91d156$export$be92b6f5f03c0fe9 as Root, $1b0217ee4a91d156$export$41fb9f06171c75f4 as Trigger, $1b0217ee4a91d156$export$7c6e2c02157bb7d2 as Content, $1b0217ee4a91d156$export$eb2fcfdbd7ba97d4 as Group, $1b0217ee4a91d156$export$b04be29aa201d4f5 as Label, $1b0217ee4a91d156$export$6d08773d2e66f8f2 as Item, $1b0217ee4a91d156$export$16ce288f89fa631c as CheckboxItem, $1b0217ee4a91d156$export$a98f0dcb43a68a25 as RadioGroup, $1b0217ee4a91d156$export$371ab307eab489c0 as RadioItem, $1b0217ee4a91d156$export$c3468e2714d175fa as ItemIndicator, $1b0217ee4a91d156$export$1ff3c3f08ae963c0 as Separator, $1b0217ee4a91d156$export$21b07c8f274aebd5 as Arrow, $1b0217ee4a91d156$export$d7a01e11500dfb6f as Sub, $1b0217ee4a91d156$export$2ea8a7a591ac5eac as SubTrigger, $1b0217ee4a91d156$export$6d4de93b380beddf as SubContent};
|
|
367
378
|
//# sourceMappingURL=index.module.js.map
|
package/dist/index.module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/react/context-menu/src/index.ts","packages/react/context-menu/src/ContextMenu.tsx"],"sourcesContent":["export * from './ContextMenu';\n","import * as React from 'react';\nimport { composeEventHandlers } from '@radix-ui/primitive';\nimport { createContextScope } from '@radix-ui/react-context';\nimport { Primitive } from '@radix-ui/react-primitive';\nimport * as MenuPrimitive from '@radix-ui/react-menu';\nimport { createMenuScope } from '@radix-ui/react-menu';\nimport { useCallbackRef } from '@radix-ui/react-use-callback-ref';\n\nimport type * as Radix from '@radix-ui/react-primitive';\nimport type { Scope } from '@radix-ui/react-context';\n\ntype Direction = 'ltr' | 'rtl';\ntype Point = { x: number; y: number };\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenu\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTEXT_MENU_NAME = 'ContextMenu';\n\ntype ScopedProps<P> = P & { __scopeContextMenu?: Scope };\nconst [createContextMenuContext, createContextMenuScope] = createContextScope(CONTEXT_MENU_NAME, [\n createMenuScope,\n]);\nconst useMenuScope = createMenuScope();\n\ntype ContextMenuContextValue = {\n isRootMenu: boolean;\n open: boolean;\n onOpenChange(open: boolean): void;\n modal: boolean;\n};\n\nconst [ContextMenuProvider, useContextMenuContext] =\n createContextMenuContext<ContextMenuContextValue>(CONTEXT_MENU_NAME);\n\ninterface ContextMenuProps {\n children?: React.ReactNode;\n onOpenChange?(open: boolean): void;\n dir?: Direction;\n modal?: boolean;\n}\n\nconst ContextMenu: React.FC<ContextMenuProps> = (props: ScopedProps<ContextMenuProps>) => {\n const { __scopeContextMenu, children, onOpenChange, dir, modal = true } = props;\n const [open, setOpen] = React.useState(false);\n const contentContext = useContentContext(CONTEXT_MENU_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const handleOpenChangeProp = useCallbackRef(onOpenChange);\n\n const handleOpenChange = React.useCallback(\n (open: boolean) => {\n setOpen(open);\n handleOpenChangeProp(open);\n },\n [handleOpenChangeProp]\n );\n\n return contentContext.isInsideContent ? (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n isRootMenu={false}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Sub {...menuScope} open={open} onOpenChange={handleOpenChange}>\n {children}\n </MenuPrimitive.Sub>\n </ContextMenuProvider>\n ) : (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n isRootMenu={true}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Root\n {...menuScope}\n dir={dir}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n {children}\n </MenuPrimitive.Root>\n </ContextMenuProvider>\n );\n};\n\nContextMenu.displayName = CONTEXT_MENU_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_NAME = 'ContextMenuTrigger';\n\ntype ContextMenuTriggerElement = React.ElementRef<typeof Primitive.span>;\ntype PrimitiveSpanProps = Radix.ComponentPropsWithoutRef<typeof Primitive.span>;\ninterface ContextMenuTriggerProps extends PrimitiveSpanProps {}\n\nconst ContextMenuTrigger = React.forwardRef<ContextMenuTriggerElement, ContextMenuTriggerProps>(\n (props: ScopedProps<ContextMenuTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerProps } = props;\n const context = useContextMenuContext(TRIGGER_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const pointRef = React.useRef<Point>({ x: 0, y: 0 });\n const virtualRef = React.useRef({\n getBoundingClientRect: () => DOMRect.fromRect({ width: 0, height: 0, ...pointRef.current }),\n });\n const longPressTimerRef = React.useRef(0);\n const clearLongPress = React.useCallback(\n () => window.clearTimeout(longPressTimerRef.current),\n []\n );\n const handleOpen = (event: React.MouseEvent | React.PointerEvent) => {\n pointRef.current = { x: event.clientX, y: event.clientY };\n context.onOpenChange(true);\n };\n\n React.useEffect(() => clearLongPress, [clearLongPress]);\n\n return (\n <ContentProvider scope={__scopeContextMenu} isInsideContent={false}>\n <MenuPrimitive.Anchor {...menuScope} virtualRef={virtualRef} />\n <Primitive.span\n {...triggerProps}\n ref={forwardedRef}\n // prevent iOS context menu from appearing\n style={{ WebkitTouchCallout: 'none', ...props.style }}\n onContextMenu={composeEventHandlers(props.onContextMenu, (event) => {\n // clearing the long press here because some platforms already support\n // long press to trigger a `contextmenu` event\n clearLongPress();\n event.preventDefault();\n handleOpen(event);\n })}\n onPointerDown={composeEventHandlers(\n props.onPointerDown,\n whenTouchOrPen((event) => {\n // clear the long press here in case there's multiple touch points\n clearLongPress();\n longPressTimerRef.current = window.setTimeout(() => handleOpen(event), 700);\n })\n )}\n onPointerMove={composeEventHandlers(props.onPointerMove, whenTouchOrPen(clearLongPress))}\n onPointerCancel={composeEventHandlers(\n props.onPointerCancel,\n whenTouchOrPen(clearLongPress)\n )}\n onPointerUp={composeEventHandlers(props.onPointerUp, whenTouchOrPen(clearLongPress))}\n />\n </ContentProvider>\n );\n }\n);\n\nContextMenuTrigger.displayName = TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTENT_NAME = 'ContextMenuContent';\n\nconst [ContentProvider, useContentContext] = createContextMenuContext(CONTENT_NAME, {\n isInsideContent: false,\n});\n\ntype ContextMenuContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuContentProps extends Omit<MenuContentProps, 'portalled' | 'side' | 'align'> {}\n\nconst ContextMenuContent = React.forwardRef<ContextMenuContentElement, ContextMenuContentProps>(\n (props: ScopedProps<ContextMenuContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n\n const commonProps = {\n ...contentProps,\n style: {\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n },\n };\n\n return (\n <ContentProvider scope={__scopeContextMenu} isInsideContent={true}>\n {context.isRootMenu ? (\n <ContextMenuRootContent\n __scopeContextMenu={__scopeContextMenu}\n {...commonProps}\n ref={forwardedRef}\n />\n ) : (\n <MenuPrimitive.Content {...menuScope} {...commonProps} ref={forwardedRef} />\n )}\n </ContentProvider>\n );\n }\n);\n\nContextMenuContent.displayName = CONTENT_NAME;\n\n/* ---------------------------------------------------------------------------------------------- */\n\ntype ContextMenuRootContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuRootContentProps extends ScopedProps<MenuContentProps> {}\n\nconst ContextMenuRootContent = React.forwardRef<\n ContextMenuRootContentElement,\n ContextMenuRootContentProps\n>((props, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const hasInteractedOutsideRef = React.useRef(false);\n return (\n <MenuPrimitive.Content\n {...menuScope}\n {...contentProps}\n ref={forwardedRef}\n portalled\n side=\"right\"\n sideOffset={2}\n align=\"start\"\n onCloseAutoFocus={(event) => {\n props.onCloseAutoFocus?.(event);\n\n if (!event.defaultPrevented && hasInteractedOutsideRef.current) {\n event.preventDefault();\n }\n\n hasInteractedOutsideRef.current = false;\n }}\n onInteractOutside={(event) => {\n props.onInteractOutside?.(event);\n\n if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;\n }}\n />\n );\n});\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst GROUP_NAME = 'ContextMenuGroup';\n\ntype ContextMenuGroupElement = React.ElementRef<typeof MenuPrimitive.Group>;\ntype MenuGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Group>;\ninterface ContextMenuGroupProps extends MenuGroupProps {}\n\nconst ContextMenuGroup = React.forwardRef<ContextMenuGroupElement, ContextMenuGroupProps>(\n (props: ScopedProps<ContextMenuGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...groupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Group {...menuScope} {...groupProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuGroup.displayName = GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuLabel\n * -----------------------------------------------------------------------------------------------*/\n\nconst LABEL_NAME = 'ContextMenuLabel';\n\ntype ContextMenuLabelElement = React.ElementRef<typeof MenuPrimitive.Label>;\ntype MenuLabelProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Label>;\ninterface ContextMenuLabelProps extends MenuLabelProps {}\n\nconst ContextMenuLabel = React.forwardRef<ContextMenuLabelElement, ContextMenuLabelProps>(\n (props: ScopedProps<ContextMenuLabelProps>, forwardedRef) => {\n const { __scopeContextMenu, ...labelProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Label {...menuScope} {...labelProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuLabel.displayName = LABEL_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst ITEM_NAME = 'ContextMenuItem';\n\ntype ContextMenuItemElement = React.ElementRef<typeof MenuPrimitive.Item>;\ntype MenuItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Item>;\ninterface ContextMenuItemProps extends MenuItemProps {}\n\nconst ContextMenuItem = React.forwardRef<ContextMenuItemElement, ContextMenuItemProps>(\n (props: ScopedProps<ContextMenuItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Item {...menuScope} {...itemProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuItem.displayName = ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTriggerItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_ITEM_NAME = 'ContextMenuTriggerItem';\n\ntype ContextMenuTriggerItemElement = React.ElementRef<typeof MenuPrimitive.SubTrigger>;\ntype MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;\ninterface ContextMenuTriggerItemProps extends MenuSubTriggerProps {}\n\nconst ContextMenuTriggerItem = React.forwardRef<\n ContextMenuTriggerItemElement,\n ContextMenuTriggerItemProps\n>((props: ScopedProps<ContextMenuTriggerItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.SubTrigger {...menuScope} {...triggerItemProps} ref={forwardedRef} />;\n});\n\nContextMenuTriggerItem.displayName = TRIGGER_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuCheckboxItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';\n\ntype ContextMenuCheckboxItemElement = React.ElementRef<typeof MenuPrimitive.CheckboxItem>;\ntype MenuCheckboxItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>;\ninterface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}\n\nconst ContextMenuCheckboxItem = React.forwardRef<\n ContextMenuCheckboxItemElement,\n ContextMenuCheckboxItemProps\n>((props: ScopedProps<ContextMenuCheckboxItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...checkboxItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.CheckboxItem {...menuScope} {...checkboxItemProps} ref={forwardedRef} />;\n});\n\nContextMenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_GROUP_NAME = 'ContextMenuRadioGroup';\n\ntype ContextMenuRadioGroupElement = React.ElementRef<typeof MenuPrimitive.RadioGroup>;\ntype MenuRadioGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioGroup>;\ninterface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}\n\nconst ContextMenuRadioGroup = React.forwardRef<\n ContextMenuRadioGroupElement,\n ContextMenuRadioGroupProps\n>((props: ScopedProps<ContextMenuRadioGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioGroupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioGroup {...menuScope} {...radioGroupProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioGroup.displayName = RADIO_GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_ITEM_NAME = 'ContextMenuRadioItem';\n\ntype ContextMenuRadioItemElement = React.ElementRef<typeof MenuPrimitive.RadioItem>;\ntype MenuRadioItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioItem>;\ninterface ContextMenuRadioItemProps extends MenuRadioItemProps {}\n\nconst ContextMenuRadioItem = React.forwardRef<\n ContextMenuRadioItemElement,\n ContextMenuRadioItemProps\n>((props: ScopedProps<ContextMenuRadioItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioItem {...menuScope} {...radioItemProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioItem.displayName = RADIO_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItemIndicator\n * -----------------------------------------------------------------------------------------------*/\n\nconst INDICATOR_NAME = 'ContextMenuItemIndicator';\n\ntype ContextMenuItemIndicatorElement = React.ElementRef<typeof MenuPrimitive.ItemIndicator>;\ntype MenuItemIndicatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.ItemIndicator>;\ninterface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}\n\nconst ContextMenuItemIndicator = React.forwardRef<\n ContextMenuItemIndicatorElement,\n ContextMenuItemIndicatorProps\n>((props: ScopedProps<ContextMenuItemIndicatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemIndicatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.ItemIndicator {...menuScope} {...itemIndicatorProps} ref={forwardedRef} />;\n});\n\nContextMenuItemIndicator.displayName = INDICATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSeparator\n * -----------------------------------------------------------------------------------------------*/\n\nconst SEPARATOR_NAME = 'ContextMenuSeparator';\n\ntype ContextMenuSeparatorElement = React.ElementRef<typeof MenuPrimitive.Separator>;\ntype MenuSeparatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Separator>;\ninterface ContextMenuSeparatorProps extends MenuSeparatorProps {}\n\nconst ContextMenuSeparator = React.forwardRef<\n ContextMenuSeparatorElement,\n ContextMenuSeparatorProps\n>((props: ScopedProps<ContextMenuSeparatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...separatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Separator {...menuScope} {...separatorProps} ref={forwardedRef} />;\n});\n\nContextMenuSeparator.displayName = SEPARATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuArrow\n * -----------------------------------------------------------------------------------------------*/\n\nconst ARROW_NAME = 'ContextMenuArrow';\n\ntype ContextMenuArrowElement = React.ElementRef<typeof MenuPrimitive.Arrow>;\ntype MenuArrowProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Arrow>;\ninterface ContextMenuArrowProps extends MenuArrowProps {}\n\nconst ContextMenuArrow = React.forwardRef<ContextMenuArrowElement, ContextMenuArrowProps>(\n (props: ScopedProps<ContextMenuArrowProps>, forwardedRef) => {\n const { __scopeContextMenu, ...arrowProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Arrow {...menuScope} {...arrowProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuArrow.displayName = ARROW_NAME;\n\n/* -----------------------------------------------------------------------------------------------*/\n\nfunction whenTouchOrPen<E>(handler: React.PointerEventHandler<E>): React.PointerEventHandler<E> {\n return (event) => (event.pointerType !== 'mouse' ? handler(event) : undefined);\n}\n\nconst Root = ContextMenu;\nconst Trigger = ContextMenuTrigger;\nconst Content = ContextMenuContent;\nconst Group = ContextMenuGroup;\nconst Label = ContextMenuLabel;\nconst Item = ContextMenuItem;\nconst TriggerItem = ContextMenuTriggerItem;\nconst CheckboxItem = ContextMenuCheckboxItem;\nconst RadioGroup = ContextMenuRadioGroup;\nconst RadioItem = ContextMenuRadioItem;\nconst ItemIndicator = ContextMenuItemIndicator;\nconst Separator = ContextMenuSeparator;\nconst Arrow = ContextMenuArrow;\n\nexport {\n createContextMenuScope,\n //\n ContextMenu,\n ContextMenuTrigger,\n ContextMenuContent,\n ContextMenuGroup,\n ContextMenuLabel,\n ContextMenuItem,\n ContextMenuTriggerItem,\n ContextMenuCheckboxItem,\n ContextMenuRadioGroup,\n ContextMenuRadioItem,\n ContextMenuItemIndicator,\n ContextMenuSeparator,\n ContextMenuArrow,\n //\n Root,\n Trigger,\n Content,\n Group,\n Label,\n Item,\n TriggerItem,\n CheckboxItem,\n RadioGroup,\n RadioItem,\n ItemIndicator,\n Separator,\n Arrow,\n};\nexport type {\n ContextMenuProps,\n ContextMenuTriggerProps,\n ContextMenuContentProps,\n ContextMenuGroupProps,\n ContextMenuLabelProps,\n ContextMenuItemProps,\n ContextMenuTriggerItemProps,\n ContextMenuCheckboxItemProps,\n ContextMenuRadioGroupProps,\n ContextMenuRadioItemProps,\n ContextMenuItemIndicatorProps,\n ContextMenuSeparatorProps,\n ContextMenuArrowProps,\n};\n"],"names":["React","composeEventHandlers","createContextScope","Primitive","MenuPrimitive","createMenuScope","useCallbackRef","CONTEXT_MENU_NAME","createContextMenuContext","createContextMenuScope","useMenuScope","ContextMenuProvider","useContextMenuContext","ContextMenu","props","__scopeContextMenu","children","onOpenChange","dir","modal","open","setOpen","useState","contentContext","useContentContext","menuScope","handleOpenChangeProp","handleOpenChange","useCallback","isInsideContent","TRIGGER_NAME","ContextMenuTrigger","forwardRef","forwardedRef","triggerProps","context","pointRef","useRef","x","y","virtualRef","getBoundingClientRect","DOMRect","fromRect","width","height","current","longPressTimerRef","clearLongPress","window","clearTimeout","handleOpen","event","clientX","clientY","useEffect","WebkitTouchCallout","style","onContextMenu","preventDefault","onPointerDown","whenTouchOrPen","setTimeout","onPointerMove","onPointerCancel","onPointerUp","CONTENT_NAME","ContentProvider","ContextMenuContent","contentProps","commonProps","isRootMenu","ContextMenuRootContent","hasInteractedOutsideRef","onCloseAutoFocus","defaultPrevented","onInteractOutside","GROUP_NAME","ContextMenuGroup","groupProps","LABEL_NAME","ContextMenuLabel","labelProps","ITEM_NAME","ContextMenuItem","itemProps","TRIGGER_ITEM_NAME","ContextMenuTriggerItem","triggerItemProps","CHECKBOX_ITEM_NAME","ContextMenuCheckboxItem","checkboxItemProps","RADIO_GROUP_NAME","ContextMenuRadioGroup","radioGroupProps","RADIO_ITEM_NAME","ContextMenuRadioItem","radioItemProps","INDICATOR_NAME","ContextMenuItemIndicator","itemIndicatorProps","SEPARATOR_NAME","ContextMenuSeparator","separatorProps","ARROW_NAME","ContextMenuArrow","arrowProps","handler","pointerType","undefined","Root","Trigger","Content","Group","Label","Item","TriggerItem","CheckboxItem","RadioGroup","RadioItem","ItemIndicator","Separator","Arrow"],"version":3,"file":"index.module.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/react/context-menu/src/index.ts","packages/react/context-menu/src/ContextMenu.tsx"],"sourcesContent":["export * from './ContextMenu';\n","import * as React from 'react';\nimport { composeEventHandlers } from '@radix-ui/primitive';\nimport { createContextScope } from '@radix-ui/react-context';\nimport { Primitive } from '@radix-ui/react-primitive';\nimport * as MenuPrimitive from '@radix-ui/react-menu';\nimport { createMenuScope } from '@radix-ui/react-menu';\nimport { useCallbackRef } from '@radix-ui/react-use-callback-ref';\nimport { useControllableState } from '@radix-ui/react-use-controllable-state';\n\nimport type * as Radix from '@radix-ui/react-primitive';\nimport type { Scope } from '@radix-ui/react-context';\n\ntype Direction = 'ltr' | 'rtl';\ntype Point = { x: number; y: number };\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenu\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTEXT_MENU_NAME = 'ContextMenu';\n\ntype ScopedProps<P> = P & { __scopeContextMenu?: Scope };\nconst [createContextMenuContext, createContextMenuScope] = createContextScope(CONTEXT_MENU_NAME, [\n createMenuScope,\n]);\nconst useMenuScope = createMenuScope();\n\ntype ContextMenuContextValue = {\n open: boolean;\n onOpenChange(open: boolean): void;\n modal: boolean;\n};\n\nconst [ContextMenuProvider, useContextMenuContext] =\n createContextMenuContext<ContextMenuContextValue>(CONTEXT_MENU_NAME);\n\ntype MenuRootProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Root>;\ninterface ContextMenuProps {\n children?: React.ReactNode;\n onOpenChange?(open: boolean): void;\n dir?: Direction;\n modal?: boolean;\n /**\n * @see https://github.com/theKashey/react-remove-scroll#usage\n */\n allowPinchZoom?: MenuRootProps['allowPinchZoom'];\n}\n\nconst ContextMenu: React.FC<ContextMenuProps> = (props: ScopedProps<ContextMenuProps>) => {\n const { __scopeContextMenu, children, onOpenChange, dir, modal = true, allowPinchZoom } = props;\n const [open, setOpen] = React.useState(false);\n const menuScope = useMenuScope(__scopeContextMenu);\n const handleOpenChangeProp = useCallbackRef(onOpenChange);\n\n const handleOpenChange = React.useCallback(\n (open: boolean) => {\n setOpen(open);\n handleOpenChangeProp(open);\n },\n [handleOpenChangeProp]\n );\n\n return (\n <ContextMenuProvider\n scope={__scopeContextMenu}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n >\n <MenuPrimitive.Root\n {...menuScope}\n dir={dir}\n open={open}\n onOpenChange={handleOpenChange}\n modal={modal}\n allowPinchZoom={allowPinchZoom}\n >\n {children}\n </MenuPrimitive.Root>\n </ContextMenuProvider>\n );\n};\n\nContextMenu.displayName = CONTEXT_MENU_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst TRIGGER_NAME = 'ContextMenuTrigger';\n\ntype ContextMenuTriggerElement = React.ElementRef<typeof Primitive.span>;\ntype PrimitiveSpanProps = Radix.ComponentPropsWithoutRef<typeof Primitive.span>;\ninterface ContextMenuTriggerProps extends PrimitiveSpanProps {}\n\nconst ContextMenuTrigger = React.forwardRef<ContextMenuTriggerElement, ContextMenuTriggerProps>(\n (props: ScopedProps<ContextMenuTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerProps } = props;\n const context = useContextMenuContext(TRIGGER_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const pointRef = React.useRef<Point>({ x: 0, y: 0 });\n const virtualRef = React.useRef({\n getBoundingClientRect: () => DOMRect.fromRect({ width: 0, height: 0, ...pointRef.current }),\n });\n const longPressTimerRef = React.useRef(0);\n const clearLongPress = React.useCallback(\n () => window.clearTimeout(longPressTimerRef.current),\n []\n );\n const handleOpen = (event: React.MouseEvent | React.PointerEvent) => {\n pointRef.current = { x: event.clientX, y: event.clientY };\n context.onOpenChange(true);\n };\n\n React.useEffect(() => clearLongPress, [clearLongPress]);\n\n return (\n <>\n <MenuPrimitive.Anchor {...menuScope} virtualRef={virtualRef} />\n <Primitive.span\n {...triggerProps}\n ref={forwardedRef}\n // prevent iOS context menu from appearing\n style={{ WebkitTouchCallout: 'none', ...props.style }}\n onContextMenu={composeEventHandlers(props.onContextMenu, (event) => {\n // clearing the long press here because some platforms already support\n // long press to trigger a `contextmenu` event\n clearLongPress();\n handleOpen(event);\n event.preventDefault();\n })}\n onPointerDown={composeEventHandlers(\n props.onPointerDown,\n whenTouchOrPen((event) => {\n // clear the long press here in case there's multiple touch points\n clearLongPress();\n longPressTimerRef.current = window.setTimeout(() => handleOpen(event), 700);\n })\n )}\n onPointerMove={composeEventHandlers(props.onPointerMove, whenTouchOrPen(clearLongPress))}\n onPointerCancel={composeEventHandlers(\n props.onPointerCancel,\n whenTouchOrPen(clearLongPress)\n )}\n onPointerUp={composeEventHandlers(props.onPointerUp, whenTouchOrPen(clearLongPress))}\n />\n </>\n );\n }\n);\n\nContextMenuTrigger.displayName = TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst CONTENT_NAME = 'ContextMenuContent';\n\ntype ContextMenuContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Content>;\ninterface ContextMenuContentProps\n extends Omit<MenuContentProps, 'portalled' | 'side' | 'sideOffset' | 'align'> {}\n\nconst ContextMenuContent = React.forwardRef<ContextMenuContentElement, ContextMenuContentProps>(\n (props: ScopedProps<ContextMenuContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...contentProps } = props;\n const context = useContextMenuContext(CONTENT_NAME, __scopeContextMenu);\n const menuScope = useMenuScope(__scopeContextMenu);\n const hasInteractedOutsideRef = React.useRef(false);\n\n return (\n <MenuPrimitive.Content\n {...menuScope}\n {...contentProps}\n ref={forwardedRef}\n portalled\n side=\"right\"\n sideOffset={2}\n align=\"start\"\n onCloseAutoFocus={(event) => {\n props.onCloseAutoFocus?.(event);\n\n if (!event.defaultPrevented && hasInteractedOutsideRef.current) {\n event.preventDefault();\n }\n\n hasInteractedOutsideRef.current = false;\n }}\n onInteractOutside={(event) => {\n props.onInteractOutside?.(event);\n\n if (!event.defaultPrevented && !context.modal) hasInteractedOutsideRef.current = true;\n }}\n style={{\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n }}\n />\n );\n }\n);\n\nContextMenuContent.displayName = CONTENT_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst GROUP_NAME = 'ContextMenuGroup';\n\ntype ContextMenuGroupElement = React.ElementRef<typeof MenuPrimitive.Group>;\ntype MenuGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Group>;\ninterface ContextMenuGroupProps extends MenuGroupProps {}\n\nconst ContextMenuGroup = React.forwardRef<ContextMenuGroupElement, ContextMenuGroupProps>(\n (props: ScopedProps<ContextMenuGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...groupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Group {...menuScope} {...groupProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuGroup.displayName = GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuLabel\n * -----------------------------------------------------------------------------------------------*/\n\nconst LABEL_NAME = 'ContextMenuLabel';\n\ntype ContextMenuLabelElement = React.ElementRef<typeof MenuPrimitive.Label>;\ntype MenuLabelProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Label>;\ninterface ContextMenuLabelProps extends MenuLabelProps {}\n\nconst ContextMenuLabel = React.forwardRef<ContextMenuLabelElement, ContextMenuLabelProps>(\n (props: ScopedProps<ContextMenuLabelProps>, forwardedRef) => {\n const { __scopeContextMenu, ...labelProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Label {...menuScope} {...labelProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuLabel.displayName = LABEL_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst ITEM_NAME = 'ContextMenuItem';\n\ntype ContextMenuItemElement = React.ElementRef<typeof MenuPrimitive.Item>;\ntype MenuItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Item>;\ninterface ContextMenuItemProps extends MenuItemProps {}\n\nconst ContextMenuItem = React.forwardRef<ContextMenuItemElement, ContextMenuItemProps>(\n (props: ScopedProps<ContextMenuItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Item {...menuScope} {...itemProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuItem.displayName = ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuCheckboxItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst CHECKBOX_ITEM_NAME = 'ContextMenuCheckboxItem';\n\ntype ContextMenuCheckboxItemElement = React.ElementRef<typeof MenuPrimitive.CheckboxItem>;\ntype MenuCheckboxItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>;\ninterface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}\n\nconst ContextMenuCheckboxItem = React.forwardRef<\n ContextMenuCheckboxItemElement,\n ContextMenuCheckboxItemProps\n>((props: ScopedProps<ContextMenuCheckboxItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...checkboxItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.CheckboxItem {...menuScope} {...checkboxItemProps} ref={forwardedRef} />;\n});\n\nContextMenuCheckboxItem.displayName = CHECKBOX_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioGroup\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_GROUP_NAME = 'ContextMenuRadioGroup';\n\ntype ContextMenuRadioGroupElement = React.ElementRef<typeof MenuPrimitive.RadioGroup>;\ntype MenuRadioGroupProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioGroup>;\ninterface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}\n\nconst ContextMenuRadioGroup = React.forwardRef<\n ContextMenuRadioGroupElement,\n ContextMenuRadioGroupProps\n>((props: ScopedProps<ContextMenuRadioGroupProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioGroupProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioGroup {...menuScope} {...radioGroupProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioGroup.displayName = RADIO_GROUP_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuRadioItem\n * -----------------------------------------------------------------------------------------------*/\n\nconst RADIO_ITEM_NAME = 'ContextMenuRadioItem';\n\ntype ContextMenuRadioItemElement = React.ElementRef<typeof MenuPrimitive.RadioItem>;\ntype MenuRadioItemProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioItem>;\ninterface ContextMenuRadioItemProps extends MenuRadioItemProps {}\n\nconst ContextMenuRadioItem = React.forwardRef<\n ContextMenuRadioItemElement,\n ContextMenuRadioItemProps\n>((props: ScopedProps<ContextMenuRadioItemProps>, forwardedRef) => {\n const { __scopeContextMenu, ...radioItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.RadioItem {...menuScope} {...radioItemProps} ref={forwardedRef} />;\n});\n\nContextMenuRadioItem.displayName = RADIO_ITEM_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuItemIndicator\n * -----------------------------------------------------------------------------------------------*/\n\nconst INDICATOR_NAME = 'ContextMenuItemIndicator';\n\ntype ContextMenuItemIndicatorElement = React.ElementRef<typeof MenuPrimitive.ItemIndicator>;\ntype MenuItemIndicatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.ItemIndicator>;\ninterface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}\n\nconst ContextMenuItemIndicator = React.forwardRef<\n ContextMenuItemIndicatorElement,\n ContextMenuItemIndicatorProps\n>((props: ScopedProps<ContextMenuItemIndicatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...itemIndicatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.ItemIndicator {...menuScope} {...itemIndicatorProps} ref={forwardedRef} />;\n});\n\nContextMenuItemIndicator.displayName = INDICATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSeparator\n * -----------------------------------------------------------------------------------------------*/\n\nconst SEPARATOR_NAME = 'ContextMenuSeparator';\n\ntype ContextMenuSeparatorElement = React.ElementRef<typeof MenuPrimitive.Separator>;\ntype MenuSeparatorProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Separator>;\ninterface ContextMenuSeparatorProps extends MenuSeparatorProps {}\n\nconst ContextMenuSeparator = React.forwardRef<\n ContextMenuSeparatorElement,\n ContextMenuSeparatorProps\n>((props: ScopedProps<ContextMenuSeparatorProps>, forwardedRef) => {\n const { __scopeContextMenu, ...separatorProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Separator {...menuScope} {...separatorProps} ref={forwardedRef} />;\n});\n\nContextMenuSeparator.displayName = SEPARATOR_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuArrow\n * -----------------------------------------------------------------------------------------------*/\n\nconst ARROW_NAME = 'ContextMenuArrow';\n\ntype ContextMenuArrowElement = React.ElementRef<typeof MenuPrimitive.Arrow>;\ntype MenuArrowProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.Arrow>;\ninterface ContextMenuArrowProps extends MenuArrowProps {}\n\nconst ContextMenuArrow = React.forwardRef<ContextMenuArrowElement, ContextMenuArrowProps>(\n (props: ScopedProps<ContextMenuArrowProps>, forwardedRef) => {\n const { __scopeContextMenu, ...arrowProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.Arrow {...menuScope} {...arrowProps} ref={forwardedRef} />;\n }\n);\n\nContextMenuArrow.displayName = ARROW_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSub\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_NAME = 'ContextMenuSub';\n\ninterface ContextMenuSubProps {\n children?: React.ReactNode;\n open?: boolean;\n defaultOpen?: boolean;\n onOpenChange?(open: boolean): void;\n}\n\nconst ContextMenuSub: React.FC<ContextMenuSubProps> = (props: ScopedProps<ContextMenuSubProps>) => {\n const { __scopeContextMenu, children, onOpenChange, open: openProp, defaultOpen } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n const [open, setOpen] = useControllableState({\n prop: openProp,\n defaultProp: defaultOpen,\n onChange: onOpenChange,\n });\n\n return (\n <MenuPrimitive.Sub {...menuScope} open={open} onOpenChange={setOpen}>\n {children}\n </MenuPrimitive.Sub>\n );\n};\n\nContextMenuSub.displayName = SUB_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSubTrigger\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_TRIGGER_NAME = 'ContextMenuSubTrigger';\n\ntype ContextMenuSubTriggerElement = React.ElementRef<typeof MenuPrimitive.SubTrigger>;\ntype MenuSubTriggerProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubTrigger>;\ninterface ContextMenuSubTriggerProps extends MenuSubTriggerProps {}\n\nconst ContextMenuSubTrigger = React.forwardRef<\n ContextMenuSubTriggerElement,\n ContextMenuSubTriggerProps\n>((props: ScopedProps<ContextMenuSubTriggerProps>, forwardedRef) => {\n const { __scopeContextMenu, ...triggerItemProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n return <MenuPrimitive.SubTrigger {...menuScope} {...triggerItemProps} ref={forwardedRef} />;\n});\n\nContextMenuSubTrigger.displayName = SUB_TRIGGER_NAME;\n\n/* -------------------------------------------------------------------------------------------------\n * ContextMenuSubContent\n * -----------------------------------------------------------------------------------------------*/\n\nconst SUB_CONTENT_NAME = 'ContextMenuSubContent';\n\ntype ContextMenuSubContentElement = React.ElementRef<typeof MenuPrimitive.Content>;\ntype MenuSubContentProps = Radix.ComponentPropsWithoutRef<typeof MenuPrimitive.SubContent>;\ninterface ContextMenuSubContentProps extends MenuSubContentProps {}\n\nconst ContextMenuSubContent = React.forwardRef<\n ContextMenuSubContentElement,\n ContextMenuSubContentProps\n>((props: ScopedProps<ContextMenuSubContentProps>, forwardedRef) => {\n const { __scopeContextMenu, ...subContentProps } = props;\n const menuScope = useMenuScope(__scopeContextMenu);\n\n return (\n <MenuPrimitive.SubContent\n {...menuScope}\n {...subContentProps}\n ref={forwardedRef}\n style={{\n ...props.style,\n // re-namespace exposed content custom property\n ['--radix-context-menu-sub-content-transform-origin' as any]:\n 'var(--radix-popper-transform-origin)',\n }}\n />\n );\n});\n\nContextMenuSubContent.displayName = SUB_CONTENT_NAME;\n\n/* -----------------------------------------------------------------------------------------------*/\n\nfunction whenTouchOrPen<E>(handler: React.PointerEventHandler<E>): React.PointerEventHandler<E> {\n return (event) => (event.pointerType !== 'mouse' ? handler(event) : undefined);\n}\n\nconst Root = ContextMenu;\nconst Trigger = ContextMenuTrigger;\nconst Content = ContextMenuContent;\nconst Group = ContextMenuGroup;\nconst Label = ContextMenuLabel;\nconst Item = ContextMenuItem;\nconst CheckboxItem = ContextMenuCheckboxItem;\nconst RadioGroup = ContextMenuRadioGroup;\nconst RadioItem = ContextMenuRadioItem;\nconst ItemIndicator = ContextMenuItemIndicator;\nconst Separator = ContextMenuSeparator;\nconst Arrow = ContextMenuArrow;\nconst Sub = ContextMenuSub;\nconst SubTrigger = ContextMenuSubTrigger;\nconst SubContent = ContextMenuSubContent;\n\nexport {\n createContextMenuScope,\n //\n ContextMenu,\n ContextMenuTrigger,\n ContextMenuContent,\n ContextMenuGroup,\n ContextMenuLabel,\n ContextMenuItem,\n ContextMenuCheckboxItem,\n ContextMenuRadioGroup,\n ContextMenuRadioItem,\n ContextMenuItemIndicator,\n ContextMenuSeparator,\n ContextMenuArrow,\n ContextMenuSub,\n ContextMenuSubTrigger,\n ContextMenuSubContent,\n //\n Root,\n Trigger,\n Content,\n Group,\n Label,\n Item,\n CheckboxItem,\n RadioGroup,\n RadioItem,\n ItemIndicator,\n Separator,\n Arrow,\n Sub,\n SubTrigger,\n SubContent,\n};\nexport type {\n ContextMenuProps,\n ContextMenuTriggerProps,\n ContextMenuContentProps,\n ContextMenuGroupProps,\n ContextMenuLabelProps,\n ContextMenuItemProps,\n ContextMenuCheckboxItemProps,\n ContextMenuRadioGroupProps,\n ContextMenuRadioItemProps,\n ContextMenuItemIndicatorProps,\n ContextMenuSeparatorProps,\n ContextMenuArrowProps,\n ContextMenuSubProps,\n ContextMenuSubTriggerProps,\n ContextMenuSubContentProps,\n};\n"],"names":["React","composeEventHandlers","createContextScope","Primitive","MenuPrimitive","createMenuScope","useCallbackRef","useControllableState","CONTEXT_MENU_NAME","createContextMenuContext","createContextMenuScope","useMenuScope","ContextMenuProvider","useContextMenuContext","ContextMenu","props","__scopeContextMenu","children","onOpenChange","dir","modal","allowPinchZoom","open","setOpen","useState","menuScope","handleOpenChangeProp","handleOpenChange","useCallback","TRIGGER_NAME","ContextMenuTrigger","forwardRef","forwardedRef","triggerProps","context","pointRef","useRef","x","y","virtualRef","getBoundingClientRect","DOMRect","fromRect","width","height","current","longPressTimerRef","clearLongPress","window","clearTimeout","handleOpen","event","clientX","clientY","useEffect","WebkitTouchCallout","style","onContextMenu","preventDefault","onPointerDown","whenTouchOrPen","setTimeout","onPointerMove","onPointerCancel","onPointerUp","CONTENT_NAME","ContextMenuContent","contentProps","hasInteractedOutsideRef","onCloseAutoFocus","defaultPrevented","onInteractOutside","GROUP_NAME","ContextMenuGroup","groupProps","LABEL_NAME","ContextMenuLabel","labelProps","ITEM_NAME","ContextMenuItem","itemProps","CHECKBOX_ITEM_NAME","ContextMenuCheckboxItem","checkboxItemProps","RADIO_GROUP_NAME","ContextMenuRadioGroup","radioGroupProps","RADIO_ITEM_NAME","ContextMenuRadioItem","radioItemProps","INDICATOR_NAME","ContextMenuItemIndicator","itemIndicatorProps","SEPARATOR_NAME","ContextMenuSeparator","separatorProps","ARROW_NAME","ContextMenuArrow","arrowProps","SUB_NAME","ContextMenuSub","openProp","defaultOpen","prop","defaultProp","onChange","SUB_TRIGGER_NAME","ContextMenuSubTrigger","triggerItemProps","SUB_CONTENT_NAME","ContextMenuSubContent","subContentProps","handler","pointerType","undefined","Root","Trigger","Content","Group","Label","Item","CheckboxItem","RadioGroup","RadioItem","ItemIndicator","Separator","Arrow","Sub","SubTrigger","SubContent"],"version":3,"file":"index.module.js.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@radix-ui/react-context-menu",
|
|
3
|
-
"version": "0.1.7-rc.
|
|
3
|
+
"version": "0.1.7-rc.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,10 +18,11 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@babel/runtime": "^7.13.10",
|
|
20
20
|
"@radix-ui/primitive": "0.1.0",
|
|
21
|
-
"@radix-ui/react-context": "0.1.2-rc.
|
|
22
|
-
"@radix-ui/react-menu": "0.1.7-rc.
|
|
23
|
-
"@radix-ui/react-primitive": "0.1.5-rc.
|
|
24
|
-
"@radix-ui/react-use-callback-ref": "0.1.1-rc.
|
|
21
|
+
"@radix-ui/react-context": "0.1.2-rc.21",
|
|
22
|
+
"@radix-ui/react-menu": "0.1.7-rc.24",
|
|
23
|
+
"@radix-ui/react-primitive": "0.1.5-rc.21",
|
|
24
|
+
"@radix-ui/react-use-callback-ref": "0.1.1-rc.21",
|
|
25
|
+
"@radix-ui/react-use-controllable-state": "0.1.1-rc.21"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"react": "^16.8 || ^17.0 || ^18.0",
|