analytics/assets/js/dashboard/stats/modals/google-keywords.js
2019-12-20 11:23:16 +08:00

126 lines
4.1 KiB
JavaScript

import React from "react";
import { Link, withRouter } from 'react-router-dom'
import Modal from './modal'
import * as api from '../../api'
import numberFormatter from '../../number-formatter'
import Bar from '../bar'
import {parseQuery, toHuman} from '../../query'
import RocketIcon from './rocket-icon'
class GoogleKeywordsModal extends React.Component {
constructor(props) {
super(props)
this.state = {
loading: true,
query: parseQuery(props.location.search, props.site)
}
}
componentDidMount() {
api.get(`/api/stats/${this.props.site.domain}/referrers/Google`, this.state.query, {limit: 100})
.then((res) => this.setState({
loading: false,
searchTerms: res.search_terms,
totalVisitors: res.total_visitors,
notConfigured: res.not_configured,
isOwner: res.is_owner
}))
}
renderTerm(term) {
return (
<React.Fragment key={term.name}>
<div className="flex items-center justify-between my-2">
<a className="hover:underline truncate" target="_blank" style={{maxWidth: '80%'}} href={'//' + term.name}>{ term.name }</a>
<span>{numberFormatter(term.count)}</span>
</div>
<Bar count={term.count} all={this.state.searchTerms} color="blue" />
</React.Fragment>
)
}
renderKeywords() {
if (this.state.query.filters.goal) {
return (
<div className="text-center text-grey-darker mt-6">
<RocketIcon />
<div className="text-lg">Sorry, we cannot show which keywords converted best for goal <b>{this.state.query.filters.goal}</b></div>
<div className="text-lg">Google has a monopoly on that data which helps them dominate the analytics market</div>
</div>
)
} else if (this.state.notConfigured) {
if (this.state.isOwner) {
return (
<div className="text-center text-grey-darker mt-6">
<RocketIcon />
<div className="text-lg">The site is not connected to Google Search Keywords</div>
<div className="text-lg">Configure the integration to view search terms</div>
<a href={`/${this.props.site.domain}/settings#google-auth`} className="button mt-4">Connect with Google</a>
</div>
)
} else {
return (
<div className="text-center text-grey-darker mt-6">
<RocketIcon />
<div className="text-lg">The site is not connected to Google Search Kewyords</div>
<div className="text-lg">Cannot show search terms</div>
</div>
)
}
} else if (this.state.searchTerms.length > 0) {
return (
<div className="mt-4">
{ this.state.searchTerms.map(this.renderTerm.bind(this)) }
</div>
)
} else {
return (
<div className="text-center text-grey-darker mt-6">
<RocketIcon />
<div className="text-lg">Could not find any search terms for this period</div>
</div>
)
}
}
renderBody() {
if (this.state.loading) {
return (
<div className="loading my-32 mx-auto"><div></div></div>
)
} else {
return (
<React.Fragment>
<header className="modal__header">
<Link to={`/${this.props.site.domain}/referrers${window.location.search}`} className="font-bold text-grey-darker hover:underline"> All referrers</Link>
</header>
<div className="my-4 border-b border-grey-light"></div>
<main className="modal__content mt-0">
<h1>{this.state.totalVisitors} new visitors from Google</h1>
<h1 className="text-grey-darker" style={{transform: 'translateY(-1rem)'}}>{toHuman(this.state.query)}</h1>
<div className="flex items-center justify-between py-2 border-b border-b-grey text-sm font-bold text-grey-darker">
<span>Search term</span>
<span>Visitors</span>
</div>
{ this.renderKeywords() }
</main>
</React.Fragment>
)
}
}
render() {
return (
<Modal site={this.props.site}>
{ this.renderBody() }
</Modal>
)
}
}
export default withRouter(GoogleKeywordsModal)