mirror of
https://github.com/plausible/analytics.git
synced 2025-01-02 22:48:25 +03:00
d0d7b823f8
* Collect browser and OS version * Display browser version * Show operating system versions * Device categorization * Treat headless chrome like a bot * Ignore events from automated browsers * Only take major and minor of the version * Add tests * Add CHANGELOG entry * Add changelog entry for bots * Store empty value as browser when unknown
94 lines
3.1 KiB
JavaScript
94 lines
3.1 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
|
|
import FadeIn from '../../fade-in'
|
|
import numberFormatter from '../../number-formatter'
|
|
import Bar from '../bar'
|
|
import * as api from '../../api'
|
|
|
|
export default class OperatingSystems extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {loading: true}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fetchOperatingSystems()
|
|
if (this.props.timer) this.props.timer.onTick(this.fetchOperatingSystems.bind(this))
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.query !== prevProps.query) {
|
|
this.setState({loading: true, operatingSystems: null})
|
|
this.fetchOperatingSystems()
|
|
}
|
|
}
|
|
|
|
fetchOperatingSystems() {
|
|
if (this.props.query.filters.os) {
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/operating-system-versions`, this.props.query)
|
|
.then((res) => this.setState({loading: false, operatingSystems: res}))
|
|
} else {
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/operating-systems`, this.props.query)
|
|
.then((res) => this.setState({loading: false, operatingSystems: res}))
|
|
}
|
|
}
|
|
|
|
renderOperatingSystem(os) {
|
|
const query = new URLSearchParams(window.location.search)
|
|
if (this.props.query.filters.os) {
|
|
query.set('os_version', os.name)
|
|
} else {
|
|
query.set('os', os.name)
|
|
}
|
|
|
|
return (
|
|
<div className="flex items-center justify-between my-1 text-sm" key={os.name}>
|
|
<div className="w-full h-8" style={{maxWidth: 'calc(100% - 6rem)'}}>
|
|
<Bar count={os.count} all={this.state.operatingSystems} bg="bg-green-50" />
|
|
<span className="flex px-2" style={{marginTop: '-26px'}}>
|
|
<Link className="block truncate hover:underline" to={{search: query.toString()}}>
|
|
{os.name}
|
|
</Link>
|
|
</span>
|
|
</div>
|
|
<span className="font-medium">{numberFormatter(os.count)} <span className="inline-block text-xs w-8 text-right">({os.percentage}%)</span></span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
label() {
|
|
return this.props.query.period === 'realtime' ? 'Current visitors' : 'Visitors'
|
|
}
|
|
|
|
renderList() {
|
|
const key = this.props.query.filters.os ? this.props.query.filters.os + ' version' : 'Operating system'
|
|
|
|
if (this.state.operatingSystems && this.state.operatingSystems.length > 0) {
|
|
return (
|
|
<React.Fragment>
|
|
<div className="flex items-center mt-3 mb-2 justify-between text-gray-500 text-xs font-bold tracking-wide">
|
|
<span>{ key }</span>
|
|
<span>{ this.label() }</span>
|
|
</div>
|
|
{ this.state.operatingSystems && this.state.operatingSystems.map(this.renderOperatingSystem.bind(this)) }
|
|
</React.Fragment>
|
|
)
|
|
} else {
|
|
return <div className="text-center mt-44 font-medium text-gray-500">No data yet</div>
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<React.Fragment>
|
|
{ this.state.loading && <div className="loading mt-44 mx-auto"><div></div></div> }
|
|
<FadeIn show={!this.state.loading}>
|
|
{ this.renderList() }
|
|
</FadeIn>
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
|