mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-26 02:48:22 +03:00
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import { useRef } from 'react';
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
import { faInfoCircle as infoIcon } from '@fortawesome/free-solid-svg-icons';
|
|
import { UncontrolledTooltip } from 'reactstrap';
|
|
import classNames from 'classnames';
|
|
import { prettify } from '../../utils/helpers/numbers';
|
|
import { ShortUrl } from '../data';
|
|
import { SelectedServer } from '../../servers/data';
|
|
import ShortUrlDetailLink from './ShortUrlDetailLink';
|
|
import './ShortUrlVisitsCount.scss';
|
|
|
|
interface ShortUrlVisitsCountProps {
|
|
shortUrl?: ShortUrl | null;
|
|
selectedServer?: SelectedServer;
|
|
visitsCount: number;
|
|
active?: boolean;
|
|
}
|
|
|
|
const ShortUrlVisitsCount = ({ visitsCount, shortUrl, selectedServer, active = false }: ShortUrlVisitsCountProps) => {
|
|
const maxVisits = shortUrl?.meta?.maxVisits;
|
|
const visitsLink = (
|
|
<ShortUrlDetailLink selectedServer={selectedServer} shortUrl={shortUrl} suffix="visits">
|
|
<strong
|
|
className={classNames('short-url-visits-count__amount', { 'short-url-visits-count__amount--big': active })}
|
|
>
|
|
{prettify(visitsCount)}
|
|
</strong>
|
|
</ShortUrlDetailLink>
|
|
);
|
|
|
|
if (!maxVisits) {
|
|
return visitsLink;
|
|
}
|
|
|
|
const prettifiedMaxVisits = prettify(maxVisits);
|
|
const tooltipRef = useRef<HTMLElement | null>();
|
|
|
|
return (
|
|
<>
|
|
<span className="indivisible">
|
|
{visitsLink}
|
|
<small
|
|
className="short-urls-visits-count__max-visits-control"
|
|
ref={(el) => {
|
|
tooltipRef.current = el;
|
|
}}
|
|
>
|
|
{' '}/ {prettifiedMaxVisits}{' '}
|
|
<sup>
|
|
<FontAwesomeIcon icon={infoIcon} />
|
|
</sup>
|
|
</small>
|
|
</span>
|
|
<UncontrolledTooltip target={(() => tooltipRef.current) as any} placement="bottom">
|
|
This short URL will not accept more than <b>{prettifiedMaxVisits}</b> visits.
|
|
</UncontrolledTooltip>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ShortUrlVisitsCount;
|