analytics/assets/js/dashboard/stats/more-link.js
Uku Taht 7dbbc8ba22
Configurable site id (#30)
* Use site id instead of hostname for events

* Use site id in domain status check

* Revert change to tracking module

* Catch more places where link generation needed updating

* Rename site_id to domain

* Drop hostname index from events
2020-02-04 15:44:13 +02:00

14 lines
501 B
JavaScript

import React from 'react';
import { Link } from 'react-router-dom'
export default function MoreLink({site, endpoint}) {
return (
<div className="text-center w-full absolute pin-b pin-l p-4">
<Link to={`/${encodeURIComponent(site.domain)}/${endpoint}${window.location.search}`}className="font-bold text-sm text-grey-dark hover:text-red transition tracking-wide">
<svg className="feather mr-1"><use xlinkHref="#feather-maximize" /></svg>
MORE
</Link>
</div>
)
}