@tamagui/dialog 2.0.0-rc.4 → 2.0.0-rc.40
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/cjs/Dialog.cjs +622 -523
- package/dist/cjs/Dialog.native.js +658 -578
- package/dist/cjs/Dialog.native.js.map +1 -1
- package/dist/cjs/index.cjs +7 -5
- package/dist/cjs/index.native.js +7 -5
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/Dialog.mjs +581 -484
- package/dist/esm/Dialog.mjs.map +1 -1
- package/dist/esm/Dialog.native.js +617 -539
- package/dist/esm/Dialog.native.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -6
- package/dist/jsx/Dialog.mjs +581 -484
- package/dist/jsx/Dialog.mjs.map +1 -1
- package/dist/jsx/Dialog.native.js +658 -578
- package/dist/jsx/Dialog.native.js.map +1 -1
- package/dist/jsx/index.js +1 -1
- package/dist/jsx/index.js.map +1 -6
- package/dist/jsx/index.native.js +7 -5
- package/package.json +24 -27
- package/src/Dialog.tsx +102 -32
- package/types/Dialog.d.ts +37 -41
- package/types/Dialog.d.ts.map +1 -1
- package/dist/cjs/Dialog.js +0 -480
- package/dist/cjs/Dialog.js.map +0 -6
- package/dist/cjs/index.js +0 -15
- package/dist/cjs/index.js.map +0 -6
- package/dist/esm/Dialog.js +0 -493
- package/dist/esm/Dialog.js.map +0 -6
- package/dist/jsx/Dialog.js +0 -493
- package/dist/jsx/Dialog.js.map +0 -6
package/dist/cjs/Dialog.cjs
CHANGED
|
@@ -2,33 +2,35 @@ var __create = Object.create;
|
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf
|
|
6
|
-
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
7
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: true
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
15
16
|
get: () => from[key],
|
|
16
17
|
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
18
|
});
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
}
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
20
22
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
24
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
25
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
26
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
27
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
28
|
+
value: mod,
|
|
29
|
+
enumerable: true
|
|
30
|
+
}) : target, mod));
|
|
31
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
32
|
+
value: true
|
|
33
|
+
}), mod);
|
|
32
34
|
var Dialog_exports = {};
|
|
33
35
|
__export(Dialog_exports, {
|
|
34
36
|
Dialog: () => Dialog,
|
|
@@ -47,161 +49,190 @@ __export(Dialog_exports, {
|
|
|
47
49
|
useDialogContext: () => useDialogContext
|
|
48
50
|
});
|
|
49
51
|
module.exports = __toCommonJS(Dialog_exports);
|
|
50
|
-
var import_adapt = require("@tamagui/adapt")
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
52
|
+
var import_adapt = require("@tamagui/adapt");
|
|
53
|
+
var import_animate = require("@tamagui/animate");
|
|
54
|
+
var import_compose_refs = require("@tamagui/compose-refs");
|
|
55
|
+
var import_constants = require("@tamagui/constants");
|
|
56
|
+
var import_core = require("@tamagui/core");
|
|
57
|
+
var import_create_context = require("@tamagui/create-context");
|
|
58
|
+
var import_dismissable = require("@tamagui/dismissable");
|
|
59
|
+
var import_focus_scope = require("@tamagui/focus-scope");
|
|
60
|
+
var import_helpers = require("@tamagui/helpers");
|
|
61
|
+
var import_portal = require("@tamagui/portal");
|
|
62
|
+
var import_remove_scroll = require("@tamagui/remove-scroll");
|
|
63
|
+
var import_controller = require("@tamagui/sheet/controller");
|
|
64
|
+
var import_stacks = require("@tamagui/stacks");
|
|
65
|
+
var import_text = require("@tamagui/text");
|
|
66
|
+
var import_use_controllable_state = require("@tamagui/use-controllable-state");
|
|
67
|
+
var import_z_index_stack = require("@tamagui/z-index-stack");
|
|
68
|
+
var React = __toESM(require("react"), 1);
|
|
69
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
68
70
|
const DialogContext = (0, import_core.createStyledContext)(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
})
|
|
99
|
-
})
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
71
|
+
// since we always provide this we can avoid setting here
|
|
72
|
+
{}, "Dialog__");
|
|
73
|
+
const {
|
|
74
|
+
useStyledContext: useDialogContext,
|
|
75
|
+
Provider: DialogProvider
|
|
76
|
+
} = DialogContext;
|
|
77
|
+
const DialogAdaptHiddenContext = React.createContext(true);
|
|
78
|
+
const DialogTriggerFrame = (0, import_core.styled)(import_core.View, {
|
|
79
|
+
name: "DialogTrigger"
|
|
80
|
+
});
|
|
81
|
+
const DialogTrigger = DialogTriggerFrame.styleable(function DialogTrigger2(props, forwardedRef) {
|
|
82
|
+
const {
|
|
83
|
+
scope,
|
|
84
|
+
...triggerProps
|
|
85
|
+
} = props;
|
|
86
|
+
const isInsideButton = React.useContext(import_stacks.ButtonNestingContext);
|
|
87
|
+
const context = useDialogContext(scope);
|
|
88
|
+
const composedTriggerRef = (0, import_compose_refs.useComposedRefs)(forwardedRef, context.triggerRef);
|
|
89
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_stacks.ButtonNestingContext.Provider, {
|
|
90
|
+
value: true,
|
|
91
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogTriggerFrame, {
|
|
92
|
+
render: isInsideButton ? "span" : "button",
|
|
93
|
+
"aria-haspopup": "dialog",
|
|
94
|
+
"aria-expanded": context.open,
|
|
95
|
+
"aria-controls": context.contentId,
|
|
96
|
+
"data-state": getState(context.open),
|
|
97
|
+
...triggerProps,
|
|
98
|
+
ref: composedTriggerRef,
|
|
99
|
+
onPress: (0, import_helpers.composeEventHandlers)(props.onPress, context.onOpenToggle)
|
|
100
|
+
})
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
const DialogPortalFrame = (0, import_core.styled)(import_stacks.YStack, {
|
|
104
|
+
pointerEvents: "none",
|
|
105
|
+
render: "dialog",
|
|
106
|
+
variants: {
|
|
107
|
+
unstyled: {
|
|
108
|
+
false: {
|
|
109
|
+
alignItems: "center",
|
|
110
|
+
justifyContent: "center",
|
|
111
|
+
fullscreen: true,
|
|
112
|
+
"$platform-web": {
|
|
113
|
+
// undo dialog styles
|
|
114
|
+
borderWidth: 0,
|
|
115
|
+
backgroundColor: "transparent",
|
|
116
|
+
color: "inherit",
|
|
117
|
+
maxInlineSize: "none",
|
|
118
|
+
margin: 0,
|
|
119
|
+
width: "auto",
|
|
120
|
+
height: "auto",
|
|
121
|
+
// ensure always in frame and right height
|
|
122
|
+
maxHeight: "100vh",
|
|
123
|
+
position: "fixed",
|
|
124
|
+
// ensure dialog inherits stacking context from portal wrapper
|
|
125
|
+
zIndex: 1
|
|
124
126
|
}
|
|
125
127
|
}
|
|
126
|
-
},
|
|
127
|
-
defaultVariants: {
|
|
128
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
129
128
|
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
},
|
|
130
|
+
defaultVariants: {
|
|
131
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
132
|
+
}
|
|
133
|
+
});
|
|
134
|
+
const needsRepropagation = (0, import_portal.needsPortalRepropagation)();
|
|
135
|
+
const DialogPortalItem = ({
|
|
136
|
+
context,
|
|
137
|
+
children
|
|
138
|
+
}) => {
|
|
139
|
+
const themeName = (0, import_core.useThemeName)();
|
|
140
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
141
|
+
const adaptContext = (0, import_adapt.useAdaptContext)(context.adaptScope);
|
|
142
|
+
let content = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_core.Theme, {
|
|
143
|
+
name: themeName,
|
|
134
144
|
children
|
|
135
|
-
})
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
adaptContext = (0, import_adapt.useAdaptContext)(context.adaptScope);
|
|
139
|
-
let content = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_core.Theme, {
|
|
140
|
-
name: themeName,
|
|
141
|
-
children
|
|
142
|
-
});
|
|
143
|
-
return needsRepropagation && (content = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_adapt.ProvideAdaptContext, {
|
|
145
|
+
});
|
|
146
|
+
if (needsRepropagation) {
|
|
147
|
+
content = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_adapt.ProvideAdaptContext, {
|
|
144
148
|
...adaptContext,
|
|
145
149
|
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogProvider, {
|
|
146
150
|
...context,
|
|
147
151
|
children: content
|
|
148
152
|
})
|
|
149
|
-
})
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
return isAdapted ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_adapt.AdaptPortalContents, {
|
|
156
|
+
scope: context.adaptScope,
|
|
157
|
+
children: content
|
|
158
|
+
}) : context.modal ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_portal.PortalItem, {
|
|
159
|
+
hostName: context.modal ? "root" : context.adaptScope,
|
|
160
|
+
children: content
|
|
161
|
+
}) : content;
|
|
162
|
+
};
|
|
163
|
+
const DialogPortal = React.forwardRef((props, forwardRef) => {
|
|
164
|
+
const {
|
|
165
|
+
scope,
|
|
166
|
+
forceMount,
|
|
167
|
+
children,
|
|
168
|
+
...frameProps
|
|
169
|
+
} = props;
|
|
170
|
+
const dialogRef = React.useRef(null);
|
|
171
|
+
const ref = (0, import_compose_refs.composeRefs)(dialogRef, forwardRef);
|
|
172
|
+
const context = useDialogContext(scope);
|
|
173
|
+
const keepMounted = forceMount || context.keepChildrenMounted;
|
|
174
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
175
|
+
const [isFullyHidden, setIsFullyHidden] = React.useState(!context.open);
|
|
176
|
+
if (context.open && isFullyHidden) {
|
|
177
|
+
setIsFullyHidden(false);
|
|
178
|
+
}
|
|
179
|
+
const isVisible = context.open ? true : !isFullyHidden;
|
|
180
|
+
if (import_constants.isWeb) {
|
|
181
|
+
(0, import_constants.useIsomorphicLayoutEffect)(() => {
|
|
172
182
|
const node = dialogRef.current;
|
|
173
|
-
node instanceof HTMLDialogElement
|
|
183
|
+
if (!(node instanceof HTMLDialogElement)) return;
|
|
184
|
+
if (isVisible) {
|
|
185
|
+
node.show?.();
|
|
186
|
+
} else {
|
|
187
|
+
node.close?.();
|
|
188
|
+
}
|
|
174
189
|
}, [isVisible]);
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
190
|
+
}
|
|
191
|
+
const onAnimationCompleteRef = React.useRef(context.onAnimationComplete);
|
|
192
|
+
onAnimationCompleteRef.current = context.onAnimationComplete;
|
|
193
|
+
const handleExitComplete = React.useCallback(() => {
|
|
194
|
+
setIsFullyHidden(true);
|
|
195
|
+
onAnimationCompleteRef.current?.({
|
|
196
|
+
open: false
|
|
197
|
+
});
|
|
198
|
+
}, []);
|
|
199
|
+
React.useEffect(() => {
|
|
200
|
+
if (context.open && !isAdapted && onAnimationCompleteRef.current) {
|
|
201
|
+
const tm = setTimeout(() => {
|
|
202
|
+
onAnimationCompleteRef.current?.({
|
|
203
|
+
open: true
|
|
204
|
+
});
|
|
205
|
+
}, 350);
|
|
206
|
+
return () => clearTimeout(tm);
|
|
207
|
+
}
|
|
208
|
+
}, [context.open, isAdapted]);
|
|
209
|
+
const zIndex = (0, import_core.getExpandedShorthand)("zIndex", props);
|
|
210
|
+
const contents = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_z_index_stack.StackZIndexContext, {
|
|
211
|
+
zIndex: (0, import_portal.resolveViewZIndex)(zIndex),
|
|
212
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_animate.Animate, {
|
|
213
|
+
type: "presence",
|
|
214
|
+
present: Boolean(context.open),
|
|
215
|
+
keepChildrenMounted: Boolean(keepMounted),
|
|
216
|
+
onExitComplete: handleExitComplete,
|
|
217
|
+
passThrough: isAdapted,
|
|
218
|
+
children
|
|
219
|
+
})
|
|
220
|
+
});
|
|
221
|
+
const framedContents = isFullyHidden && !keepMounted && !isAdapted ? null : /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_core.LayoutMeasurementController, {
|
|
222
|
+
disable: !context.open,
|
|
223
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogPortalFrame, {
|
|
224
|
+
ref,
|
|
225
|
+
...(import_constants.isWeb && context.open && {
|
|
226
|
+
"aria-modal": true
|
|
186
227
|
}),
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
...(import_constants.isWeb && isMountedOrOpen && {
|
|
196
|
-
"aria-modal": !0
|
|
197
|
-
}),
|
|
198
|
-
pointerEvents: isMountedOrOpen ? "auto" : "none",
|
|
199
|
-
...frameProps,
|
|
200
|
-
className: "_no_backdrop " + (frameProps.className || ""),
|
|
201
|
-
children: contents
|
|
202
|
-
})
|
|
203
|
-
});
|
|
204
|
-
return import_constants.isWeb ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_portal.Portal, {
|
|
228
|
+
pointerEvents: context.open ? "auto" : "none",
|
|
229
|
+
...frameProps,
|
|
230
|
+
className: `_no_backdrop ` + (frameProps.className || ""),
|
|
231
|
+
children: contents
|
|
232
|
+
})
|
|
233
|
+
});
|
|
234
|
+
if (import_constants.isWeb) {
|
|
235
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_portal.Portal, {
|
|
205
236
|
zIndex,
|
|
206
237
|
stackZIndex: 1e5,
|
|
207
238
|
passThrough: isAdapted,
|
|
@@ -209,396 +240,464 @@ const DialogContext = (0, import_core.createStyledContext)(
|
|
|
209
240
|
passThrough: isAdapted,
|
|
210
241
|
children: framedContents
|
|
211
242
|
})
|
|
212
|
-
}) : isAdapted ? framedContents : /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogPortalItem, {
|
|
213
|
-
context,
|
|
214
|
-
children: framedContents
|
|
215
|
-
});
|
|
216
|
-
}),
|
|
217
|
-
PassthroughTheme = ({
|
|
218
|
-
children,
|
|
219
|
-
passThrough
|
|
220
|
-
}) => {
|
|
221
|
-
const themeName = (0, import_core.useThemeName)();
|
|
222
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_core.Theme, {
|
|
223
|
-
passThrough,
|
|
224
|
-
name: themeName,
|
|
225
|
-
forceClassName: !0,
|
|
226
|
-
children
|
|
227
243
|
});
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
244
|
+
}
|
|
245
|
+
return isAdapted ? framedContents : /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogPortalItem, {
|
|
246
|
+
context,
|
|
247
|
+
children: framedContents
|
|
248
|
+
});
|
|
249
|
+
});
|
|
250
|
+
const PassthroughTheme = ({
|
|
251
|
+
children,
|
|
252
|
+
passThrough
|
|
253
|
+
}) => {
|
|
254
|
+
const themeName = (0, import_core.useThemeName)();
|
|
255
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_core.Theme, {
|
|
256
|
+
passThrough,
|
|
257
|
+
name: themeName,
|
|
258
|
+
forceClassName: true,
|
|
259
|
+
children
|
|
260
|
+
});
|
|
261
|
+
};
|
|
262
|
+
const OVERLAY_NAME = "DialogOverlay";
|
|
263
|
+
const DialogOverlayFrame = (0, import_core.styled)(import_stacks.YStack, {
|
|
264
|
+
name: OVERLAY_NAME,
|
|
265
|
+
zIndex: 1,
|
|
266
|
+
variants: {
|
|
267
|
+
open: {
|
|
268
|
+
true: {
|
|
269
|
+
pointerEvents: "auto"
|
|
240
270
|
},
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
fullscreen: !0,
|
|
244
|
-
position: "absolute",
|
|
245
|
-
backgroundColor: "$background",
|
|
246
|
-
zIndex: 99999,
|
|
247
|
-
pointerEvents: "auto"
|
|
248
|
-
}
|
|
271
|
+
false: {
|
|
272
|
+
pointerEvents: "none"
|
|
249
273
|
}
|
|
250
274
|
},
|
|
251
|
-
|
|
252
|
-
|
|
275
|
+
unstyled: {
|
|
276
|
+
false: {
|
|
277
|
+
fullscreen: true,
|
|
278
|
+
position: "absolute",
|
|
279
|
+
backgroundColor: "$background",
|
|
280
|
+
pointerEvents: "auto"
|
|
281
|
+
}
|
|
253
282
|
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
// Ensure content receives pointer events (fixes React 19 + display:contents inheritance)
|
|
290
|
-
pointerEvents: "auto"
|
|
291
|
-
}
|
|
283
|
+
},
|
|
284
|
+
defaultVariants: {
|
|
285
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
const DialogOverlay = DialogOverlayFrame.styleable(function DialogOverlay2({
|
|
289
|
+
scope,
|
|
290
|
+
...props
|
|
291
|
+
}, forwardedRef) {
|
|
292
|
+
const context = useDialogContext(scope);
|
|
293
|
+
const {
|
|
294
|
+
forceMount = context.forceMount,
|
|
295
|
+
...overlayProps
|
|
296
|
+
} = props;
|
|
297
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
298
|
+
if (!forceMount) {
|
|
299
|
+
if (!context.modal || isAdapted) {
|
|
300
|
+
return null;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogOverlayFrame, {
|
|
304
|
+
"data-state": getState(context.open),
|
|
305
|
+
pointerEvents: context.open ? "auto" : "none",
|
|
306
|
+
...overlayProps,
|
|
307
|
+
ref: forwardedRef
|
|
308
|
+
});
|
|
309
|
+
});
|
|
310
|
+
const CONTENT_NAME = "DialogContent";
|
|
311
|
+
const DialogContentFrame = (0, import_core.styled)(import_stacks.ThemeableStack, {
|
|
312
|
+
name: CONTENT_NAME,
|
|
313
|
+
zIndex: 2,
|
|
314
|
+
variants: {
|
|
315
|
+
size: {
|
|
316
|
+
"...size": (val, extras) => {
|
|
317
|
+
return {};
|
|
292
318
|
}
|
|
293
319
|
},
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
320
|
+
unstyled: {
|
|
321
|
+
false: {
|
|
322
|
+
position: "relative",
|
|
323
|
+
backgroundColor: "$background",
|
|
324
|
+
borderWidth: 1,
|
|
325
|
+
borderColor: "$borderColor",
|
|
326
|
+
padding: "$true",
|
|
327
|
+
borderRadius: "$true",
|
|
328
|
+
elevate: true,
|
|
329
|
+
// Ensure content receives pointer events (fixes React 19 + display:contents inheritance)
|
|
330
|
+
pointerEvents: "auto"
|
|
331
|
+
}
|
|
297
332
|
}
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
ref: forwardedRef
|
|
313
|
-
}) : /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentNonModal, {
|
|
314
|
-
context,
|
|
315
|
-
...contentProps,
|
|
316
|
-
ref: forwardedRef
|
|
317
|
-
})
|
|
318
|
-
});
|
|
319
|
-
return !import_constants.isWeb || context.disableRemoveScroll ? contents : /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_remove_scroll.RemoveScroll, {
|
|
320
|
-
enabled: context.open,
|
|
321
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)("div", {
|
|
322
|
-
"data-remove-scroll-container": !0,
|
|
323
|
-
className: "_dsp_contents",
|
|
324
|
-
children: contents
|
|
325
|
-
})
|
|
326
|
-
});
|
|
327
|
-
}),
|
|
328
|
-
DialogContentModal = React.forwardRef(({
|
|
329
|
-
children,
|
|
330
|
-
context,
|
|
331
|
-
...props
|
|
332
|
-
}, forwardedRef) => {
|
|
333
|
-
const contentRef = React.useRef(null),
|
|
334
|
-
composedRefs = (0, import_compose_refs.useComposedRefs)(forwardedRef, context.contentRef, contentRef);
|
|
335
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentImpl, {
|
|
333
|
+
},
|
|
334
|
+
defaultVariants: {
|
|
335
|
+
size: "$true",
|
|
336
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
const DialogContent = DialogContentFrame.styleable(function DialogContent2({
|
|
340
|
+
scope,
|
|
341
|
+
...props
|
|
342
|
+
}, forwardedRef) {
|
|
343
|
+
const context = useDialogContext(scope);
|
|
344
|
+
const contents = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, {
|
|
345
|
+
children: context.modal ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentModal, {
|
|
346
|
+
context,
|
|
336
347
|
...props,
|
|
348
|
+
ref: forwardedRef
|
|
349
|
+
}) : /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentNonModal, {
|
|
337
350
|
context,
|
|
338
|
-
ref: composedRefs,
|
|
339
|
-
trapFocus: context.open,
|
|
340
|
-
disableOutsidePointerEvents: !0,
|
|
341
|
-
onCloseAutoFocus: (0, import_helpers.composeEventHandlers)(props.onCloseAutoFocus, event => {
|
|
342
|
-
event.preventDefault(), context.triggerRef.current?.focus();
|
|
343
|
-
}),
|
|
344
|
-
onPointerDownOutside: (0, import_helpers.composeEventHandlers)(props.onPointerDownOutside, event => {
|
|
345
|
-
const originalEvent = event.detail.originalEvent,
|
|
346
|
-
ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === !0;
|
|
347
|
-
(originalEvent.button === 2 || ctrlLeftClick) && event.preventDefault();
|
|
348
|
-
}),
|
|
349
|
-
onFocusOutside: (0, import_helpers.composeEventHandlers)(props.onFocusOutside, event => event.preventDefault()),
|
|
350
|
-
...(!props.unstyled && {
|
|
351
|
-
outlineStyle: "none"
|
|
352
|
-
}),
|
|
353
|
-
children
|
|
354
|
-
});
|
|
355
|
-
}),
|
|
356
|
-
DialogContentNonModal = React.forwardRef((props, forwardedRef) => {
|
|
357
|
-
const hasInteractedOutsideRef = React.useRef(!1);
|
|
358
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentImpl, {
|
|
359
351
|
...props,
|
|
360
|
-
ref: forwardedRef
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
352
|
+
ref: forwardedRef
|
|
353
|
+
})
|
|
354
|
+
});
|
|
355
|
+
if (!import_constants.isWeb || context.disableRemoveScroll) {
|
|
356
|
+
return contents;
|
|
357
|
+
}
|
|
358
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_remove_scroll.RemoveScroll, {
|
|
359
|
+
enabled: context.open,
|
|
360
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)("div", {
|
|
361
|
+
"data-remove-scroll-container": true,
|
|
362
|
+
className: "_dsp_contents",
|
|
363
|
+
children: contents
|
|
364
|
+
})
|
|
365
|
+
});
|
|
366
|
+
});
|
|
367
|
+
const DialogContentModal = React.forwardRef(({
|
|
368
|
+
children,
|
|
369
|
+
context,
|
|
370
|
+
...props
|
|
371
|
+
}, forwardedRef) => {
|
|
372
|
+
const contentRef = React.useRef(null);
|
|
373
|
+
const composedRefs = (0, import_compose_refs.useComposedRefs)(forwardedRef, context.contentRef, contentRef);
|
|
374
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentImpl, {
|
|
375
|
+
...props,
|
|
376
|
+
context,
|
|
377
|
+
ref: composedRefs,
|
|
378
|
+
trapFocus: context.open,
|
|
379
|
+
disableOutsidePointerEvents: true,
|
|
380
|
+
onCloseAutoFocus: (0, import_helpers.composeEventHandlers)(props.onCloseAutoFocus, event => {
|
|
381
|
+
event.preventDefault();
|
|
382
|
+
context.triggerRef.current?.focus();
|
|
383
|
+
}),
|
|
384
|
+
onPointerDownOutside: (0, import_helpers.composeEventHandlers)(props.onPointerDownOutside, event => {
|
|
385
|
+
const originalEvent = event["detail"].originalEvent;
|
|
386
|
+
const ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;
|
|
387
|
+
const isRightClick = originalEvent.button === 2 || ctrlLeftClick;
|
|
388
|
+
if (isRightClick) event.preventDefault();
|
|
389
|
+
}),
|
|
390
|
+
onFocusOutside: (0, import_helpers.composeEventHandlers)(props.onFocusOutside, event => event.preventDefault()),
|
|
391
|
+
...(!props.unstyled && {
|
|
392
|
+
outlineStyle: "none"
|
|
393
|
+
}),
|
|
394
|
+
children
|
|
395
|
+
});
|
|
396
|
+
});
|
|
397
|
+
const DialogContentNonModal = React.forwardRef((props, forwardedRef) => {
|
|
398
|
+
const hasInteractedOutsideRef = React.useRef(false);
|
|
399
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentImpl, {
|
|
400
|
+
...props,
|
|
401
|
+
ref: forwardedRef,
|
|
402
|
+
trapFocus: false,
|
|
403
|
+
disableOutsidePointerEvents: false,
|
|
404
|
+
onCloseAutoFocus: event => {
|
|
405
|
+
props.onCloseAutoFocus?.(event);
|
|
406
|
+
if (!event.defaultPrevented) {
|
|
407
|
+
if (!hasInteractedOutsideRef.current) {
|
|
408
|
+
props.context.triggerRef.current?.focus();
|
|
409
|
+
}
|
|
410
|
+
event.preventDefault();
|
|
372
411
|
}
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
412
|
+
hasInteractedOutsideRef.current = false;
|
|
413
|
+
},
|
|
414
|
+
onInteractOutside: event => {
|
|
415
|
+
props.onInteractOutside?.(event);
|
|
416
|
+
if (!event.defaultPrevented) hasInteractedOutsideRef.current = true;
|
|
417
|
+
const target = event.target;
|
|
418
|
+
const trigger = props.context.triggerRef.current;
|
|
419
|
+
if (!(trigger instanceof HTMLElement)) return;
|
|
420
|
+
const targetIsTrigger = trigger.contains(target);
|
|
421
|
+
if (targetIsTrigger) event.preventDefault();
|
|
422
|
+
}
|
|
423
|
+
});
|
|
424
|
+
});
|
|
425
|
+
const DialogContentImpl = React.forwardRef((props, forwardedRef) => {
|
|
426
|
+
const {
|
|
427
|
+
trapFocus,
|
|
428
|
+
onOpenAutoFocus,
|
|
429
|
+
onCloseAutoFocus,
|
|
430
|
+
disableOutsidePointerEvents,
|
|
431
|
+
onEscapeKeyDown,
|
|
432
|
+
onPointerDownOutside,
|
|
433
|
+
onFocusOutside,
|
|
434
|
+
onInteractOutside,
|
|
435
|
+
context,
|
|
436
|
+
...contentProps
|
|
437
|
+
} = props;
|
|
438
|
+
const contentRef = React.useRef(null);
|
|
439
|
+
const composedRefs = (0, import_compose_refs.useComposedRefs)(forwardedRef, contentRef);
|
|
440
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
441
|
+
const isAdaptFullyHidden = React.useContext(DialogAdaptHiddenContext);
|
|
442
|
+
if (isAdapted) {
|
|
443
|
+
if (!context.open && !context.keepChildrenMounted && isAdaptFullyHidden) {
|
|
444
|
+
return null;
|
|
445
|
+
}
|
|
446
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogPortalItem, {
|
|
391
447
|
context,
|
|
392
448
|
children: contentProps.children
|
|
393
449
|
});
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
450
|
+
}
|
|
451
|
+
const contents = /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogContentFrame, {
|
|
452
|
+
ref: composedRefs,
|
|
453
|
+
id: context.contentId,
|
|
454
|
+
role: "dialog",
|
|
455
|
+
"aria-modal": context.modal,
|
|
456
|
+
"aria-describedby": context.descriptionId,
|
|
457
|
+
"aria-labelledby": context.titleId,
|
|
458
|
+
"data-state": getState(context.open),
|
|
459
|
+
pointerEvents: context.open ? "auto" : "none",
|
|
460
|
+
...contentProps
|
|
461
|
+
});
|
|
462
|
+
if (!import_constants.isWeb) {
|
|
463
|
+
return contents;
|
|
464
|
+
}
|
|
465
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, {
|
|
466
|
+
children: [/* @__PURE__ */(0, import_jsx_runtime.jsx)(import_dismissable.Dismissable, {
|
|
467
|
+
disableOutsidePointerEvents: context.open && disableOutsidePointerEvents,
|
|
468
|
+
forceUnmount: !context.open,
|
|
469
|
+
onEscapeKeyDown,
|
|
470
|
+
onPointerDownOutside,
|
|
471
|
+
onFocusOutside,
|
|
472
|
+
onInteractOutside,
|
|
473
|
+
onDismiss: () => context?.onOpenChange?.(false),
|
|
474
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_focus_scope.FocusScope, {
|
|
475
|
+
loop: true,
|
|
476
|
+
enabled: context.open,
|
|
477
|
+
trapped: trapFocus,
|
|
478
|
+
onMountAutoFocus: onOpenAutoFocus,
|
|
408
479
|
forceUnmount: !context.open,
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
onFocusOutside,
|
|
412
|
-
onInteractOutside,
|
|
413
|
-
onDismiss: () => context?.onOpenChange?.(!1),
|
|
414
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_focus_scope.FocusScope, {
|
|
415
|
-
loop: !0,
|
|
416
|
-
enabled: context.open,
|
|
417
|
-
trapped: trapFocus,
|
|
418
|
-
onMountAutoFocus: onOpenAutoFocus,
|
|
419
|
-
forceUnmount: !context.open,
|
|
420
|
-
onUnmountAutoFocus: onCloseAutoFocus,
|
|
421
|
-
children: contents
|
|
422
|
-
})
|
|
423
|
-
}), process.env.NODE_ENV === "development" && /* @__PURE__ */(0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, {
|
|
424
|
-
children: [/* @__PURE__ */(0, import_jsx_runtime.jsx)(TitleWarning, {
|
|
425
|
-
titleId: context.titleId
|
|
426
|
-
}), /* @__PURE__ */(0, import_jsx_runtime.jsx)(DescriptionWarning, {
|
|
427
|
-
contentRef,
|
|
428
|
-
descriptionId: context.descriptionId
|
|
429
|
-
})]
|
|
430
|
-
})]
|
|
431
|
-
}) : contents;
|
|
432
|
-
}),
|
|
433
|
-
DialogTitleFrame = (0, import_core.styled)(import_text.H2, {
|
|
434
|
-
name: "DialogTitle"
|
|
435
|
-
}),
|
|
436
|
-
DialogTitle = DialogTitleFrame.styleable(function (props, forwardedRef) {
|
|
437
|
-
const {
|
|
438
|
-
scope,
|
|
439
|
-
...titleProps
|
|
440
|
-
} = props,
|
|
441
|
-
context = useDialogContext(scope);
|
|
442
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogTitleFrame, {
|
|
443
|
-
id: context.titleId,
|
|
444
|
-
...titleProps,
|
|
445
|
-
ref: forwardedRef
|
|
446
|
-
});
|
|
447
|
-
}),
|
|
448
|
-
DialogDescriptionFrame = (0, import_core.styled)(import_text.Paragraph, {
|
|
449
|
-
name: "DialogDescription"
|
|
450
|
-
}),
|
|
451
|
-
DialogDescription = DialogDescriptionFrame.styleable(function (props, forwardedRef) {
|
|
452
|
-
const {
|
|
453
|
-
scope,
|
|
454
|
-
...descriptionProps
|
|
455
|
-
} = props,
|
|
456
|
-
context = useDialogContext(scope);
|
|
457
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogDescriptionFrame, {
|
|
458
|
-
id: context.descriptionId,
|
|
459
|
-
...descriptionProps,
|
|
460
|
-
ref: forwardedRef
|
|
461
|
-
});
|
|
462
|
-
}),
|
|
463
|
-
CLOSE_NAME = "DialogClose",
|
|
464
|
-
DialogCloseFrame = (0, import_core.styled)(import_core.View, {
|
|
465
|
-
name: CLOSE_NAME,
|
|
466
|
-
render: "button"
|
|
467
|
-
}),
|
|
468
|
-
DialogClose = DialogCloseFrame.styleable((props, forwardedRef) => {
|
|
469
|
-
const {
|
|
470
|
-
scope,
|
|
471
|
-
displayWhenAdapted,
|
|
472
|
-
...closeProps
|
|
473
|
-
} = props,
|
|
474
|
-
context = useDialogContext(scope),
|
|
475
|
-
isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope),
|
|
476
|
-
isInsideButton = React.useContext(import_stacks.ButtonNestingContext);
|
|
477
|
-
return isAdapted && !displayWhenAdapted ? null : /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogCloseFrame, {
|
|
478
|
-
"aria-label": "Dialog Close",
|
|
479
|
-
render: isInsideButton ? "span" : "button",
|
|
480
|
-
...closeProps,
|
|
481
|
-
ref: forwardedRef,
|
|
482
|
-
onPress: (0, import_helpers.composeEventHandlers)(props.onPress, () => {
|
|
483
|
-
context.onOpenChange(!1);
|
|
480
|
+
onUnmountAutoFocus: onCloseAutoFocus,
|
|
481
|
+
children: contents
|
|
484
482
|
})
|
|
485
|
-
})
|
|
483
|
+
}), process.env.NODE_ENV === "development" && /* @__PURE__ */(0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, {
|
|
484
|
+
children: [/* @__PURE__ */(0, import_jsx_runtime.jsx)(TitleWarning, {
|
|
485
|
+
titleId: context.titleId
|
|
486
|
+
}), /* @__PURE__ */(0, import_jsx_runtime.jsx)(DescriptionWarning, {
|
|
487
|
+
contentRef,
|
|
488
|
+
descriptionId: context.descriptionId
|
|
489
|
+
})]
|
|
490
|
+
})]
|
|
491
|
+
});
|
|
492
|
+
});
|
|
493
|
+
const DialogTitleFrame = (0, import_core.styled)(import_text.H2, {
|
|
494
|
+
name: "DialogTitle"
|
|
495
|
+
});
|
|
496
|
+
const DialogTitle = DialogTitleFrame.styleable(function DialogTitle2(props, forwardedRef) {
|
|
497
|
+
const {
|
|
498
|
+
scope,
|
|
499
|
+
...titleProps
|
|
500
|
+
} = props;
|
|
501
|
+
const context = useDialogContext(scope);
|
|
502
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogTitleFrame, {
|
|
503
|
+
id: context.titleId,
|
|
504
|
+
...titleProps,
|
|
505
|
+
ref: forwardedRef
|
|
486
506
|
});
|
|
507
|
+
});
|
|
508
|
+
const DialogDescriptionFrame = (0, import_core.styled)(import_text.Paragraph, {
|
|
509
|
+
name: "DialogDescription"
|
|
510
|
+
});
|
|
511
|
+
const DialogDescription = DialogDescriptionFrame.styleable(function DialogDescription2(props, forwardedRef) {
|
|
512
|
+
const {
|
|
513
|
+
scope,
|
|
514
|
+
...descriptionProps
|
|
515
|
+
} = props;
|
|
516
|
+
const context = useDialogContext(scope);
|
|
517
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogDescriptionFrame, {
|
|
518
|
+
id: context.descriptionId,
|
|
519
|
+
...descriptionProps,
|
|
520
|
+
ref: forwardedRef
|
|
521
|
+
});
|
|
522
|
+
});
|
|
523
|
+
const CLOSE_NAME = "DialogClose";
|
|
524
|
+
const DialogCloseFrame = (0, import_core.styled)(import_core.View, {
|
|
525
|
+
name: CLOSE_NAME,
|
|
526
|
+
render: "button"
|
|
527
|
+
});
|
|
528
|
+
const DialogClose = DialogCloseFrame.styleable((props, forwardedRef) => {
|
|
529
|
+
const {
|
|
530
|
+
scope,
|
|
531
|
+
displayWhenAdapted,
|
|
532
|
+
...closeProps
|
|
533
|
+
} = props;
|
|
534
|
+
const context = useDialogContext(scope);
|
|
535
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
536
|
+
const isInsideButton = React.useContext(import_stacks.ButtonNestingContext);
|
|
537
|
+
if (isAdapted && !displayWhenAdapted) {
|
|
538
|
+
return null;
|
|
539
|
+
}
|
|
540
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogCloseFrame, {
|
|
541
|
+
"aria-label": "Dialog Close",
|
|
542
|
+
render: isInsideButton ? "span" : "button",
|
|
543
|
+
...closeProps,
|
|
544
|
+
ref: forwardedRef,
|
|
545
|
+
onPress: (0, import_helpers.composeEventHandlers)(props.onPress, () => {
|
|
546
|
+
context.onOpenChange(false);
|
|
547
|
+
})
|
|
548
|
+
});
|
|
549
|
+
});
|
|
487
550
|
function getState(open) {
|
|
488
551
|
return open ? "open" : "closed";
|
|
489
552
|
}
|
|
490
|
-
const TITLE_WARNING_NAME = "DialogTitleWarning"
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
553
|
+
const TITLE_WARNING_NAME = "DialogTitleWarning";
|
|
554
|
+
const [DialogWarningProvider, useWarningContext] = (0, import_create_context.createContext)(TITLE_WARNING_NAME, {
|
|
555
|
+
contentName: CONTENT_NAME,
|
|
556
|
+
titleName: "DialogTitle",
|
|
557
|
+
docsSlug: "dialog"
|
|
558
|
+
});
|
|
559
|
+
const TitleWarning = ({
|
|
560
|
+
titleId
|
|
561
|
+
}) => {
|
|
562
|
+
if (process.env.NODE_ENV === "development") {
|
|
563
|
+
const titleWarningContext = useWarningContext(TITLE_WARNING_NAME);
|
|
564
|
+
const MESSAGE = `\`${titleWarningContext.contentName}\` wants a \`${titleWarningContext.titleName}\` to be accessible. If you want to hide the \`${titleWarningContext.titleName}\`, wrap it with <VisuallyHidden />.`;
|
|
565
|
+
React.useEffect(() => {
|
|
566
|
+
if (!import_constants.isWeb) return;
|
|
567
|
+
if (titleId) {
|
|
568
|
+
const hasTitle = document.getElementById(titleId);
|
|
569
|
+
if (!hasTitle) {
|
|
570
|
+
console.warn(MESSAGE);
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
}, [MESSAGE, titleId]);
|
|
574
|
+
}
|
|
575
|
+
return null;
|
|
576
|
+
};
|
|
577
|
+
const DESCRIPTION_WARNING_NAME = "DialogDescriptionWarning";
|
|
578
|
+
const DescriptionWarning = ({
|
|
579
|
+
contentRef,
|
|
580
|
+
descriptionId
|
|
581
|
+
}) => {
|
|
582
|
+
if (process.env.NODE_ENV === "development") {
|
|
583
|
+
const descriptionWarningContext = useWarningContext(DESCRIPTION_WARNING_NAME);
|
|
584
|
+
const MESSAGE = `Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${descriptionWarningContext.contentName}}.`;
|
|
585
|
+
React.useEffect(() => {
|
|
586
|
+
if (!import_constants.isWeb) return;
|
|
587
|
+
const contentNode = contentRef.current;
|
|
588
|
+
if (!(contentNode instanceof HTMLElement)) {
|
|
589
|
+
return;
|
|
590
|
+
}
|
|
591
|
+
const describedById = contentNode.getAttribute("aria-describedby");
|
|
592
|
+
if (descriptionId && describedById) {
|
|
593
|
+
const hasDescription = document.getElementById(descriptionId);
|
|
594
|
+
if (!hasDescription) {
|
|
595
|
+
console.warn(MESSAGE);
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
}, [MESSAGE, contentRef, descriptionId]);
|
|
599
|
+
}
|
|
600
|
+
return null;
|
|
601
|
+
};
|
|
602
|
+
const Dialog = (0, import_helpers.withStaticProperties)(React.forwardRef(function Dialog2(props, ref) {
|
|
603
|
+
const {
|
|
604
|
+
scope = "",
|
|
605
|
+
children,
|
|
606
|
+
open: openProp,
|
|
607
|
+
defaultOpen = false,
|
|
608
|
+
onOpenChange,
|
|
609
|
+
modal = true,
|
|
610
|
+
keepChildrenMounted,
|
|
611
|
+
disableRemoveScroll = false,
|
|
612
|
+
onAnimationComplete
|
|
613
|
+
} = props;
|
|
614
|
+
const baseId = React.useId();
|
|
615
|
+
const dialogId = `Dialog-${scope}-${baseId}`;
|
|
616
|
+
const contentId = `${dialogId}-content`;
|
|
617
|
+
const titleId = `${dialogId}-title`;
|
|
618
|
+
const descriptionId = `${dialogId}-description`;
|
|
619
|
+
const triggerRef = React.useRef(null);
|
|
620
|
+
const contentRef = React.useRef(null);
|
|
621
|
+
const [open, setOpen] = (0, import_use_controllable_state.useControllableState)({
|
|
622
|
+
prop: openProp,
|
|
623
|
+
defaultProp: defaultOpen,
|
|
624
|
+
onChange: onOpenChange
|
|
625
|
+
});
|
|
626
|
+
const onOpenToggle = React.useCallback(() => {
|
|
627
|
+
setOpen(prevOpen => !prevOpen);
|
|
628
|
+
}, [setOpen]);
|
|
629
|
+
const adaptScope = `DialogAdapt${scope}`;
|
|
630
|
+
const context = {
|
|
631
|
+
dialogScope: scope,
|
|
632
|
+
adaptScope,
|
|
633
|
+
triggerRef,
|
|
510
634
|
contentRef,
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
},
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
} = props,
|
|
535
|
-
baseId = React.useId(),
|
|
536
|
-
dialogId = `Dialog-${scope}-${baseId}`,
|
|
537
|
-
contentId = `${dialogId}-content`,
|
|
538
|
-
titleId = `${dialogId}-title`,
|
|
539
|
-
descriptionId = `${dialogId}-description`,
|
|
540
|
-
triggerRef = React.useRef(null),
|
|
541
|
-
contentRef = React.useRef(null),
|
|
542
|
-
[open, setOpen] = (0, import_use_controllable_state.useControllableState)({
|
|
543
|
-
prop: openProp,
|
|
544
|
-
defaultProp: defaultOpen,
|
|
545
|
-
onChange: onOpenChange
|
|
546
|
-
}),
|
|
547
|
-
onOpenToggle = React.useCallback(() => {
|
|
548
|
-
setOpen(prevOpen => !prevOpen);
|
|
549
|
-
}, [setOpen]),
|
|
550
|
-
adaptScope = `DialogAdapt${scope}`,
|
|
551
|
-
context = {
|
|
552
|
-
dialogScope: scope,
|
|
553
|
-
adaptScope,
|
|
554
|
-
triggerRef,
|
|
555
|
-
contentRef,
|
|
556
|
-
contentId,
|
|
557
|
-
titleId,
|
|
558
|
-
descriptionId,
|
|
559
|
-
open,
|
|
635
|
+
contentId,
|
|
636
|
+
titleId,
|
|
637
|
+
descriptionId,
|
|
638
|
+
open,
|
|
639
|
+
onOpenChange: setOpen,
|
|
640
|
+
onOpenToggle,
|
|
641
|
+
modal,
|
|
642
|
+
keepChildrenMounted,
|
|
643
|
+
disableRemoveScroll,
|
|
644
|
+
onAnimationComplete
|
|
645
|
+
};
|
|
646
|
+
React.useImperativeHandle(ref, () => ({
|
|
647
|
+
open: setOpen
|
|
648
|
+
}), [setOpen]);
|
|
649
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_adapt.AdaptParent, {
|
|
650
|
+
scope: adaptScope,
|
|
651
|
+
portal: {
|
|
652
|
+
forwardProps: props
|
|
653
|
+
},
|
|
654
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogProvider, {
|
|
655
|
+
scope,
|
|
656
|
+
...context,
|
|
657
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogSheetController, {
|
|
560
658
|
onOpenChange: setOpen,
|
|
561
|
-
onOpenToggle,
|
|
562
|
-
modal,
|
|
563
|
-
disableRemoveScroll
|
|
564
|
-
};
|
|
565
|
-
return React.useImperativeHandle(ref, () => ({
|
|
566
|
-
open: setOpen
|
|
567
|
-
}), [setOpen]), /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_adapt.AdaptParent, {
|
|
568
|
-
scope: adaptScope,
|
|
569
|
-
portal: {
|
|
570
|
-
forwardProps: props
|
|
571
|
-
},
|
|
572
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogProvider, {
|
|
573
659
|
scope,
|
|
574
|
-
|
|
575
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogSheetController, {
|
|
576
|
-
onOpenChange: setOpen,
|
|
577
|
-
scope,
|
|
578
|
-
children
|
|
579
|
-
})
|
|
660
|
+
children
|
|
580
661
|
})
|
|
581
|
-
})
|
|
582
|
-
}), {
|
|
583
|
-
Trigger: DialogTrigger,
|
|
584
|
-
Portal: DialogPortal,
|
|
585
|
-
Overlay: DialogOverlay,
|
|
586
|
-
Content: DialogContent,
|
|
587
|
-
Title: DialogTitle,
|
|
588
|
-
Description: DialogDescription,
|
|
589
|
-
Close: DialogClose,
|
|
590
|
-
FocusScope: import_focus_scope.FocusScopeController,
|
|
591
|
-
Adapt: import_adapt.Adapt
|
|
662
|
+
})
|
|
592
663
|
});
|
|
664
|
+
}), {
|
|
665
|
+
Trigger: DialogTrigger,
|
|
666
|
+
Portal: DialogPortal,
|
|
667
|
+
Overlay: DialogOverlay,
|
|
668
|
+
Content: DialogContent,
|
|
669
|
+
Title: DialogTitle,
|
|
670
|
+
Description: DialogDescription,
|
|
671
|
+
Close: DialogClose,
|
|
672
|
+
FocusScope: import_focus_scope.FocusScopeController,
|
|
673
|
+
Adapt: import_adapt.Adapt
|
|
674
|
+
});
|
|
593
675
|
const DialogSheetController = props => {
|
|
594
|
-
const context = useDialogContext(props.scope)
|
|
595
|
-
|
|
676
|
+
const context = useDialogContext(props.scope);
|
|
677
|
+
const isAdapted = (0, import_adapt.useAdaptIsActive)(context.adaptScope);
|
|
678
|
+
const [isAdaptFullyHidden, setIsAdaptFullyHidden] = React.useState(!context.open);
|
|
679
|
+
if (context.open && isAdaptFullyHidden) {
|
|
680
|
+
setIsAdaptFullyHidden(false);
|
|
681
|
+
}
|
|
682
|
+
const handleSheetAnimationComplete = React.useCallback(({
|
|
683
|
+
open
|
|
684
|
+
}) => {
|
|
685
|
+
if (!open) {
|
|
686
|
+
setIsAdaptFullyHidden(true);
|
|
687
|
+
}
|
|
688
|
+
}, []);
|
|
596
689
|
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_controller.SheetController, {
|
|
597
690
|
onOpenChange: val => {
|
|
598
|
-
|
|
691
|
+
if (isAdapted) {
|
|
692
|
+
props.onOpenChange?.(val);
|
|
693
|
+
}
|
|
599
694
|
},
|
|
695
|
+
onAnimationComplete: handleSheetAnimationComplete,
|
|
600
696
|
open: context.open,
|
|
601
697
|
hidden: !isAdapted,
|
|
602
|
-
children:
|
|
698
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(DialogAdaptHiddenContext.Provider, {
|
|
699
|
+
value: isAdaptFullyHidden,
|
|
700
|
+
children: props.children
|
|
701
|
+
})
|
|
603
702
|
});
|
|
604
703
|
};
|