import React from "react";
import { Link } from 'react-router-dom'
import { withRouter } from 'react-router-dom'
import Modal from './modal'
import * as api from '../../api'
import numberFormatter from '../../util/number-formatter'
import {parseQuery} from '../../query'
class ExitPagesModal extends React.Component {
constructor(props) {
super(props)
this.state = {
loading: true,
query: parseQuery(props.location.search, props.site),
pages: [],
page: 1,
moreResultsAvailable: false
}
}
componentDidMount() {
this.loadPages();
}
loadPages() {
const {query, page} = this.state;
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/exit-pages`, query, {limit: 100, page})
.then((res) => this.setState((state) => ({loading: false, pages: state.pages.concat(res), moreResultsAvailable: res.length === 100})))
}
loadMore() {
this.setState({loading: true, page: this.state.page + 1}, this.loadPages.bind(this))
}
formatPercentage(number) {
if (typeof(number) === 'number') {
return number + '%'
} else {
return '-'
}
}
showConversionRate() {
return !!this.state.query.filters.goal
}
showExtra() {
return this.state.query.period !== 'realtime' && !this.showConversionRate()
}
label() {
if (this.state.query.period === 'realtime') {
return 'Current visitors'
}
if (this.showConversionRate()) {
return 'Conversions'
}
return 'Visitors'
}
renderPage(page) {
const query = new URLSearchParams(window.location.search)
query.set('exit_page', page.name)
return (
{page.name}
|
{this.showConversionRate() && {numberFormatter(page.total_visitors)} | }
{numberFormatter(page.unique_exits)} |
{this.showExtra() && {numberFormatter(page.total_exits)} | }
{this.showExtra() && {this.formatPercentage(page.exit_rate)} | }
{this.showConversionRate() && {numberFormatter(page.conversion_rate)}% | }
)
}
renderLoading() {
if (this.state.loading) {
return
} else if (this.state.moreResultsAvailable) {
return (
)
}
}
renderBody() {
if (this.state.pages) {
return (
Exit Pages
Page url |
{this.showConversionRate() && Total Visitors | }
{this.label()} |
{this.showExtra() && Total Exits | }
{this.showExtra() && Exit Rate | }
{this.showConversionRate() && CR | }
{ this.state.pages.map(this.renderPage.bind(this)) }
)
}
}
render() {
return (
{ this.renderBody() }
{ this.renderLoading() }
)
}
}
export default withRouter(ExitPagesModal)