mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 09:01:40 +03:00
425975efec
* Adds New Dark Mode Assets * Moves triangle for dropdown to a reasonable position * Majority .eex dark implementation * Fixes Logo Positioning * Adds theme flag to user schema, uses it * Uses correct variables for theme applicator script * Minor missed theme changes/fallbacks * Individual Component Support + Theme Context * Sources Tab Support This was a pain to test D: * Partial Stats Sections Support * More of stats modules supported * Modal +table support * Improves some Flatpickr in light theme, supports dark theme * Fixes missed settings tab colors * Finishes Devices module support * Fixes bar graph colors * Better colorizes maps module * Undoes colorized bars (they looked bad, on second thought) * Fixes loading indicator * Finishes conversions module * Adds changelog entry The PR number could be wrong, will double check * Fixes missed header color * Fixes naming of migration and removes static alter * Does migration correctly As I said, my Elixir is pretty weak heh * Adds support for spike notifications setting * Improves contrast and visibility for email settings * Resolves @ukutaht's comments on #467 * Fixes missing dark style * Found one more missed dark element (shared links) * Formatting fixes
94 lines
3.2 KiB
JavaScript
94 lines
3.2 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 dark:gray-500 dark:bg-opacity-15" />
|
|
<span className="flex px-2 dark:text-gray-300" style={{marginTop: '-26px'}}>
|
|
<Link className="block truncate hover:underline" to={{search: query.toString()}}>
|
|
{os.name}
|
|
</Link>
|
|
</span>
|
|
</div>
|
|
<span className="font-medium dark:text-gray-200">{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 dark:text-gray-400 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 dark:text-gray-400">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>
|
|
)
|
|
}
|
|
}
|
|
|