mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
22 lines
550 B
JavaScript
22 lines
550 B
JavaScript
|
import React from 'react';
|
||
|
import styles from './Favicon.module.css';
|
||
|
|
||
|
function getHostName(url) {
|
||
|
const match = url.match(/^(?:https?:\/\/)?(?:[^@\n]+@)?(?:www\.)?([^:/\n?=]+)/im);
|
||
|
return match && match.length > 1 ? match[1] : null;
|
||
|
}
|
||
|
|
||
|
export default function Favicon({ domain, ...props }) {
|
||
|
const hostName = domain ? getHostName(domain) : null;
|
||
|
|
||
|
return hostName ? (
|
||
|
<img
|
||
|
className={styles.favicon}
|
||
|
src={`https://icons.duckduckgo.com/ip3/${hostName}.ico`}
|
||
|
height="16"
|
||
|
alt=""
|
||
|
{...props}
|
||
|
/>
|
||
|
) : null;
|
||
|
}
|