@wordpress/components
Version:
UI components for WordPress.
126 lines (122 loc) • 4.37 kB
JavaScript
// packages/components/src/divider/component.tsx
import * as Ariakit from "@ariakit/react";
import clsx from "clsx";
import { contextConnect, useContextSystem } from "../context/index.mjs";
import { space } from "../utils/space.mjs";
// packages/style-runtime/src/index.ts
var STYLE_HASH_ATTRIBUTE = "data-wp-hash";
function getRuntime() {
const globalScope = globalThis;
if (globalScope.__wpStyleRuntime) {
return globalScope.__wpStyleRuntime;
}
globalScope.__wpStyleRuntime = {
documents: /* @__PURE__ */ new Map(),
styles: /* @__PURE__ */ new Map(),
injectedStyles: /* @__PURE__ */ new WeakMap()
};
if (typeof document !== "undefined") {
registerDocument(document);
}
return globalScope.__wpStyleRuntime;
}
function documentContainsStyleHash(targetDocument, hash) {
if (!targetDocument.head) {
return false;
}
for (const style of targetDocument.head.querySelectorAll(`style[${STYLE_HASH_ATTRIBUTE}]`)) {
if (style.getAttribute(STYLE_HASH_ATTRIBUTE) === hash) {
return true;
}
}
return false;
}
function injectStyle(targetDocument, hash, css) {
if (!targetDocument.head) {
return;
}
const runtime = getRuntime();
let injectedStyles = runtime.injectedStyles.get(targetDocument);
if (!injectedStyles) {
injectedStyles = /* @__PURE__ */ new Set();
runtime.injectedStyles.set(targetDocument, injectedStyles);
}
if (injectedStyles.has(hash)) {
return;
}
if (documentContainsStyleHash(targetDocument, hash)) {
injectedStyles.add(hash);
return;
}
const style = targetDocument.createElement("style");
style.setAttribute(STYLE_HASH_ATTRIBUTE, hash);
style.appendChild(targetDocument.createTextNode(css));
targetDocument.head.appendChild(style);
injectedStyles.add(hash);
}
function registerDocument(targetDocument) {
const runtime = getRuntime();
runtime.documents.set(targetDocument, (runtime.documents.get(targetDocument) ?? 0) + 1);
for (const [hash, css] of runtime.styles) {
injectStyle(targetDocument, hash, css);
}
return () => {
const count = runtime.documents.get(targetDocument);
if (count === void 0) {
return;
}
if (count <= 1) {
runtime.documents.delete(targetDocument);
return;
}
runtime.documents.set(targetDocument, count - 1);
};
}
function registerStyle(hash, css) {
const runtime = getRuntime();
runtime.styles.set(hash, css);
for (const targetDocument of runtime.documents.keys()) {
injectStyle(targetDocument, hash, css);
}
}
// packages/components/src/divider/style.module.scss
if (typeof process === "undefined" || process.env.NODE_ENV !== "test") {
registerStyle("f2c8d759d8", ".e10c29fc10c181dc__divider{border:0;margin:0}.e10c29fc10c181dc__divider[aria-orientation=horizontal]{block-size:0;border-block-end:1px solid currentColor;inline-size:auto;margin-block-end:var(--wp-components-divider-margin-end,0);margin-block-start:var(--wp-components-divider-margin-start,0)}.e10c29fc10c181dc__divider[aria-orientation=vertical]{block-size:auto;border-inline-end:1px solid currentColor;display:inline;inline-size:0;margin-inline-end:var(--wp-components-divider-margin-end,0);margin-inline-start:var(--wp-components-divider-margin-start,0)}");
}
var style_module_default = { "divider": "e10c29fc10c181dc__divider" };
// packages/components/src/divider/component.tsx
import { jsx as _jsx } from "react/jsx-runtime";
function UnconnectedDivider(props, forwardedRef) {
const {
className,
margin,
marginEnd,
marginStart,
style,
...contextProps
} = useContextSystem(props, "Divider");
const dividerStyle = {
...style
};
const resolvedMarginStart = space(marginStart ?? margin);
const resolvedMarginEnd = space(marginEnd ?? margin);
if (resolvedMarginStart) {
dividerStyle["--wp-components-divider-margin-start"] = resolvedMarginStart;
}
if (resolvedMarginEnd) {
dividerStyle["--wp-components-divider-margin-end"] = resolvedMarginEnd;
}
return /* @__PURE__ */ _jsx(Ariakit.Separator, {
className: clsx(style_module_default.divider, className),
style: dividerStyle,
...contextProps,
ref: forwardedRef
});
}
var Divider = contextConnect(UnconnectedDivider, "Divider");
var component_default = Divider;
export {
Divider,
component_default as default
};
//# sourceMappingURL=component.mjs.map