2019-11-19 07:30:42 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router-dom'
|
2020-07-14 16:52:26 +03:00
|
|
|
import FlipMove from 'react-flip-move';
|
2019-11-19 07:30:42 +03:00
|
|
|
|
2020-08-17 15:13:30 +03:00
|
|
|
import FadeIn from '../../fade-in'
|
|
|
|
import Bar from '../bar'
|
|
|
|
import MoreLink from '../more-link'
|
|
|
|
import numberFormatter from '../../number-formatter'
|
|
|
|
import * as api from '../../api'
|
2020-07-30 11:18:28 +03:00
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
export default class Referrers extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = {loading: true}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.fetchReferrers()
|
2020-07-14 16:52:26 +03:00
|
|
|
if (this.props.timer) this.props.timer.onTick(this.fetchReferrers.bind(this))
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.query !== prevProps.query) {
|
|
|
|
this.setState({loading: true, referrers: null})
|
|
|
|
this.fetchReferrers()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-05 14:45:20 +03:00
|
|
|
showNoRef() {
|
|
|
|
return this.props.query.period === 'realtime'
|
|
|
|
}
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
fetchReferrers() {
|
2020-08-17 15:13:30 +03:00
|
|
|
if (this.props.query.filters.goal) {
|
2020-02-04 16:44:13 +03:00
|
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/goal/referrers`, this.props.query)
|
2020-01-16 16:40:06 +03:00
|
|
|
.then((res) => this.setState({loading: false, referrers: res}))
|
|
|
|
} else {
|
2020-08-05 14:45:20 +03:00
|
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/referrers`, this.props.query, {show_noref: this.showNoRef()})
|
2020-01-16 16:40:06 +03:00
|
|
|
.then((res) => this.setState({loading: false, referrers: res}))
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
renderReferrer(referrer) {
|
2020-07-30 11:18:28 +03:00
|
|
|
const query = new URLSearchParams(window.location.search)
|
2020-08-17 15:13:30 +03:00
|
|
|
query.set('source', referrer.name)
|
2020-07-30 11:18:28 +03:00
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
2020-02-10 16:17:00 +03:00
|
|
|
<div className="flex items-center justify-between my-1 text-sm" key={referrer.name}>
|
|
|
|
<div className="w-full h-8" style={{maxWidth: 'calc(100% - 4rem)'}}>
|
2020-03-26 15:22:48 +03:00
|
|
|
<Bar count={referrer.count} all={this.state.referrers} bg="bg-blue-50" />
|
2020-07-30 11:18:28 +03:00
|
|
|
<span className="flex px-2" style={{marginTop: '-26px'}} >
|
2020-08-17 15:13:30 +03:00
|
|
|
<Link className="block truncate hover:underline" to={{search: query.toString()}}>
|
2020-08-05 14:45:20 +03:00
|
|
|
<img src={`https://icons.duckduckgo.com/ip3/${referrer.url}.ico`} className="inline h-4 w-4 mr-2 align-middle -mt-px" />
|
|
|
|
{ referrer.name }
|
2020-08-17 15:13:30 +03:00
|
|
|
</Link>
|
2020-07-30 11:18:28 +03:00
|
|
|
</span>
|
2019-11-19 07:30:42 +03:00
|
|
|
</div>
|
2020-02-10 16:17:00 +03:00
|
|
|
<span className="font-medium">{numberFormatter(referrer.count)}</span>
|
|
|
|
</div>
|
2019-11-19 07:30:42 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-07-14 16:52:26 +03:00
|
|
|
label() {
|
2020-08-18 14:14:56 +03:00
|
|
|
return this.props.query.period === 'realtime' ? 'Current visitors' : 'Visitors'
|
2020-07-14 16:52:26 +03:00
|
|
|
}
|
|
|
|
|
2020-03-03 16:15:09 +03:00
|
|
|
renderList() {
|
|
|
|
if (this.state.referrers.length > 0) {
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
2020-02-10 16:17:00 +03:00
|
|
|
<React.Fragment>
|
2020-03-26 16:43:55 +03:00
|
|
|
<div className="flex items-center mt-3 mb-2 justify-between text-gray-500 text-xs font-bold tracking-wide">
|
2020-08-17 15:13:30 +03:00
|
|
|
<span>Source</span>
|
|
|
|
<span>{this.label()}</span>
|
2019-11-19 07:30:42 +03:00
|
|
|
</div>
|
2020-02-10 16:17:00 +03:00
|
|
|
|
2020-07-14 16:52:26 +03:00
|
|
|
<FlipMove>
|
|
|
|
{this.state.referrers.map(this.renderReferrer.bind(this))}
|
|
|
|
</FlipMove>
|
2020-03-03 16:15:09 +03:00
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
} else {
|
2020-03-26 16:43:55 +03:00
|
|
|
return <div className="text-center mt-44 font-medium text-gray-500">No data yet</div>
|
2020-03-03 16:15:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderContent() {
|
|
|
|
if (this.state.referrers) {
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
2020-08-17 15:13:30 +03:00
|
|
|
<h3 className="font-bold">Top sources</h3>
|
2020-03-03 16:15:09 +03:00
|
|
|
{ this.renderList() }
|
2020-08-17 15:13:30 +03:00
|
|
|
<MoreLink site={this.props.site} list={this.state.referrers} endpoint="referrers" />
|
2020-02-10 16:17:00 +03:00
|
|
|
</React.Fragment>
|
2019-11-19 07:30:42 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 16:17:00 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-04-21 10:57:18 +03:00
|
|
|
<div className="stats-item relative bg-white shadow-xl rounded p-4" style={{height: '436px'}}>
|
2020-03-03 16:15:09 +03:00
|
|
|
{ this.state.loading && <div className="loading mt-44 mx-auto"><div></div></div> }
|
2020-03-03 12:13:08 +03:00
|
|
|
<FadeIn show={!this.state.loading}>
|
|
|
|
{ this.renderContent() }
|
|
|
|
</FadeIn>
|
2020-02-10 16:17:00 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|