mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 08:31:29 +03:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
import { countFilters } from '../query';
|
|
|
|
export default class CurrentVisitors extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {currentVisitors: null}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.updateCount()
|
|
this.props.timer.onTick(this.updateCount.bind(this))
|
|
}
|
|
|
|
updateCount() {
|
|
return fetch(`/api/stats/${encodeURIComponent(this.props.site.domain)}/current-visitors`)
|
|
.then( response => {
|
|
if (!response.ok) { throw response }
|
|
return response.json()
|
|
})
|
|
.then((res) => this.setState({currentVisitors: res}))
|
|
}
|
|
|
|
render() {
|
|
if (countFilters(this.props.query) !== 0) { return null }
|
|
|
|
const query = new URLSearchParams(window.location.search)
|
|
query.set('period', 'realtime')
|
|
|
|
const { currentVisitors } = this.state;
|
|
if (currentVisitors !== null) {
|
|
return (
|
|
<Link to={{search: query.toString()}} className="block ml-2 mr-auto text-sm font-bold text-gray-500 dark:text-gray-300">
|
|
<svg className="inline w-2 mr-2 text-green-500 fill-current" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
<circle cx="8" cy="8" r="8"/>
|
|
</svg>
|
|
{currentVisitors} current visitor{currentVisitors === 1 ? '' : 's'}
|
|
</Link>
|
|
)
|
|
} else {
|
|
return null
|
|
}
|
|
}
|
|
}
|