import React, { useState } from 'react'; import { FormattedMessage } from 'react-intl'; import MetricsTable from './MetricsTable'; import FilterButtons from 'components/common/FilterButtons'; import { refFilter } from 'lib/filters'; import { safeDecodeURI } from 'lib/url'; import Link from 'next/link'; import classNames from 'classnames'; import usePageQuery from 'hooks/usePageQuery'; import External from 'assets/arrow-up-right-from-square.svg'; import Icon from '../common/Icon'; import styles from './ReferrersTable.module.css'; export const FILTER_DOMAIN_ONLY = 0; export const FILTER_COMBINED = 1; export const FILTER_RAW = 2; export default function ReferrersTable({ websiteId, websiteDomain, showFilters, ...props }) { const [filter, setFilter] = useState(FILTER_COMBINED); const { resolve, query: { ref: currentRef }, } = usePageQuery(); const buttons = [ { label: , value: FILTER_DOMAIN_ONLY, }, { label: , value: FILTER_COMBINED, }, { label: , value: FILTER_RAW }, ]; const renderLink = ({ w: link, x: label }) => { console.log({ link, label }); return (
{safeDecodeURI(label)} } className={styles.icon} />
); }; return ( <> {showFilters && } } type="referrer" metric={} websiteId={websiteId} dataFilter={refFilter} filterOptions={{ domain: websiteDomain, domainOnly: filter === FILTER_DOMAIN_ONLY, raw: filter === FILTER_RAW, }} renderLabel={renderLink} /> ); }