mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
23 lines
662 B
JavaScript
23 lines
662 B
JavaScript
import { TextArea } from 'react-basics';
|
|
import useMessages from 'hooks/useMessages';
|
|
import useConfig from 'hooks/useConfig';
|
|
|
|
export function TrackingCode({ websiteId }) {
|
|
const { formatMessage, messages } = useMessages();
|
|
const { trackerScriptName } = useConfig();
|
|
const url = trackerScriptName.startsWith('http')
|
|
? trackerScriptName
|
|
: `${location.origin}/${trackerScriptName}.js`;
|
|
|
|
const code = `<script async src="${url}" data-website-id="${websiteId}"></script>`;
|
|
|
|
return (
|
|
<>
|
|
<p>{formatMessage(messages.trackingCode)}</p>
|
|
<TextArea rows={4} value={code} readOnly allowCopy />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default TrackingCode;
|