@enact/ui
Version:
A collection of simplified unstyled cross-platform UI components for Enact
93 lines (90 loc) • 4.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "FloatingLayerContext", {
enumerable: true,
get: function get() {
return _useFloatingLayerDecorator.FloatingLayerContext;
}
});
exports["default"] = exports.FloatingLayerDecorator = void 0;
Object.defineProperty(exports, "useFloatingLayerDecorator", {
enumerable: true,
get: function get() {
return _useFloatingLayerDecorator.useFloatingLayerDecorator;
}
});
var _hoc = _interopRequireDefault(require("@enact/core/hoc"));
var _useFloatingLayerDecorator = require("./useFloatingLayerDecorator");
var _jsxRuntime = require("react/jsx-runtime");
var _excluded = ["className"];
/*
* A higher-order component that adds a FloatingLayer adjacent to wrapped component.
*/
/**
* Default config for {@link ui/FloatingLayer.FloatingLayerDecorator}.
*
* @memberof ui/FloatingLayer.FloatingLayerDecorator
* @hocconfig
*/
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
var defaultConfig = {
/**
* Element Id of the floatLayer
*
* @type {String}
* @default 'floatLayer'
* @public
* @memberof ui/FloatingLayer.FloatingLayerDecorator.defaultConfig
*/
floatLayerId: 'floatLayer',
/**
* Class name to be applied to wrapped component.
* It can be used when you want to only apply
* certain styles to the wrapped component and not to the float layer.
*
* @type {String}
* @default ''
* @public
* @memberof ui/FloatingLayer.FloatingLayerDecorator.defaultConfig
*/
wrappedClassName: ''
};
/**
* A higher-order component that adds a FloatingLayer adjacent to the wrapped component.
*
* Any classes passed to the FloatingLayerDecorator will be applied to a wrapper surrounding the
* wrapped component and the floating layer. If specified in the config, `wrappedClassName` will be
* passed as `className` to the wrapped component.
*
* @class FloatingLayerDecorator
* @memberof ui/FloatingLayer
* @hoc
* @public
*/
var FloatingLayerDecorator = exports.FloatingLayerDecorator = (0, _hoc["default"])(defaultConfig, function (config, Wrapped) {
var floatLayerId = config.floatLayerId,
wrappedClassName = config.wrappedClassName;
// eslint-disable-next-line no-shadow
function FloatingLayerDecorator(props) {
var className = props.className,
rest = _objectWithoutProperties(props, _excluded);
var hook = (0, _useFloatingLayerDecorator.useFloatingLayerDecorator)({
className: className,
floatLayerId: floatLayerId
});
return hook.provideFloatingLayer(/*#__PURE__*/(0, _jsxRuntime.jsx)(Wrapped, _objectSpread(_objectSpread({}, rest), {}, {
className: wrappedClassName
}), "floatWrapped"));
}
return FloatingLayerDecorator;
});
var _default = exports["default"] = FloatingLayerDecorator;