mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 00:51:36 +03:00
ba36b08fd6
Closes #1739
120 lines
4.1 KiB
JavaScript
120 lines
4.1 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
|
|
import Bar from '../bar'
|
|
import PropBreakdown from './prop-breakdown'
|
|
import numberFormatter from '../../util/number-formatter'
|
|
import * as api from '../../api'
|
|
import * as url from '../../util/url'
|
|
import LazyLoader from '../../components/lazy-loader'
|
|
|
|
const MOBILE_UPPER_WIDTH = 767
|
|
const DEFAULT_WIDTH = 1080
|
|
|
|
export default class Conversions extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.htmlNode = React.createRef()
|
|
this.state = {
|
|
loading: true,
|
|
viewport: DEFAULT_WIDTH,
|
|
}
|
|
this.onVisible = this.onVisible.bind(this)
|
|
|
|
this.handleResize = this.handleResize.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
window.addEventListener('resize', this.handleResize, false);
|
|
this.handleResize();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener('resize', this.handleResize, false);
|
|
}
|
|
|
|
handleResize() {
|
|
this.setState({ viewport: window.innerWidth });
|
|
}
|
|
|
|
onVisible() {
|
|
this.fetchConversions()
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.query !== prevProps.query) {
|
|
const height = this.htmlNode.current.element.offsetHeight
|
|
this.setState({loading: true, goals: null, prevHeight: height})
|
|
this.fetchConversions()
|
|
}
|
|
}
|
|
|
|
getBarMaxWidth() {
|
|
const { viewport } = this.state;
|
|
return viewport > MOBILE_UPPER_WIDTH ? "16rem" : "10rem";
|
|
}
|
|
|
|
fetchConversions() {
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/conversions`, this.props.query)
|
|
.then((res) => this.setState({loading: false, goals: res, prevHeight: null}))
|
|
}
|
|
|
|
renderGoal(goal) {
|
|
const { viewport } = this.state;
|
|
const renderProps = this.props.query.filters['goal'] == goal.name && goal.prop_names
|
|
|
|
return (
|
|
<div className="my-2 text-sm" key={goal.name}>
|
|
<div className="flex items-center justify-between my-2">
|
|
<Bar
|
|
count={goal.unique_conversions}
|
|
all={this.state.goals}
|
|
bg="bg-red-50 dark:bg-gray-500 dark:bg-opacity-15"
|
|
maxWidthDeduction={this.getBarMaxWidth()}
|
|
plot="unique_conversions"
|
|
>
|
|
<Link to={url.setQuery('goal', goal.name)} className="block px-2 py-1.5 hover:underline relative z-9 break-all lg:truncate dark:text-gray-200">{goal.name}</Link>
|
|
</Bar>
|
|
<div className="dark:text-gray-200">
|
|
<span className="inline-block w-20 font-medium text-right">{numberFormatter(goal.unique_conversions)}</span>
|
|
{viewport > MOBILE_UPPER_WIDTH && <span className="inline-block w-20 font-medium text-right">{numberFormatter(goal.total_conversions)}</span>}
|
|
<span className="inline-block w-20 font-medium text-right">{goal.conversion_rate}%</span>
|
|
</div>
|
|
</div>
|
|
{ renderProps && <PropBreakdown site={this.props.site} query={this.props.query} goal={goal} /> }
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderInner() {
|
|
const { viewport } = this.state;
|
|
if (this.state.loading) {
|
|
return <div className="mx-auto my-2 loading"><div></div></div>
|
|
} else if (this.state.goals) {
|
|
return (
|
|
<React.Fragment>
|
|
<h3 className="font-bold dark:text-gray-100">{this.props.title || "Goal Conversions"}</h3>
|
|
<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>Goal</span>
|
|
<div className="text-right">
|
|
<span className="inline-block w-20">Uniques</span>
|
|
{viewport > MOBILE_UPPER_WIDTH && <span className="inline-block w-20">Total</span>}
|
|
<span className="inline-block w-20">CR</span>
|
|
</div>
|
|
</div>
|
|
|
|
{ this.state.goals.map(this.renderGoal.bind(this)) }
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<LazyLoader className="w-full p-4 bg-white rounded shadow-xl dark:bg-gray-825" style={{minHeight: '132px', height: this.state.prevHeight ?? 'auto'}} onVisible={this.onVisible} ref={this.htmlNode}>
|
|
{ this.renderInner() }
|
|
</LazyLoader>
|
|
)
|
|
}
|
|
}
|