2021-11-23 12:39:09 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router-dom'
|
|
|
|
|
|
|
|
import FadeIn from '../../fade-in'
|
|
|
|
import MoreLink from '../more-link'
|
2021-12-03 14:59:32 +03:00
|
|
|
import numberFormatter from '../../util/number-formatter'
|
2021-11-23 12:39:09 +03:00
|
|
|
import Bar from '../bar'
|
2021-12-03 14:59:32 +03:00
|
|
|
import LazyLoader from '../../components/lazy-loader'
|
2021-11-23 12:39:09 +03:00
|
|
|
|
|
|
|
export default class ListReport extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = {loading: true}
|
|
|
|
this.onVisible = this.onVisible.bind(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.query !== prevProps.query) {
|
|
|
|
this.fetchData()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onVisible() {
|
|
|
|
this.fetchData()
|
|
|
|
if (this.props.timer) this.props.timer.onTick(this.fetchData.bind(this))
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchData() {
|
|
|
|
this.setState({loading: true, list: null})
|
|
|
|
this.props.fetchData()
|
|
|
|
.then((res) => this.setState({loading: false, list: res}))
|
|
|
|
}
|
|
|
|
|
|
|
|
label() {
|
2021-11-25 13:00:17 +03:00
|
|
|
if (this.props.query.period === 'realtime') {
|
|
|
|
return 'Current visitors'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.showConversionRate()) {
|
|
|
|
return 'Conversions'
|
|
|
|
}
|
|
|
|
|
2021-12-03 14:59:32 +03:00
|
|
|
return this.valueLabel()
|
2021-11-25 13:00:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
showConversionRate() {
|
|
|
|
return !!this.props.query.filters.goal
|
2021-11-23 12:39:09 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 14:59:32 +03:00
|
|
|
valueKey() {
|
|
|
|
return this.props.valueKey || 'visitors'
|
|
|
|
}
|
|
|
|
|
|
|
|
valueLabel() {
|
|
|
|
return this.props.valueLabel || 'Visitors'
|
|
|
|
}
|
|
|
|
|
|
|
|
renderExternalLink(item) {
|
|
|
|
if (this.props.externalLinkDest) {
|
|
|
|
const dest = this.props.externalLinkDest(item)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<a
|
|
|
|
target="_blank"
|
|
|
|
rel="noreferrer"
|
|
|
|
href={dest}
|
|
|
|
className="hidden group-hover:block"
|
|
|
|
>
|
|
|
|
<svg className="inline w-4 h-4 ml-1 -mt-1 text-gray-600 dark:text-gray-400" fill="currentColor" viewBox="0 0 20 20"><path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"></path><path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z"></path></svg>
|
|
|
|
</a>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-23 12:39:09 +03:00
|
|
|
renderListItem(listItem) {
|
|
|
|
const query = new URLSearchParams(window.location.search)
|
|
|
|
|
|
|
|
Object.entries(this.props.filter).forEach((([key, valueKey]) => {
|
|
|
|
query.set(key, listItem[valueKey])
|
|
|
|
}))
|
|
|
|
|
2021-11-25 13:00:17 +03:00
|
|
|
const maxWidthDeduction = this.showConversionRate() ? "10rem" : "5rem"
|
|
|
|
const lightBackground = this.props.color || 'bg-green-50'
|
2021-12-13 15:45:19 +03:00
|
|
|
const noop = () => {}
|
2021-11-25 13:00:17 +03:00
|
|
|
|
2021-11-23 12:39:09 +03:00
|
|
|
return (
|
|
|
|
<div className="flex items-center justify-between my-1 text-sm" key={listItem.name}>
|
|
|
|
<Bar
|
2021-12-03 14:59:32 +03:00
|
|
|
count={listItem[this.valueKey()]}
|
2021-11-23 12:39:09 +03:00
|
|
|
all={this.state.list}
|
2021-11-25 13:00:17 +03:00
|
|
|
bg={`${lightBackground} dark:bg-gray-500 dark:bg-opacity-15`}
|
|
|
|
maxWidthDeduction={maxWidthDeduction}
|
2021-12-03 14:59:32 +03:00
|
|
|
plot={this.valueKey()}
|
2021-11-23 12:39:09 +03:00
|
|
|
>
|
2021-12-03 14:59:32 +03:00
|
|
|
<span className="flex px-2 py-1.5 group dark:text-gray-300 relative z-9 break-all" tooltip={this.props.tooltipText && this.props.tooltipText(listItem)}>
|
2021-12-13 15:45:19 +03:00
|
|
|
<Link onClick={this.props.onClick || noop} className="md:truncate block hover:underline" to={{search: query.toString()}}>
|
2021-11-25 13:00:17 +03:00
|
|
|
{this.props.renderIcon && this.props.renderIcon(listItem)}
|
|
|
|
{this.props.renderIcon && ' '}
|
2021-11-23 12:39:09 +03:00
|
|
|
{listItem.name}
|
|
|
|
</Link>
|
2021-12-03 14:59:32 +03:00
|
|
|
{ this.renderExternalLink(listItem) }
|
2021-11-23 12:39:09 +03:00
|
|
|
</span>
|
|
|
|
</Bar>
|
2021-11-25 13:00:17 +03:00
|
|
|
<span className="font-medium dark:text-gray-200 w-20 text-right">
|
2021-12-03 14:59:32 +03:00
|
|
|
{numberFormatter(listItem[this.valueKey()])}
|
2021-11-23 12:39:09 +03:00
|
|
|
{
|
2021-11-25 13:00:17 +03:00
|
|
|
listItem.percentage >= 0
|
2021-12-06 16:18:17 +03:00
|
|
|
? <span className="inline-block w-8 pl-1 text-xs text-right">({listItem.percentage}%)</span>
|
2021-11-25 13:00:17 +03:00
|
|
|
: null
|
2021-11-23 12:39:09 +03:00
|
|
|
}
|
|
|
|
</span>
|
2021-11-25 13:00:17 +03:00
|
|
|
{this.showConversionRate() && <span className="font-medium dark:text-gray-200 w-20 text-right">{listItem.conversion_rate}%</span>}
|
2021-11-23 12:39:09 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
renderList() {
|
|
|
|
if (this.state.list && this.state.list.length > 0) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="flex items-center justify-between mt-3 mb-2 text-xs font-bold tracking-wide text-gray-500 dark:text-gray-400">
|
|
|
|
<span>{ this.props.keyLabel }</span>
|
2021-11-25 13:00:17 +03:00
|
|
|
<span className="text-right">
|
2021-12-03 14:59:32 +03:00
|
|
|
<span className="inline-block w-30">{this.label()}</span>
|
2021-11-25 13:00:17 +03:00
|
|
|
{this.showConversionRate() && <span className="inline-block w-20">CR</span>}
|
|
|
|
</span>
|
2021-11-23 12:39:09 +03:00
|
|
|
</div>
|
|
|
|
{ this.state.list && this.state.list.map(this.renderListItem.bind(this)) }
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return <div className="font-medium text-center text-gray-500 mt-44 dark:text-gray-400">No data yet</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<LazyLoader onVisible={this.onVisible} className="flex flex-col flex-grow">
|
|
|
|
{ this.state.loading && <div className="mx-auto loading mt-44"><div></div></div> }
|
|
|
|
<FadeIn show={!this.state.loading} className="flex-grow">
|
|
|
|
{ this.renderList() }
|
|
|
|
</FadeIn>
|
|
|
|
{this.props.detailsLink && !this.state.loading && <MoreLink url={this.props.detailsLink} list={this.state.list} />}
|
|
|
|
</LazyLoader>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|