2019-11-19 07:30:42 +03:00
|
|
|
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 {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() {
|
2020-05-25 14:52:20 +03:00
|
|
|
if (this.state.query.filters.goal) {
|
|
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/goal/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
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
api.get(`/api/stats/${encodeURIComponent(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
|
|
|
|
}))
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
renderTerm(term) {
|
|
|
|
return (
|
|
|
|
<React.Fragment key={term.name}>
|
2020-02-11 12:54:52 +03:00
|
|
|
|
2020-12-16 12:57:28 +03:00
|
|
|
<tr className="text-sm dark:text-gray-200" key={term.name}>
|
2020-02-11 12:54:52 +03:00
|
|
|
<td className="p-2 truncate">{term.name}</td>
|
2021-11-04 15:20:39 +03:00
|
|
|
<td className="p-2 w-32 font-medium" align="right">{numberFormatter(term.visitors)}</td>
|
2020-02-11 12:54:52 +03:00
|
|
|
</tr>
|
2019-11-19 07:30:42 +03:00
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
renderKeywords() {
|
2019-11-20 08:48:27 +03:00
|
|
|
if (this.state.query.filters.goal) {
|
|
|
|
return (
|
2020-12-16 12:57:28 +03:00
|
|
|
<div className="text-center text-gray-700 dark:text-gray-300 mt-6">
|
2019-11-20 08:48:27 +03:00
|
|
|
<RocketIcon />
|
|
|
|
<div className="text-lg">Sorry, we cannot show which keywords converted best for goal <b>{this.state.query.filters.goal}</b></div>
|
2020-02-05 12:40:55 +03:00
|
|
|
<div className="text-lg">Google does not share this information</div>
|
2019-11-20 08:48:27 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
} else if (this.state.notConfigured) {
|
2019-11-19 07:30:42 +03:00
|
|
|
if (this.state.isOwner) {
|
|
|
|
return (
|
2020-12-16 12:57:28 +03:00
|
|
|
<div className="text-center text-gray-700 dark:text-gray-300 mt-6">
|
2019-11-19 07:30:42 +03:00
|
|
|
<RocketIcon />
|
2019-12-20 06:23:16 +03:00
|
|
|
<div className="text-lg">The site is not connected to Google Search Keywords</div>
|
2019-11-19 07:30:42 +03:00
|
|
|
<div className="text-lg">Configure the integration to view search terms</div>
|
2021-01-19 16:40:01 +03:00
|
|
|
<a href={`/${encodeURIComponent(this.props.site.domain)}/settings/search-console`} className="button mt-4">Connect with Google</a>
|
2019-11-19 07:30:42 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return (
|
2020-12-16 12:57:28 +03:00
|
|
|
<div className="text-center text-gray-700 dark:text-gray-300 mt-6">
|
2019-11-19 07:30:42 +03:00
|
|
|
<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 (
|
2021-08-13 11:00:42 +03:00
|
|
|
<table className="w-max overflow-x-auto md:w-full table-striped table-fixed">
|
2020-02-17 11:51:32 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-08-13 11:00:42 +03:00
|
|
|
<th className="p-2 w-48 md:w-56 lg:w-1/3 text-xs tracking-wide font-bold text-gray-500 dark:text-gray-400" align="left">Search Term</th>
|
|
|
|
<th className="p-2 w-32 lg:w-1/2 text-xs tracking-wide font-bold text-gray-500 dark:text-gray-400" align="right">Visitors</th>
|
2020-02-17 11:51:32 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.state.searchTerms.map(this.renderTerm.bind(this))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-11-19 07:30:42 +03:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return (
|
2020-12-16 12:57:28 +03:00
|
|
|
<div className="text-center text-gray-700 dark:text-gray-300 mt-6">
|
2019-11-19 07:30:42 +03:00
|
|
|
<RocketIcon />
|
|
|
|
<div className="text-lg">Could not find any search terms for this period</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-25 14:52:20 +03:00
|
|
|
renderGoalText() {
|
|
|
|
if (this.state.query.filters.goal) {
|
|
|
|
return (
|
2020-12-16 12:57:28 +03:00
|
|
|
<h1 className="text-xl font-semibold text-gray-500 dark:text-gray-200 leading-none">completed {this.state.query.filters.goal}</h1>
|
2020-05-25 14:52:20 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
renderBody() {
|
2020-03-03 17:18:02 +03:00
|
|
|
if (this.state.loading) {
|
|
|
|
return (
|
|
|
|
<div className="loading mt-32 mx-auto"><div></div></div>
|
|
|
|
)
|
|
|
|
} else {
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
|
|
|
<React.Fragment>
|
2020-12-16 12:57:28 +03:00
|
|
|
<Link to={`/${encodeURIComponent(this.props.site.domain)}/referrers${window.location.search}`} className="font-bold text-gray-700 dark:text-gray-200 hover:underline">← All referrers</Link>
|
2019-11-19 07:30:42 +03:00
|
|
|
|
2020-12-16 12:57:28 +03:00
|
|
|
<div className="my-4 border-b border-gray-300 dark:border-gray-500"></div>
|
2020-03-06 12:11:38 +03:00
|
|
|
<main className="modal__content">
|
2020-12-16 12:57:28 +03:00
|
|
|
<h1 className="text-xl font-semibold mb-0 leading-none dark:text-gray-200">
|
2020-05-25 14:52:20 +03:00
|
|
|
{this.state.totalVisitors} visitors from Google<br />
|
|
|
|
{toHuman(this.state.query)}
|
|
|
|
</h1>
|
|
|
|
{this.renderGoalText()}
|
2020-02-17 11:51:32 +03:00
|
|
|
{ this.renderKeywords() }
|
2019-11-19 07:30:42 +03:00
|
|
|
</main>
|
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-03-03 12:13:08 +03:00
|
|
|
<Modal site={this.props.site} show={!this.state.loading}>
|
2019-11-19 07:30:42 +03:00
|
|
|
{ this.renderBody() }
|
|
|
|
</Modal>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(GoogleKeywordsModal)
|