2020-02-10 16:17:00 +03:00
|
|
|
import React from 'react';
|
2020-10-13 12:03:42 +03:00
|
|
|
import { Link } from 'react-router-dom'
|
2020-02-10 16:17:00 +03:00
|
|
|
|
2021-04-28 11:31:10 +03:00
|
|
|
import * as storage from '../../storage'
|
2021-03-25 12:55:15 +03:00
|
|
|
import LazyLoader from '../../lazy-loader'
|
2020-11-10 16:18:59 +03:00
|
|
|
import Browsers from './browsers'
|
|
|
|
import OperatingSystems from './operating-systems'
|
|
|
|
import FadeIn from '../../fade-in'
|
|
|
|
import numberFormatter from '../../number-formatter'
|
|
|
|
import Bar from '../bar'
|
|
|
|
import * as api from '../../api'
|
2020-02-10 16:17:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
const EXPLANATION = {
|
|
|
|
'Mobile': 'up to 576px',
|
|
|
|
'Tablet': '576px to 992px',
|
|
|
|
'Laptop': '992px to 1440px',
|
|
|
|
'Desktop': 'above 1440px',
|
|
|
|
}
|
|
|
|
|
|
|
|
function iconFor(screenSize) {
|
|
|
|
if (screenSize === 'Mobile') {
|
|
|
|
return (
|
2021-03-25 12:55:15 +03:00
|
|
|
<svg width="16px" height="16px" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="-mt-px feather"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"/><line x1="12" y1="18" x2="12" y2="18"/></svg>
|
2020-02-10 16:17:00 +03:00
|
|
|
)
|
|
|
|
} else if (screenSize === 'Tablet') {
|
|
|
|
return (
|
2021-03-25 12:55:15 +03:00
|
|
|
<svg width="16px" height="16px" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="-mt-px feather"><rect x="4" y="2" width="16" height="20" rx="2" ry="2" transform="rotate(180 12 12)"/><line x1="12" y1="18" x2="12" y2="18"/></svg>
|
2020-02-10 16:17:00 +03:00
|
|
|
)
|
|
|
|
} else if (screenSize === 'Laptop') {
|
|
|
|
return (
|
2021-03-25 12:55:15 +03:00
|
|
|
<svg width="16px" height="16px" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="-mt-px feather"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"/><line x1="2" y1="20" x2="22" y2="20"/></svg>
|
2020-02-10 16:17:00 +03:00
|
|
|
)
|
|
|
|
} else if (screenSize === 'Desktop') {
|
|
|
|
return (
|
2021-03-25 12:55:15 +03:00
|
|
|
<svg width="16px" height="16px" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="-mt-px feather"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
|
2020-02-10 16:17:00 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ScreenSizes extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = {loading: true}
|
2021-03-25 12:55:15 +03:00
|
|
|
this.onVisible = this.onVisible.bind(this)
|
2020-02-10 16:17:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.query !== prevProps.query) {
|
|
|
|
this.setState({loading: true, sizes: null})
|
|
|
|
this.fetchScreenSizes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-15 10:34:43 +03:00
|
|
|
onVisible() {
|
|
|
|
this.fetchScreenSizes()
|
|
|
|
if (this.props.timer) this.props.timer.onTick(this.fetchScreenSizes.bind(this))
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-10 16:17:00 +03:00
|
|
|
fetchScreenSizes() {
|
2021-06-15 10:34:43 +03:00
|
|
|
api.get(
|
|
|
|
`/api/stats/${encodeURIComponent(this.props.site.domain)}/screen-sizes`,
|
|
|
|
this.props.query
|
|
|
|
)
|
2020-02-10 16:17:00 +03:00
|
|
|
.then((res) => this.setState({loading: false, sizes: res}))
|
|
|
|
}
|
|
|
|
|
2021-06-15 10:34:43 +03:00
|
|
|
label() {
|
|
|
|
return this.props.query.period === 'realtime' ? 'Current visitors' : 'Visitors'
|
|
|
|
}
|
|
|
|
|
2020-02-10 16:17:00 +03:00
|
|
|
renderScreenSize(size) {
|
2020-10-13 12:03:42 +03:00
|
|
|
const query = new URLSearchParams(window.location.search)
|
|
|
|
query.set('screen', size.name)
|
|
|
|
|
2020-02-10 16:17:00 +03:00
|
|
|
return (
|
|
|
|
<div className="flex items-center justify-between my-1 text-sm" key={size.name}>
|
2021-07-08 09:42:30 +03:00
|
|
|
<Bar
|
|
|
|
count={size.count}
|
|
|
|
all={this.state.sizes}
|
|
|
|
bg="bg-green-50 dark:bg-gray-500 dark:bg-opacity-15"
|
|
|
|
maxWidthDeduction="6rem"
|
|
|
|
>
|
2021-06-15 10:34:43 +03:00
|
|
|
<span
|
|
|
|
tooltip={EXPLANATION[size.name]}
|
2021-07-08 09:42:30 +03:00
|
|
|
className="flex px-2 py-1.5 dark:text-gray-300"
|
2021-06-15 10:34:43 +03:00
|
|
|
>
|
2021-07-29 09:54:52 +03:00
|
|
|
<Link className="md:truncate block hover:underline" to={{search: query.toString()}}>
|
2020-10-13 12:03:42 +03:00
|
|
|
{iconFor(size.name)} {size.name}
|
|
|
|
</Link>
|
|
|
|
</span>
|
2021-07-08 09:42:30 +03:00
|
|
|
</Bar>
|
2021-06-15 10:34:43 +03:00
|
|
|
<span
|
|
|
|
className="font-medium dark:text-gray-200"
|
|
|
|
>
|
|
|
|
{numberFormatter(size.count)}
|
|
|
|
<span className="inline-block w-8 text-xs text-right">({size.percentage}%)</span>
|
|
|
|
</span>
|
2020-02-10 16:17:00 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-03 16:15:09 +03:00
|
|
|
renderList() {
|
|
|
|
if (this.state.sizes && this.state.sizes.length > 0) {
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
2021-06-15 10:34:43 +03:00
|
|
|
<div
|
|
|
|
className="flex items-center justify-between mt-3 mb-2 text-xs font-bold tracking-wide text-gray-500"
|
|
|
|
>
|
2020-03-03 16:15:09 +03:00
|
|
|
<span>Screen size</span>
|
2020-07-14 16:52:26 +03:00
|
|
|
<span>{ this.label() }</span>
|
2020-03-03 16:15:09 +03:00
|
|
|
</div>
|
|
|
|
{ this.state.sizes && this.state.sizes.map(this.renderScreenSize.bind(this)) }
|
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
}
|
2021-06-15 10:34:43 +03:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="font-medium text-center text-gray-500 mt-44 dark:text-gray-400"
|
|
|
|
>
|
|
|
|
No data yet
|
|
|
|
</div>
|
|
|
|
)
|
2020-03-03 16:15:09 +03:00
|
|
|
}
|
|
|
|
|
2020-02-10 16:17:00 +03:00
|
|
|
render() {
|
|
|
|
return (
|
2021-06-15 10:34:43 +03:00
|
|
|
<LazyLoader onVisible={this.onVisible} className="flex flex-col flex-grow">
|
2021-03-25 12:55:15 +03:00
|
|
|
{ this.state.loading && <div className="mx-auto loading mt-44"><div></div></div> }
|
2021-06-15 10:34:43 +03:00
|
|
|
<FadeIn show={!this.state.loading} class="flex-grow">
|
2020-03-03 16:15:09 +03:00
|
|
|
{ this.renderList() }
|
2020-03-03 12:13:08 +03:00
|
|
|
</FadeIn>
|
2021-03-25 12:55:15 +03:00
|
|
|
</LazyLoader>
|
2020-02-10 16:17:00 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class Devices extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2021-06-15 10:34:43 +03:00
|
|
|
this.tabKey = `deviceTab__${ props.site.domain}`
|
2021-04-28 11:31:10 +03:00
|
|
|
const storedTab = storage.getItem(this.tabKey)
|
2020-09-28 11:29:24 +03:00
|
|
|
this.state = {
|
|
|
|
mode: storedTab || 'size'
|
|
|
|
}
|
2020-02-10 16:17:00 +03:00
|
|
|
}
|
|
|
|
|
2021-06-15 10:34:43 +03:00
|
|
|
|
2020-02-10 16:17:00 +03:00
|
|
|
setMode(mode) {
|
|
|
|
return () => {
|
2021-04-28 11:31:10 +03:00
|
|
|
storage.setItem(this.tabKey, mode)
|
2020-02-10 16:17:00 +03:00
|
|
|
this.setState({mode})
|
|
|
|
}
|
|
|
|
}
|
2021-06-15 10:34:43 +03:00
|
|
|
|
|
|
|
renderContent() {
|
|
|
|
switch (this.state.mode) {
|
|
|
|
case 'browser':
|
|
|
|
return <Browsers site={this.props.site} query={this.props.query} timer={this.props.timer} />
|
|
|
|
case 'os':
|
|
|
|
return (
|
|
|
|
<OperatingSystems
|
|
|
|
site={this.props.site}
|
|
|
|
query={this.props.query}
|
|
|
|
timer={this.props.timer}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
case 'size':
|
|
|
|
default:
|
|
|
|
return (
|
|
|
|
<ScreenSizes
|
|
|
|
site={this.props.site}
|
|
|
|
query={this.props.query}
|
|
|
|
timer={this.props.timer}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 16:17:00 +03:00
|
|
|
|
|
|
|
renderPill(name, mode) {
|
|
|
|
const isActive = this.state.mode === mode
|
|
|
|
|
|
|
|
if (isActive) {
|
2021-06-15 10:34:43 +03:00
|
|
|
return (
|
|
|
|
<li
|
|
|
|
className="inline-block h-5 font-bold text-indigo-700 border-b-2 border-indigo-700 dark:text-indigo-500 dark:border-indigo-500"
|
|
|
|
>
|
|
|
|
{name}
|
|
|
|
</li>
|
|
|
|
)
|
2020-02-10 16:17:00 +03:00
|
|
|
}
|
2021-06-15 10:34:43 +03:00
|
|
|
|
|
|
|
return (
|
|
|
|
<li
|
|
|
|
className="cursor-pointer hover:text-indigo-600"
|
|
|
|
onClick={this.setMode(mode)}
|
|
|
|
>
|
|
|
|
{name}
|
|
|
|
</li>
|
|
|
|
)
|
2020-02-10 16:17:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2021-06-15 10:34:43 +03:00
|
|
|
<div
|
|
|
|
className="stats-item flex flex-col mt-6 stats-item--has-header w-full"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className="stats-item__header flex flex-col flex-grow relative p-4 bg-white rounded shadow-xl dark:bg-gray-825"
|
|
|
|
>
|
2021-03-25 12:55:15 +03:00
|
|
|
<div className="flex justify-between w-full">
|
2020-12-16 12:57:28 +03:00
|
|
|
<h3 className="font-bold dark:text-gray-100">Devices</h3>
|
2021-03-25 12:55:15 +03:00
|
|
|
<ul className="flex text-xs font-medium text-gray-500 dark:text-gray-400 space-x-2">
|
2020-09-28 11:29:24 +03:00
|
|
|
{ this.renderPill('Size', 'size') }
|
|
|
|
{ this.renderPill('Browser', 'browser') }
|
|
|
|
{ this.renderPill('OS', 'os') }
|
|
|
|
</ul>
|
2020-02-10 16:17:00 +03:00
|
|
|
</div>
|
|
|
|
{ this.renderContent() }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|