2021-12-29 01:14:55 +03:00
|
|
|
import { FC, useEffect, useRef, useState } from 'react';
|
2021-12-28 00:27:13 +03:00
|
|
|
import { UncontrolledTooltip } from 'reactstrap';
|
|
|
|
import { ExternalLink } from 'react-external-link';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
import {
|
2021-12-29 00:54:17 +03:00
|
|
|
faTimes as invalidIcon,
|
2021-12-28 00:27:13 +03:00
|
|
|
faCheck as checkIcon,
|
|
|
|
faCircleNotch as loadingStatusIcon,
|
|
|
|
} from '@fortawesome/free-solid-svg-icons';
|
2021-12-29 01:14:55 +03:00
|
|
|
import { MediaMatcher } from '../../utils/types';
|
2021-12-28 00:27:13 +03:00
|
|
|
import { DomainStatus } from '../data';
|
|
|
|
|
2021-12-29 01:14:55 +03:00
|
|
|
interface DomainStatusIconProps {
|
|
|
|
status: DomainStatus;
|
|
|
|
matchMedia?: MediaMatcher;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const DomainStatusIcon: FC<DomainStatusIconProps> = ({ status, matchMedia = window.matchMedia }) => {
|
2021-12-28 00:27:13 +03:00
|
|
|
const ref = useRef<HTMLSpanElement>();
|
2021-12-29 01:14:55 +03:00
|
|
|
const matchesMobile = () => matchMedia('(max-width: 991px)').matches;
|
|
|
|
const [ isMobile, setIsMobile ] = useState<boolean>(matchesMobile());
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const listener = () => setIsMobile(matchesMobile());
|
|
|
|
|
|
|
|
window.addEventListener('resize', listener);
|
|
|
|
|
|
|
|
return () => window.removeEventListener('resize', listener);
|
|
|
|
}, []);
|
2021-12-28 00:27:13 +03:00
|
|
|
|
|
|
|
if (status === 'validating') {
|
|
|
|
return <FontAwesomeIcon fixedWidth icon={loadingStatusIcon} spin />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<span
|
|
|
|
ref={(el: HTMLSpanElement) => {
|
|
|
|
ref.current = el;
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{status === 'valid'
|
|
|
|
? <FontAwesomeIcon fixedWidth icon={checkIcon} className="text-muted" />
|
2021-12-29 00:54:17 +03:00
|
|
|
: <FontAwesomeIcon fixedWidth icon={invalidIcon} className="text-danger" />}
|
2021-12-28 00:27:13 +03:00
|
|
|
</span>
|
2021-12-29 01:14:55 +03:00
|
|
|
<UncontrolledTooltip
|
|
|
|
target={(() => ref.current) as any}
|
|
|
|
placement={isMobile ? 'top-start' : 'left'}
|
|
|
|
autohide={status === 'valid'}
|
|
|
|
>
|
2021-12-28 00:27:13 +03:00
|
|
|
{status === 'valid' ? 'Congratulations! This domain is properly configured.' : (
|
2021-12-29 00:48:35 +03:00
|
|
|
<span>
|
2021-12-28 00:27:13 +03:00
|
|
|
Oops! There is some missing configuration, and short URLs shared with this domain will not work.
|
|
|
|
<br />
|
2021-12-29 00:54:17 +03:00
|
|
|
Check the <ExternalLink href="https://slnk.to/multi-domain-docs">documentation</ExternalLink> in order to
|
2021-12-28 00:27:13 +03:00
|
|
|
find out what is missing.
|
2021-12-29 00:48:35 +03:00
|
|
|
</span>
|
2021-12-28 00:27:13 +03:00
|
|
|
)}
|
|
|
|
</UncontrolledTooltip>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|