@darwish/hooks-core
Version:
26 lines (25 loc) • 780 B
JavaScript
import { useEffect } from 'react';
var ImgTypeMap = {
SVG: 'image/svg+xml',
ICO: 'image/x-icon',
GIF: 'image/gif',
PNG: 'image/png',
};
/**
* This hook is used to set the favicon of the page.
* @param href The URL of the favicon.
*/
var useFavicon = function (href) {
useEffect(function () {
if (!href)
return;
var cutUrl = href.split('.');
var imgSuffix = cutUrl[cutUrl.length - 1].toLocaleUpperCase();
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = ImgTypeMap[imgSuffix];
link.href = href;
link.rel = 'shortcut icon';
document.getElementsByTagName('head')[0].appendChild(link);
}, [href]);
};
export default useFavicon;