Files
newsui/packages/components/src/Media/PullQuote.tsx
T
sunzhongyi 7dded89537 -
2026-05-20 01:30:41 +08:00

72 lines
2.0 KiB
TypeScript

'use client';
import React, { ReactNode, CSSProperties } from 'react';
import { visualWeights, resolveFontSize } from '@newspaperui/theme';
import { clampSpan, cx } from '@newspaperui/utils';
import { useSection } from '../layout/Section';
export interface PullQuoteProps {
weight?: 'High' | 'Medium';
span?: number;
spanAllColumns?: boolean; // 在多栏 BodyText 内跨所有栏
author?: string;
align?: 'left' | 'center';
className?: string;
style?: CSSProperties;
children: ReactNode;
}
export const PullQuote: React.FC<PullQuoteProps> = ({
weight = 'High', span, spanAllColumns = false, author, align = 'left',
className, style, children,
}) => {
const section = useSection();
const config = visualWeights.PullQuote[weight]!;
const cols = span ? clampSpan(span, section.columns) : undefined;
return (
<aside
className={cx(
'nui-pullquote nui-avoid-break nui-tnum',
spanAllColumns && 'nui-span-all-columns',
className,
)}
style={{
margin: config.margin,
padding: 'var(--nui-space-4) 0',
borderTop: '1px solid var(--nui-rule-hairline)',
borderBottom: '1px solid var(--nui-rule-hairline)',
textAlign: align,
gridColumn: cols ? `span ${cols}` : undefined,
...style,
}}
>
<p
style={{
fontFamily: `var(${config.fontFamily})`,
fontSize: resolveFontSize(config.fontSize),
fontWeight: config.fontWeight,
lineHeight: config.lineHeight,
letterSpacing: config.letterSpacing,
color: `var(${config.color})`,
margin: 0,
textWrap: 'balance' as CSSProperties['textWrap'],
}}
>
{children}
</p>
{author && (
<footer
className="nui-small-caps"
style={{
marginTop: 'var(--nui-space-2)',
fontSize: '11px',
color: 'var(--nui-text-muted)',
letterSpacing: '0.08em',
}}
>
{author}
</footer>
)}
</aside>
);
};