@base-ui/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
47 lines (45 loc) • 1.43 kB
JavaScript
;
'use client';
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DrawerIndentBackground = void 0;
var React = _interopRequireWildcard(require("react"));
var _useRenderElement = require("../../utils/useRenderElement");
var _DrawerProviderContext = require("../provider/DrawerProviderContext");
const stateAttributesMapping = {
active(value) {
if (value) {
return {
'data-active': ''
};
}
return {
'data-inactive': ''
};
}
};
/**
* An element placed before <Drawer.Indent> to render a background layer
* that can be styled based on whether any drawer is open.
*/
const DrawerIndentBackground = exports.DrawerIndentBackground = /*#__PURE__*/React.forwardRef(function DrawerIndentBackground(componentProps, forwardedRef) {
const {
render,
className,
...elementProps
} = componentProps;
const providerContext = (0, _DrawerProviderContext.useDrawerProviderContext)(true);
const active = providerContext?.active ?? false;
const state = {
active
};
return (0, _useRenderElement.useRenderElement)('div', componentProps, {
ref: forwardedRef,
state,
props: elementProps,
stateAttributesMapping
});
});
if (process.env.NODE_ENV !== "production") DrawerIndentBackground.displayName = "DrawerIndentBackground";