Added icons for browsers, OS and devices.

This commit is contained in:
Mike Cao 2023-07-09 21:30:37 -07:00
parent f834ff3db4
commit 6b69f69c08
65 changed files with 54 additions and 20 deletions

View file

@ -1,12 +1,25 @@
import MetricsTable from './MetricsTable';
import FilterLink from 'components/common/FilterLink';
import useMessages from 'hooks/useMessages';
import { useRouter } from 'next/router';
export function OSTable({ websiteId, ...props }) {
const { formatMessage, labels } = useMessages();
const { basePath } = useRouter();
function renderLink({ x: os }) {
return <FilterLink id="os" value={os} />;
return (
<FilterLink id="os" value={os}>
<img
src={`${basePath}/images/os/${
os.toLowerCase().replaceAll(/[^\w]+/g, '-') || 'unknown'
}.png`}
alt={os}
width={16}
height={16}
/>
</FilterLink>
);
}
return (