@porsche-design-system/components-react
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
36 lines (33 loc) • 1.46 kB
JavaScript
"use client";
import { jsx } from 'react/jsx-runtime';
import { forwardRef, useRef } from 'react';
import { usePrefix, useTheme, useBrowserLayoutEffect, useMergedClass } from '../../hooks.mjs';
import { syncRef } from '../../utils.mjs';
import { DSRText } from '../dsr-components/text.mjs';
const PText = /*#__PURE__*/ forwardRef(({ align = 'start', color = 'primary', ellipsis = false, size = 'small', tag = 'p', theme, weight = 'regular', className, children, ...rest }, ref) => {
const elementRef = useRef(undefined);
const WebComponentTag = usePrefix('p-text');
const propsToSync = [align, color, ellipsis, size, tag, theme || useTheme(), weight];
useBrowserLayoutEffect(() => {
const { current } = elementRef;
['align', 'color', 'ellipsis', 'size', 'tag', 'theme', 'weight'].forEach((propName, i) => (current[propName] = propsToSync[i]));
}, propsToSync);
const props = {
...rest,
// @ts-ignore
...(!process.browser
? {
children: (jsx(DSRText, { align, color, ellipsis, size, tag, theme: theme || useTheme(), weight, children })),
}
: {
children,
suppressHydrationWarning: true,
}),
'data-ssr': '',
class: useMergedClass(elementRef, className),
ref: syncRef(elementRef, ref)
};
// @ts-ignore
return jsx(WebComponentTag, { ...props });
});
export { PText };