openreplay/frontend/app/components/Spots/SpotsList/InstallCTA.tsx
2024-10-21 16:58:37 +02:00

82 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import { ChromeOutlined } from '@ant-design/icons';
import { Alert, Button } from 'antd';
import { ArrowUpRight } from 'lucide-react';
function InstallCTA() {
const extKey = '__$spot_ext_exist$__';
const [extExist, setExtExist] = React.useState<boolean>(false);
const isChromium =
// @ts-ignore
window.chrome ||
// @ts-ignore
(!!navigator.userAgentData &&
// @ts-ignore
navigator.userAgentData.brands.some((data) => data.brand == 'Chromium'));
React.useEffect(() => {
let int: any;
const v = localStorage.getItem(extKey);
if (v) {
setExtExist(true);
} else {
int = setInterval(() => {
window.postMessage({ type: 'orspot:ping' }, '*');
});
const onSpotMsg = (e: any) => {
if (e.data.type === 'orspot:pong') {
setExtExist(true);
localStorage.setItem(extKey, '1');
clearInterval(int);
int = null;
window.removeEventListener('message', onSpotMsg);
}
};
window.addEventListener('message', onSpotMsg);
}
return () => {
if (int) {
clearInterval(int);
}
};
}, []);
if (!isChromium && !extExist) {
return (
<Alert
message="Spot is designed for Chrome. Please install Chrome and navigate to this page to start using Spot."
type="warning"
className="w-full justify-between font-medium text-lg rounded-lg border-0 mb-4"
/>
);
}
return (
<>
{extExist ? null : (
<Alert
message="It looks like you havent installed the Spot extension yet."
type="warning"
action={
<Button
type="primary"
icon={<ChromeOutlined />}
className="text-lg"
onClick={() =>
window.open(
'https://chromewebstore.google.com/detail/openreplay-spot-record-re/ckigbicapkkgfomcfmcbaaplllopgbid?pli=1',
'_blank'
)
}
>
Get Chrome Extension <ArrowUpRight />
</Button>
}
className="w-full justify-between font-medium text-lg rounded-lg border-0 mb-4"
/>
)}
</>
);
}
export default InstallCTA;