mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
- Downgraded Bootstrap version from 5.3.8 to 5.3.3 in package-lock.json. - Refactored import paths in plugin files to use local types. - Enhanced FeatureTwoColumn component with improved layout and responsive behavior. - Updated SCSS for consistent spacing and layout adjustments across breakpoints. - Revised documentation in FeatureTwoColumn.md for clarity on layout behavior and props.
133 lines
4.2 KiB
TypeScript
133 lines
4.2 KiB
TypeScript
import React from "react";
|
|
import clsx from "clsx";
|
|
import {
|
|
ButtonGroup,
|
|
ButtonConfig,
|
|
validateButtonGroup,
|
|
} from "shared/patterns/ButtonGroup/ButtonGroup";
|
|
|
|
export interface FeatureTwoColumnLink {
|
|
/** Link label text */
|
|
label: string;
|
|
/** Link URL */
|
|
href: string;
|
|
}
|
|
|
|
export interface FeatureTwoColumnProps {
|
|
/** Color theme variant */
|
|
color?: "neutral" | "lilac" | "yellow" | "green";
|
|
/** Content arrangement - left places content on left side, right places content on right side */
|
|
arrange?: "left" | "right";
|
|
/** Feature title text (heading-md typography) */
|
|
title: string;
|
|
/** Feature description text (body-l typography) */
|
|
description: string;
|
|
/** Array of links (1-5 links supported)
|
|
* - 1 link: renders as secondary button
|
|
* - 2 links: renders as primary + tertiary buttons
|
|
* - 3-5 links: renders all as tertiary buttons
|
|
*/
|
|
links: FeatureTwoColumnLink[];
|
|
/** Feature media (image) configuration */
|
|
media: {
|
|
src: string;
|
|
alt: string;
|
|
};
|
|
/** Additional CSS classes */
|
|
className?: string;
|
|
}
|
|
|
|
/**
|
|
* FeatureTwoColumn Pattern
|
|
*
|
|
* A feature section pattern that pairs editorial content with a media element
|
|
* in a two-column layout. Designed for showcasing features, products, or use cases.
|
|
*
|
|
* Responsive layout (single flex row/column):
|
|
* - Mobile / tablet: media always on top, then content (`arrange` ignored) for consistent
|
|
* rhythm when multiple sections stack (media, content; media, content; …).
|
|
* - Desktop (≥992px): side-by-side (50% / 50%); `arrange` controls left vs right placement.
|
|
*
|
|
* Button behavior based on link count:
|
|
* - 1 link: Secondary button
|
|
* - 2 links: Primary button (first) + Tertiary button (second)
|
|
* - 3-5 links: All tertiary buttons (first is filled, rest are text-only)
|
|
*/
|
|
export const FeatureTwoColumn: React.FC<FeatureTwoColumnProps> = ({
|
|
color = "neutral",
|
|
arrange = "left",
|
|
title,
|
|
description,
|
|
links = [],
|
|
media,
|
|
className,
|
|
}) => {
|
|
// Determine button color based on background
|
|
// Rule: Black buttons must be used for all backgrounds (including neutral)
|
|
const buttonColor = "black";
|
|
const forceColor = true;
|
|
|
|
// Convert links to ButtonConfig format
|
|
const buttonConfigs: ButtonConfig[] = links.map((link) => ({
|
|
label: link.label,
|
|
href: link.href,
|
|
forceColor: forceColor,
|
|
}));
|
|
|
|
// Validate buttons (FeatureTwoColumn supports 1-5 links per design spec)
|
|
const buttonValidation = validateButtonGroup(buttonConfigs, 5);
|
|
const hasButtons = buttonValidation.hasButtons;
|
|
|
|
const rootClasses = clsx(
|
|
"bds-feature-two-column",
|
|
`bds-feature-two-column--${color}`,
|
|
`bds-feature-two-column--${arrange}`,
|
|
className,
|
|
);
|
|
|
|
const contentClass = clsx("bds-feature-two-column__content", {
|
|
"bds-feature-two-column__content--multiple":
|
|
hasButtons && buttonValidation.buttons.length >= 3,
|
|
});
|
|
|
|
return (
|
|
<section className={rootClasses}>
|
|
<div className="bds-feature-two-column__layout">
|
|
<div className="bds-feature-two-column__content-col">
|
|
<div className="bds-feature-two-column__content-grid">
|
|
<div className="bds-feature-two-column__content-wrapper">
|
|
<div className={contentClass}>
|
|
<div className="bds-feature-two-column__text-group">
|
|
<h2 className="bds-feature-two-column__title">{title}</h2>
|
|
<p className="bds-feature-two-column__description">
|
|
{description}
|
|
</p>
|
|
</div>
|
|
{hasButtons && (
|
|
<ButtonGroup
|
|
buttons={buttonValidation.buttons}
|
|
color={buttonColor}
|
|
forceColor={forceColor}
|
|
singleButtonVariant="secondary"
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="bds-feature-two-column__media-col">
|
|
<div className="bds-feature-two-column__media">
|
|
<img
|
|
src={media.src}
|
|
alt={media.alt}
|
|
className="bds-feature-two-column__media-img"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default FeatureTwoColumn;
|