2019-11-19 07:30:42 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router-dom'
|
2020-07-14 16:52:26 +03:00
|
|
|
import FlipMove from 'react-flip-move';
|
2019-11-19 07:30:42 +03:00
|
|
|
|
2021-12-03 14:59:32 +03:00
|
|
|
import * as storage from '../../util/storage'
|
2020-08-17 15:13:30 +03:00
|
|
|
import FadeIn from '../../fade-in'
|
|
|
|
import Bar from '../bar'
|
|
|
|
import MoreLink from '../more-link'
|
2021-12-03 14:59:32 +03:00
|
|
|
import numberFormatter from '../../util/number-formatter'
|
2020-08-17 15:13:30 +03:00
|
|
|
import * as api from '../../api'
|
2021-12-03 14:59:32 +03:00
|
|
|
import * as url from '../../util/url'
|
|
|
|
import LazyLoader from '../../components/lazy-loader'
|
2020-07-30 11:18:28 +03:00
|
|
|
|
2020-09-28 11:29:24 +03:00
|
|
|
class AllSources extends React.Component {
|
2019-11-19 07:30:42 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2021-03-25 12:55:15 +03:00
|
|
|
this.onVisible = this.onVisible.bind(this)
|
2023-01-02 18:42:57 +03:00
|
|
|
this.fetchReferrers = this.fetchReferrers.bind(this)
|
2022-07-14 12:27:40 +03:00
|
|
|
this.state = { loading: true }
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
2021-03-25 12:55:15 +03:00
|
|
|
onVisible() {
|
2019-11-19 07:30:42 +03:00
|
|
|
this.fetchReferrers()
|
2023-01-02 18:42:57 +03:00
|
|
|
if (this.props.query.period === 'realtime') {
|
|
|
|
document.addEventListener('tick', this.fetchReferrers)
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.query !== prevProps.query) {
|
2022-07-14 12:27:40 +03:00
|
|
|
this.setState({ loading: true, referrers: null })
|
2019-11-19 07:30:42 +03:00
|
|
|
this.fetchReferrers()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-02 18:42:57 +03:00
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('tick', this.fetchReferrers)
|
|
|
|
}
|
|
|
|
|
2021-09-20 17:17:11 +03:00
|
|
|
showConversionRate() {
|
|
|
|
return !!this.props.query.filters.goal
|
|
|
|
}
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
fetchReferrers() {
|
2022-12-19 15:40:21 +03:00
|
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/sources`, this.props.query)
|
2022-07-14 12:27:40 +03:00
|
|
|
.then((res) => this.setState({ loading: false, referrers: res }))
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
renderReferrer(referrer) {
|
2022-07-14 12:27:40 +03:00
|
|
|
const maxWidthDeduction = this.showConversionRate() ? "10rem" : "5rem"
|
2021-09-20 17:17:11 +03:00
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
2021-07-08 09:42:30 +03:00
|
|
|
<div
|
|
|
|
className="flex items-center justify-between my-1 text-sm"
|
|
|
|
key={referrer.name}
|
|
|
|
>
|
|
|
|
<Bar
|
2021-11-04 15:20:39 +03:00
|
|
|
count={referrer.visitors}
|
2021-07-08 09:42:30 +03:00
|
|
|
all={this.state.referrers}
|
|
|
|
bg="bg-blue-50 dark:bg-gray-500 dark:bg-opacity-15"
|
2021-09-20 17:17:11 +03:00
|
|
|
maxWidthDeduction={maxWidthDeduction}
|
2021-07-08 09:42:30 +03:00
|
|
|
>
|
2021-07-29 09:54:52 +03:00
|
|
|
<span className="flex px-2 py-1.5 dark:text-gray-300 relative z-9 break-all">
|
2021-07-08 09:42:30 +03:00
|
|
|
<Link
|
2021-07-29 09:54:52 +03:00
|
|
|
className="md:truncate block hover:underline"
|
2021-09-21 11:44:51 +03:00
|
|
|
to={url.setQuery('source', referrer.name)}
|
2021-07-08 09:42:30 +03:00
|
|
|
>
|
|
|
|
<img
|
2021-08-18 15:21:47 +03:00
|
|
|
src={`/favicon/sources/${encodeURIComponent(referrer.name)}`}
|
2021-07-08 09:42:30 +03:00
|
|
|
className="inline w-4 h-4 mr-2 -mt-px align-middle"
|
|
|
|
/>
|
2022-07-14 12:27:40 +03:00
|
|
|
{referrer.name}
|
2020-08-17 15:13:30 +03:00
|
|
|
</Link>
|
2020-07-30 11:18:28 +03:00
|
|
|
</span>
|
2021-07-08 09:42:30 +03:00
|
|
|
</Bar>
|
2022-07-14 12:27:40 +03:00
|
|
|
<span className="font-medium dark:text-gray-200 w-20 text-right" tooltip={referrer.visitors}>{numberFormatter(referrer.visitors)}</span>
|
2021-09-20 17:17:11 +03:00
|
|
|
{this.showConversionRate() && <span className="font-medium dark:text-gray-200 w-20 text-right">{referrer.conversion_rate}%</span>}
|
2020-02-10 16:17:00 +03:00
|
|
|
</div>
|
2019-11-19 07:30:42 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-07-14 16:52:26 +03:00
|
|
|
label() {
|
2021-09-29 14:28:29 +03:00
|
|
|
if (this.props.query.period === 'realtime') {
|
|
|
|
return 'Current visitors'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.showConversionRate()) {
|
|
|
|
return 'Conversions'
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'Visitors'
|
2020-07-14 16:52:26 +03:00
|
|
|
}
|
|
|
|
|
2020-03-03 16:15:09 +03:00
|
|
|
renderList() {
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
if (this.state.referrers && this.state.referrers.length > 0) {
|
2019-11-19 07:30:42 +03:00
|
|
|
return (
|
2020-02-10 16:17:00 +03:00
|
|
|
<React.Fragment>
|
2021-03-25 12:55:15 +03:00
|
|
|
<div className="flex items-center justify-between mt-3 mb-2 text-xs font-bold tracking-wide text-gray-500">
|
2020-08-17 15:13:30 +03:00
|
|
|
<span>Source</span>
|
2021-09-20 17:17:11 +03:00
|
|
|
<div className="text-right">
|
|
|
|
<span className="inline-block w-20">{this.label()}</span>
|
|
|
|
{this.showConversionRate() && <span className="inline-block w-20">CR</span>}
|
|
|
|
</div>
|
2019-11-19 07:30:42 +03:00
|
|
|
</div>
|
2020-02-10 16:17:00 +03:00
|
|
|
|
2021-08-23 12:27:54 +03:00
|
|
|
<FlipMove className="flex-grow">
|
2020-07-14 16:52:26 +03:00
|
|
|
{this.state.referrers.map(this.renderReferrer.bind(this))}
|
|
|
|
</FlipMove>
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
<MoreLink site={this.props.site} list={this.state.referrers} endpoint="sources" />
|
2020-03-03 16:15:09 +03:00
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
} else {
|
2023-01-02 18:42:57 +03:00
|
|
|
return <div className="font-medium text-center text-gray-500 mt-44 dark:text-gray-400">No data yet</div>
|
2020-03-03 16:15:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderContent() {
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
return (
|
2021-08-23 12:27:54 +03:00
|
|
|
<LazyLoader className="flex flex-col flex-grow" onVisible={this.onVisible}>
|
2021-03-25 12:55:15 +03:00
|
|
|
<div id="sources" className="flex justify-between w-full">
|
2021-03-02 17:26:29 +03:00
|
|
|
<h3 className="font-bold dark:text-gray-100">Top Sources</h3>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.props.renderTabs()}
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
</div>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.state.loading && <div className="mx-auto loading mt-44"><div></div></div>}
|
2021-08-23 12:27:54 +03:00
|
|
|
<FadeIn show={!this.state.loading} className="flex flex-col flex-grow">
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.renderList()}
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
</FadeIn>
|
2021-03-25 12:55:15 +03:00
|
|
|
</LazyLoader>
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
)
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2021-06-15 10:34:43 +03:00
|
|
|
<div
|
|
|
|
className="relative p-4 bg-white rounded shadow-xl stats-item flex flex-col mt-6 w-full dark:bg-gray-825"
|
|
|
|
>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.renderContent()}
|
2020-09-28 11:29:24 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const UTM_TAGS = {
|
2022-07-14 12:27:40 +03:00
|
|
|
utm_medium: { label: 'UTM Medium', shortLabel: 'UTM Medium', endpoint: 'utm_mediums' },
|
|
|
|
utm_source: { label: 'UTM Source', shortLabel: 'UTM Source', endpoint: 'utm_sources' },
|
|
|
|
utm_campaign: { label: 'UTM Campaign', shortLabel: 'UTM Campai', endpoint: 'utm_campaigns' },
|
|
|
|
utm_content: { label: 'UTM Content', shortLabel: 'UTM Conten', endpoint: 'utm_contents' },
|
|
|
|
utm_term: { label: 'UTM Term', shortLabel: 'UTM Term', endpoint: 'utm_terms' },
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class UTMSources extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2023-01-02 18:42:57 +03:00
|
|
|
this.onVisible = this.onVisible.bind(this)
|
|
|
|
this.fetchReferrers = this.fetchReferrers.bind(this)
|
2022-07-14 12:27:40 +03:00
|
|
|
this.state = { loading: true }
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
2023-01-02 18:42:57 +03:00
|
|
|
onVisible() {
|
2020-09-28 11:29:24 +03:00
|
|
|
this.fetchReferrers()
|
2023-01-02 18:42:57 +03:00
|
|
|
if (this.props.query.period === 'realtime') {
|
|
|
|
document.addEventListener('tick', this.fetchReferrers)
|
|
|
|
}
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.query !== prevProps.query || this.props.tab !== prevProps.tab) {
|
2022-07-14 12:27:40 +03:00
|
|
|
this.setState({ loading: true, referrers: null })
|
2020-09-28 11:29:24 +03:00
|
|
|
this.fetchReferrers()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-02 18:42:57 +03:00
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('tick', this.fetchReferrers)
|
|
|
|
}
|
|
|
|
|
2020-09-28 11:29:24 +03:00
|
|
|
showNoRef() {
|
|
|
|
return this.props.query.period === 'realtime'
|
|
|
|
}
|
|
|
|
|
2021-09-20 17:17:11 +03:00
|
|
|
showConversionRate() {
|
|
|
|
return !!this.props.query.filters.goal
|
|
|
|
}
|
|
|
|
|
2020-09-28 11:29:24 +03:00
|
|
|
fetchReferrers() {
|
|
|
|
const endpoint = UTM_TAGS[this.props.tab].endpoint
|
2022-12-19 15:40:21 +03:00
|
|
|
api.get(`/api/stats/${encodeURIComponent(this.props.site.domain)}/${endpoint}`, this.props.query)
|
2022-07-14 12:27:40 +03:00
|
|
|
.then((res) => this.setState({ loading: false, referrers: res }))
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
renderReferrer(referrer) {
|
2022-07-14 12:27:40 +03:00
|
|
|
const maxWidthDeduction = this.showConversionRate() ? "10rem" : "5rem"
|
2020-09-28 11:29:24 +03:00
|
|
|
|
|
|
|
return (
|
2021-07-08 09:42:30 +03:00
|
|
|
<div
|
|
|
|
className="flex items-center justify-between my-1 text-sm"
|
|
|
|
key={referrer.name}
|
|
|
|
>
|
|
|
|
<Bar
|
2021-11-04 15:20:39 +03:00
|
|
|
count={referrer.visitors}
|
2021-07-08 09:42:30 +03:00
|
|
|
all={this.state.referrers}
|
|
|
|
bg="bg-blue-50 dark:bg-gray-500 dark:bg-opacity-15"
|
2021-09-20 17:17:11 +03:00
|
|
|
maxWidthDeduction={maxWidthDeduction}
|
2021-07-08 09:42:30 +03:00
|
|
|
>
|
2021-08-04 16:11:40 +03:00
|
|
|
|
2021-07-29 09:54:52 +03:00
|
|
|
<span className="flex px-2 py-1.5 dark:text-gray-300 relative z-9 break-all">
|
2021-08-18 15:21:47 +03:00
|
|
|
<Link
|
2021-07-29 09:54:52 +03:00
|
|
|
className="md:truncate block hover:underline"
|
2021-09-21 11:44:51 +03:00
|
|
|
to={url.setQuery(this.props.tab, referrer.name)}
|
2021-07-08 09:42:30 +03:00
|
|
|
>
|
2022-07-14 12:27:40 +03:00
|
|
|
{referrer.name}
|
2020-09-28 11:29:24 +03:00
|
|
|
</Link>
|
|
|
|
</span>
|
2021-07-08 09:42:30 +03:00
|
|
|
</Bar>
|
2022-07-14 12:27:40 +03:00
|
|
|
<span className="font-medium dark:text-gray-200 w-20 text-right" tooltip={referrer.visitors}>{numberFormatter(referrer.visitors)}</span>
|
2021-09-20 17:17:11 +03:00
|
|
|
{this.showConversionRate() && <span className="font-medium dark:text-gray-200 w-20 text-right">{referrer.conversion_rate}%</span>}
|
2020-09-28 11:29:24 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
label() {
|
2021-09-29 14:28:29 +03:00
|
|
|
if (this.props.query.period === 'realtime') {
|
|
|
|
return 'Current visitors'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.showConversionRate()) {
|
|
|
|
return 'Conversions'
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'Visitors'
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
renderList() {
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
if (this.state.referrers && this.state.referrers.length > 0) {
|
2020-09-28 11:29:24 +03:00
|
|
|
return (
|
2021-07-08 09:42:30 +03:00
|
|
|
<div className="flex flex-col flex-grow">
|
2021-03-25 12:55:15 +03:00
|
|
|
<div className="flex items-center justify-between mt-3 mb-2 text-xs font-bold tracking-wide text-gray-500 dark:text-gray-400">
|
2020-09-28 11:29:24 +03:00
|
|
|
<span>{UTM_TAGS[this.props.tab].label}</span>
|
2021-09-20 17:17:11 +03:00
|
|
|
<div className="text-right">
|
|
|
|
<span className="inline-block w-20">{this.label()}</span>
|
|
|
|
{this.showConversionRate() && <span className="inline-block w-20">CR</span>}
|
|
|
|
</div>
|
2020-09-28 11:29:24 +03:00
|
|
|
</div>
|
|
|
|
|
2021-06-15 10:34:43 +03:00
|
|
|
<FlipMove className="flex-grow">
|
2020-09-28 11:29:24 +03:00
|
|
|
{this.state.referrers.map(this.renderReferrer.bind(this))}
|
|
|
|
</FlipMove>
|
2021-03-03 11:14:12 +03:00
|
|
|
<MoreLink site={this.props.site} list={this.state.referrers} endpoint={UTM_TAGS[this.props.tab].endpoint} />
|
2021-06-15 10:34:43 +03:00
|
|
|
</div>
|
2020-09-28 11:29:24 +03:00
|
|
|
)
|
|
|
|
} else {
|
2021-03-25 12:55:15 +03:00
|
|
|
return <div className="font-medium text-center text-gray-500 mt-44 dark:text-gray-400">No data yet</div>
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderContent() {
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
return (
|
2023-01-02 18:42:57 +03:00
|
|
|
<LazyLoader onVisible={this.onVisible}>
|
2021-03-25 12:55:15 +03:00
|
|
|
<div className="flex justify-between w-full">
|
2021-08-18 15:21:47 +03:00
|
|
|
<h3 className="font-bold dark:text-gray-100">Top Sources</h3>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.props.renderTabs()}
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
</div>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.state.loading && <div className="mx-auto loading mt-44"><div></div></div>}
|
2021-06-15 10:34:43 +03:00
|
|
|
<FadeIn show={!this.state.loading} className="flex flex-col flex-grow">
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.renderList()}
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
</FadeIn>
|
2023-01-02 18:42:57 +03:00
|
|
|
</LazyLoader>
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
)
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
2020-02-10 16:17:00 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2021-06-15 10:34:43 +03:00
|
|
|
<div
|
|
|
|
className="relative p-4 bg-white rounded shadow-xl stats-item flex flex-col dark:bg-gray-825 mt-6 w-full"
|
|
|
|
>
|
2022-07-14 12:27:40 +03:00
|
|
|
{this.renderContent()}
|
2020-02-10 16:17:00 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
2020-09-28 11:29:24 +03:00
|
|
|
|
2021-12-16 12:02:09 +03:00
|
|
|
import { Fragment } from 'react'
|
|
|
|
import { Menu, Transition } from '@headlessui/react'
|
2022-10-04 13:20:51 +03:00
|
|
|
import { ChevronDownIcon } from '@heroicons/react/20/solid'
|
2021-12-16 12:02:09 +03:00
|
|
|
import classNames from 'classnames'
|
|
|
|
|
2020-09-28 11:29:24 +03:00
|
|
|
export default class SourceList extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.tabKey = 'sourceTab__' + props.site.domain
|
2021-04-28 11:31:10 +03:00
|
|
|
const storedTab = storage.getItem(this.tabKey)
|
2020-09-28 11:29:24 +03:00
|
|
|
this.state = {
|
|
|
|
tab: storedTab || 'all'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setTab(tab) {
|
|
|
|
return () => {
|
2021-04-28 11:31:10 +03:00
|
|
|
storage.setItem(this.tabKey, tab)
|
2022-07-14 12:27:40 +03:00
|
|
|
this.setState({ tab })
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderTabs() {
|
2021-12-16 12:02:09 +03:00
|
|
|
const activeClass = 'inline-block h-5 text-indigo-700 dark:text-indigo-500 font-bold active-prop-heading truncate text-left'
|
|
|
|
const defaultClass = 'hover:text-indigo-600 cursor-pointer truncate text-left'
|
2023-01-02 18:42:57 +03:00
|
|
|
const dropdownOptions = Object.keys(UTM_TAGS)
|
2021-12-16 16:22:08 +03:00
|
|
|
let buttonText = UTM_TAGS[this.state.tab] ? UTM_TAGS[this.state.tab].label : 'Campaigns'
|
2021-12-16 12:02:09 +03:00
|
|
|
|
2020-09-28 11:29:24 +03:00
|
|
|
return (
|
2021-12-16 12:02:09 +03:00
|
|
|
<div className="flex text-xs font-medium text-gray-500 dark:text-gray-400 space-x-2">
|
|
|
|
<div className={this.state.tab === 'all' ? activeClass : defaultClass} onClick={this.setTab('all')}>All</div>
|
|
|
|
|
|
|
|
<Menu as="div" className="relative inline-block text-left">
|
|
|
|
<div>
|
|
|
|
<Menu.Button className="inline-flex justify-between focus:outline-none">
|
2022-11-25 15:12:52 +03:00
|
|
|
<span className={this.state.tab.startsWith('utm_') ? activeClass : defaultClass}>{buttonText}</span>
|
|
|
|
<ChevronDownIcon className="-mr-1 ml-1 h-4 w-4" aria-hidden="true" />
|
2021-12-16 12:02:09 +03:00
|
|
|
</Menu.Button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Transition
|
|
|
|
as={Fragment}
|
|
|
|
enter="transition ease-out duration-100"
|
|
|
|
enterFrom="transform opacity-0 scale-95"
|
|
|
|
enterTo="transform opacity-100 scale-100"
|
|
|
|
leave="transition ease-in duration-75"
|
|
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
|
|
leaveTo="transform opacity-0 scale-95"
|
|
|
|
>
|
2022-09-09 10:25:21 +03:00
|
|
|
<Menu.Items className="text-left origin-top-right absolute right-0 mt-2 w-56 rounded-md shadow-lg bg-white dark:bg-gray-800 ring-1 ring-black ring-opacity-5 focus:outline-none z-10">
|
2021-12-16 12:02:09 +03:00
|
|
|
<div className="py-1">
|
2022-07-14 12:27:40 +03:00
|
|
|
{dropdownOptions.map((option) => {
|
2021-12-16 12:02:09 +03:00
|
|
|
return (
|
|
|
|
<Menu.Item key={option}>
|
|
|
|
{({ active }) => (
|
|
|
|
<span
|
|
|
|
onClick={this.setTab(option)}
|
|
|
|
className={classNames(
|
2021-12-20 12:26:26 +03:00
|
|
|
active ? 'bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-200 cursor-pointer' : 'text-gray-700 dark:text-gray-200',
|
2021-12-16 12:02:09 +03:00
|
|
|
'block px-4 py-2 text-sm',
|
|
|
|
this.state.tab === option ? 'font-bold' : ''
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{UTM_TAGS[option].label}
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</Menu.Item>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</Menu.Items>
|
|
|
|
</Transition>
|
|
|
|
</Menu>
|
|
|
|
</div>
|
2020-09-28 11:29:24 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.tab === 'all') {
|
|
|
|
return <AllSources tab={this.state.tab} setTab={this.setTab.bind(this)} renderTabs={this.renderTabs.bind(this)} {...this.props} />
|
2023-01-02 18:42:57 +03:00
|
|
|
} else if (Object.keys(UTM_TAGS).includes(this.state.tab)) {
|
2021-12-16 12:02:09 +03:00
|
|
|
return <UTMSources tab={this.state.tab} setTab={this.setTab.bind(this)} renderTabs={this.renderTabs.bind(this)} {...this.props} />
|
2020-09-28 11:29:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|