2019-11-19 07:30:42 +03:00
|
|
|
import React from 'react';
|
2021-04-07 11:06:33 +03:00
|
|
|
import * as api from '../api'
|
2020-07-14 16:52:26 +03:00
|
|
|
import { Link } from 'react-router-dom'
|
2020-12-29 12:00:41 +03:00
|
|
|
import { countFilters } from '../query';
|
2019-11-19 07:30:42 +03:00
|
|
|
|
|
|
|
export default class CurrentVisitors extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = {currentVisitors: null}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2020-07-14 16:52:26 +03:00
|
|
|
this.updateCount()
|
|
|
|
this.props.timer.onTick(this.updateCount.bind(this))
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
updateCount() {
|
2021-04-07 11:06:33 +03:00
|
|
|
return api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/current-visitors`)
|
2019-11-19 07:30:42 +03:00
|
|
|
.then((res) => this.setState({currentVisitors: res}))
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-12-29 12:00:41 +03:00
|
|
|
if (countFilters(this.props.query) !== 0) { return null }
|
|
|
|
|
2021-03-16 11:40:25 +03:00
|
|
|
const query = new URLSearchParams(window.location.search)
|
|
|
|
query.set('period', 'realtime')
|
|
|
|
|
2020-07-29 10:07:18 +03:00
|
|
|
const { currentVisitors } = this.state;
|
|
|
|
if (currentVisitors !== null) {
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
2021-03-16 11:40:25 +03:00
|
|
|
<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">
|
2019-11-19 07:30:42 +03:00
|
|
|
<circle cx="8" cy="8" r="8"/>
|
|
|
|
</svg>
|
2020-07-29 10:07:18 +03:00
|
|
|
{currentVisitors} current visitor{currentVisitors === 1 ? '' : 's'}
|
2020-07-14 16:52:26 +03:00
|
|
|
</Link>
|
2019-11-19 07:30:42 +03:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|