analytics/assets/js/dashboard/stats/current-visitors.js
Uku Taht 8a4d0a91d1
WIP: New UI updates (#19)
* WIP: New UI idea

* Remove hover styling if things are not clickable

* Improve mobile view

* Remove dead code

* Fade in tabs

* Update landing page with new style

* Fix countries test

* Fix alignment in conversions report
2020-02-10 15:17:00 +02:00

42 lines
1.0 KiB
JavaScript

import React from 'react';
const THIRTY_SECONDS = 30000
export default class CurrentVisitors extends React.Component {
constructor(props) {
super(props)
this.state = {currentVisitors: null}
}
componentDidMount() {
this.updateCount().then(() => {
this.intervalId = setInterval(this.updateCount.bind(this), THIRTY_SECONDS)
})
}
componentWillUnMount() {
clearInverval(this.intervalId)
}
updateCount() {
return fetch(`/api/stats/${encodeURIComponent(this.props.site.domain)}/current-visitors`)
.then(res => res.json())
.then((res) => this.setState({currentVisitors: res}))
}
render() {
if (this.state.currentVisitors !== null) {
return (
<div className="text-sm font-bold text-grey-darker mt-1">
<svg className="w-2 mr-1 fill-current text-green" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<circle cx="8" cy="8" r="8"/>
</svg>
{this.state.currentVisitors} current visitors
</div>
)
} else {
return null
}
}
}