@react-spectrum/dialog
Version:
Spectrum UI components in React
64 lines (54 loc) • 2.94 kB
JavaScript
var $0eb909ad2388d989$exports = require("./context.main.js");
var $k1djg$reactspectrumoverlays = require("@react-spectrum/overlays");
var $k1djg$react = require("react");
var $k1djg$reactstatelyoverlays = require("@react-stately/overlays");
function $parcel$interopDefault(a) {
return a && a.__esModule ? a.default : a;
}
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
$parcel$export(module.exports, "DialogContainer", () => $1b7050825e0eb5b6$export$547754aada6e339f);
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
function $1b7050825e0eb5b6$export$547754aada6e339f(props) {
let { children: children, type: type = 'modal', onDismiss: onDismiss, isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled } = props;
let childArray = (0, ($parcel$interopDefault($k1djg$react))).Children.toArray(children);
if (childArray.length > 1) throw new Error('Only a single child can be passed to DialogContainer.');
let [lastChild, setLastChild] = (0, $k1djg$react.useState)(null);
// React.Children.toArray mutates the children, and we need them to be stable
// between renders so that the lastChild comparison works.
let child = undefined;
if (Array.isArray(children)) child = children.find((0, ($parcel$interopDefault($k1djg$react))).isValidElement);
else if (/*#__PURE__*/ (0, ($parcel$interopDefault($k1djg$react))).isValidElement(children)) child = children;
if (child && child !== lastChild) setLastChild(child);
let context = {
type: type,
onClose: onDismiss,
isDismissable: isDismissable
};
let state = (0, $k1djg$reactstatelyoverlays.useOverlayTriggerState)({
isOpen: !!child,
onOpenChange: (isOpen)=>{
if (!isOpen) onDismiss();
}
});
return /*#__PURE__*/ (0, ($parcel$interopDefault($k1djg$react))).createElement((0, $k1djg$reactspectrumoverlays.Modal), {
state: state,
type: type,
isDismissable: isDismissable,
isKeyboardDismissDisabled: isKeyboardDismissDisabled
}, /*#__PURE__*/ (0, ($parcel$interopDefault($k1djg$react))).createElement((0, $0eb909ad2388d989$exports.DialogContext).Provider, {
value: context
}, lastChild));
}
//# sourceMappingURL=DialogContainer.main.js.map