bigbuffet-rw/app/soapbox/components/thumb_navigation-link.tsx
Alex Gleason c82d191dd8
ThumbNavigationLink: fix runtime error
No clue why that was happening
2022-03-30 11:34:05 -05:00

60 lines
1.5 KiB
TypeScript

import classNames from 'classnames';
import React from 'react';
import { NavLink, useLocation } from 'react-router-dom';
import IconWithCounter from 'soapbox/components/icon_with_counter';
import { Icon, Text } from 'soapbox/components/ui';
interface IThumbNavigationLink {
count?: number,
src: string,
text: string | React.ReactElement,
to: string,
exact?: boolean,
paths?: Array<string>,
}
const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, src, text, to, exact, paths }): JSX.Element => {
const { pathname } = useLocation();
const isActive = (): boolean => {
if (paths) {
return paths.some(path => pathname.startsWith(path));
} else {
return exact ? pathname === to : pathname.startsWith(to);
}
};
const active = isActive();
return (
<NavLink to={to} exact={exact} className='thumb-navigation__link'>
{count !== undefined ? (
<IconWithCounter
src={require('@tabler/icons/icons/messages.svg')}
className={classNames({
'h-5 w-5': true,
'text-gray-600 dark:text-gray-300': !active,
'text-primary-600': active,
})}
count={count}
/>
) : (
<Icon
src={src}
className={classNames({
'h-5 w-5': true,
'text-gray-600 dark:text-gray-300': !active,
'text-primary-600': active,
})}
/>
)}
<Text tag='span' size='xs'>
{text}
</Text>
</NavLink>
);
};
export default ThumbNavigationLink;