mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 00:21:43 +03:00
e8f20e67cc
* Load dashboard with react * Rename stast2 to dashboard * Save timeframe on the frontend * Implement current visitors * Implement comparisons * React to route changes * Add modals * Show number of visitors on hover * Show 'Today' for today * Add 30 days * Show referrer drilldown * Arrow keys to go back and forward * Improve comparisons UI * Fix dropdown when clicking on it * Verify API access in a memoized fashion * Test API access * Test stats through controller * Move map formatting from stats controller to stats * Remove unused code * Remove dead code from query * Remove dead code from stats templates * Add stats view test back in * Render modal inside the modal component * Implement google search terms * Add explanation for screen sizes * Separate dashboard JS from the app js
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
import React from 'react';
|
|
|
|
import Bar from './bar'
|
|
import MoreLink from './more-link'
|
|
import * as api from '../api'
|
|
|
|
export default class Countries extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
loading: true
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fetchCountries()
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.query !== prevProps.query) {
|
|
this.setState({loading: true, countries: null})
|
|
this.fetchCountries()
|
|
}
|
|
}
|
|
|
|
fetchCountries() {
|
|
api.get(`/api/stats/${this.props.site.domain}/countries`, this.props.query)
|
|
.then((res) => this.setState({loading: false, countries: res}))
|
|
}
|
|
|
|
renderCountry(country) {
|
|
return (
|
|
<React.Fragment key={country.name}>
|
|
<div className="flex items-center justify-between my-2">
|
|
<span className="truncate" style={{maxWidth: '80%'}}>{country.name}</span>
|
|
<span tooltip={`${country.count} visitors`}>{country.percentage}%</span>
|
|
</div>
|
|
<Bar count={country.count} all={this.state.countries} color="indigo" />
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
|
|
render() {
|
|
if (this.state.loading) {
|
|
return (
|
|
<div className="w-full md:w-31percent bg-white shadow-md rounded mt-4 p-4">
|
|
<div className="loading my-32 mx-auto"><div></div></div>
|
|
</div>
|
|
)
|
|
} else if (this.state.countries) {
|
|
return (
|
|
<div className="w-full md:w-31percent bg-white shadow-md rounded mt-4 p-4">
|
|
<div className="text-center">
|
|
<h2>Top Countries</h2>
|
|
<div className="text-grey-darker mt-1">by visitors</div>
|
|
</div>
|
|
|
|
<div className="mt-8">
|
|
{ this.state.countries.map(this.renderCountry.bind(this)) }
|
|
</div>
|
|
<MoreLink site={this.props.site} list={this.state.countries} endpoint="countries" />
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
}
|