1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00
steffoweb/components/LinkPanel.tsx

52 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-10-16 02:33:33 +00:00
import {IconProp} from "@fortawesome/fontawesome-svg-core"
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
import {default as Link} from "next/link"
import {default as cn} from "classnames"
2022-10-16 23:58:17 +00:00
import {default as style} from "./LinkPanel.module.css"
2022-10-16 02:33:33 +00:00
import React from "react"
export type LinkPanelProps = {
href?: string,
icon: IconProp,
2022-10-16 23:58:17 +00:00
text: React.ReactNode,
2023-05-28 02:37:00 +00:00
description?: React.ReactNode,
2022-10-16 02:33:33 +00:00
me?: boolean,
fade?: boolean,
2023-05-28 23:18:24 +00:00
onPress?: React.EventHandler<React.SyntheticEvent<HTMLElement>>
2022-10-16 02:33:33 +00:00
}
2023-05-28 23:18:24 +00:00
export const LinkPanel = ({href, icon, text, description, me, fade, onPress}: LinkPanelProps) => {
2022-10-16 02:33:33 +00:00
const panel = (
2023-02-28 12:01:43 +00:00
<>
<FontAwesomeIcon className={style.linkPanelIcon} icon={icon}/>
<span className={style.linkPanelText}>
{text}
</span>
2023-05-28 02:37:00 +00:00
{description &&
<small className={style.linkPanelDescription}>
{description}
</small>
}
2023-02-28 12:01:43 +00:00
</>
2022-10-16 02:33:33 +00:00
)
if(href) {
return (
2023-01-16 15:51:41 +00:00
<Link href={href}>
2023-05-28 23:18:24 +00:00
<a className={cn({panel: true, [style.linkPanel]: true, fade: fade})} rel={me ? "me" : ""} onClick={onPress} onKeyPress={onPress}>
2023-01-16 15:50:50 +00:00
{panel}
2023-01-16 15:51:41 +00:00
</a>
</Link>
2022-10-16 02:33:33 +00:00
)
}
else {
2023-01-16 15:50:50 +00:00
return (
2023-05-28 23:18:24 +00:00
<div className={cn({panel: true, [style.linkPanel]: true, fade: fade})} onClick={onPress} onKeyPress={onPress}>
2023-01-16 15:50:50 +00:00
{panel}
</div>
)
2022-10-16 02:33:33 +00:00
}
}