aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/components/Content/AnchorTag.tsx
blob: e9edef954efcd4961785f8d01c14b8c71f7158bd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                
                               

                                        





                                          



                                           

























                                                                  
import makeStyles from '@mui/styles/makeStyles';
import * as React from 'react';
import { Link } from 'react-router-dom';

const useStyles = makeStyles((theme) => ({
  tag: {
    color: theme.palette.text.secondary,
  },
}));

const AnchorTag: React.FC = ({
  children,
  href,
}: React.HTMLProps<HTMLAnchorElement>) => {
  const classes = useStyles();
  const origin = window.location.origin;
  const destination = href === undefined ? '' : href;
  const isInternalLink =
    destination.startsWith('/') || destination.startsWith(origin);
  const internalDestination = destination.replace(origin, '');
  const internalLink = (
    <Link className={classes.tag} to={internalDestination}>
      {children}
    </Link>
  );
  const externalLink = (
    <a
      className={classes.tag}
      href={destination}
      target="_blank"
      rel="noopener noreferrer"
    >
      {children}
    </a>
  );

  return isInternalLink ? internalLink : externalLink;
};

export default AnchorTag;