mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-15 07:31:19 +00:00

* fix: context * fix: context * action * update scripts * update action * fix: kubeconfig * update preview * docker file * perf: action per * update doc deploy yml * doc (#99) * doc * doc * rename * doc * fix: action on * doc (#100)
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
'use client';
|
|
|
|
import React, { useMemo } from 'react';
|
|
|
|
type FastGPTLinkProps = {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
onClick?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
|
|
};
|
|
|
|
const defaultStyles: React.CSSProperties = {
|
|
color: '#3370ff',
|
|
textDecoration: 'none',
|
|
transition: 'all 0.2s ease-in-out'
|
|
};
|
|
|
|
const hoverStyles: React.CSSProperties = {
|
|
color: '#2152d9',
|
|
textDecoration: 'underline'
|
|
};
|
|
|
|
const FastGPTLink = ({ children, className, style, onClick, ...props }: FastGPTLinkProps) => {
|
|
const href = useMemo(() => {
|
|
return process.env.NEXT_PUBLIC_HOME_DOMAIN ?? 'https://fastgpt.io';
|
|
}, []);
|
|
|
|
const [isHovered, setIsHovered] = React.useState(false);
|
|
|
|
const combinedStyles = {
|
|
...defaultStyles,
|
|
...(isHovered ? hoverStyles : {}),
|
|
...style
|
|
};
|
|
|
|
return (
|
|
<a
|
|
href={href}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className={className}
|
|
style={combinedStyles}
|
|
onMouseEnter={() => setIsHovered(true)}
|
|
onMouseLeave={() => setIsHovered(false)}
|
|
onClick={(e) => {
|
|
if (onClick) {
|
|
e.preventDefault();
|
|
onClick(e);
|
|
}
|
|
}}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</a>
|
|
);
|
|
};
|
|
|
|
export default React.memo(FastGPTLink);
|