mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 13:47:15 +01:00
19 lines
598 B
TypeScript
19 lines
598 B
TypeScript
import { GROUPED_DOMAINS } from '@/lib/constants';
|
|
|
|
function getHostName(url: string) {
|
|
const match = url.match(/^(?:https?:\/\/)?(?:[^@\n]+@)?([^:/\n?=]+)/im);
|
|
return match && match.length > 1 ? match[1] : null;
|
|
}
|
|
|
|
export function Favicon({ domain, ...props }) {
|
|
if (process.env.privateMode) {
|
|
return null;
|
|
}
|
|
|
|
const hostName = domain ? getHostName(domain) : null;
|
|
const src = hostName
|
|
? `https://icons.duckduckgo.com/ip3/${GROUPED_DOMAINS[hostName]?.domain || hostName}.ico`
|
|
: null;
|
|
|
|
return hostName ? <img src={src} width={16} height={16} alt="" {...props} /> : null;
|
|
}
|