mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-21 15:09:10 +00:00
refactor: composable info element
This commit is contained in:
committed by
Carlos Valente
parent
8985c8604f
commit
97cb41dc5a
@@ -16,6 +16,33 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5rem;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title,
|
||||||
|
.body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
color: $ui-white;
|
||||||
|
font-size: 1.125rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.body {
|
||||||
|
color: $gray-400;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
svg {
|
svg {
|
||||||
color: $info-blue;
|
color: $info-blue;
|
||||||
|
|||||||
@@ -10,13 +10,37 @@ interface InfoProps {
|
|||||||
type?: 'info' | 'warning' | 'error';
|
type?: 'info' | 'warning' | 'error';
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Info({ className, type = 'info', children }: PropsWithChildren<InfoProps>) {
|
interface InfoSectionProps {
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
function InfoTitle({ className, children }: PropsWithChildren<InfoSectionProps>) {
|
||||||
|
return <p className={cx([style.title, className])}>{children}</p>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function InfoBody({ className, children }: PropsWithChildren<InfoSectionProps>) {
|
||||||
|
return <p className={cx([style.body, className])}>{children}</p>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function InfoFooter({ className, children }: PropsWithChildren<InfoSectionProps>) {
|
||||||
|
return <div className={cx([style.footer, className])}>{children}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function InfoRoot({ className, type = 'info', children }: PropsWithChildren<InfoProps>) {
|
||||||
return (
|
return (
|
||||||
<div className={cx([style.infoLabel, style[type], className])}>
|
<div className={cx([style.infoLabel, style[type], className])}>
|
||||||
{type === 'info' && <IoAlertCircle />}
|
{type === 'info' && <IoAlertCircle />}
|
||||||
{type === 'warning' && <IoWarning />}
|
{type === 'warning' && <IoWarning />}
|
||||||
{type === 'error' && <IoWarning />}
|
{type === 'error' && <IoWarning />}
|
||||||
<div>{children}</div>
|
<div className={style.content}>{children}</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const Info = Object.assign(InfoRoot, {
|
||||||
|
Title: InfoTitle,
|
||||||
|
Body: InfoBody,
|
||||||
|
Footer: InfoFooter,
|
||||||
|
});
|
||||||
|
|
||||||
|
export default Info;
|
||||||
|
|||||||
Reference in New Issue
Block a user