mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 08:31:29 +03:00
5159e683cc
This commit adds support for comparing the actual showed period on the main graph with the previous one. This is a first pass and it's hidden under a feature flag because it's not feature complete yet as we want to support other comparison modes.
187 lines
5.3 KiB
JavaScript
187 lines
5.3 KiB
JavaScript
import React from 'react'
|
|
import { Link, withRouter } from 'react-router-dom'
|
|
import {formatDay, formatMonthYYYY, nowForSite, parseUTCDate} from './util/date'
|
|
import * as storage from './util/storage'
|
|
import { COMPARISON_DISABLED_PERIODS } from './comparison-input'
|
|
|
|
const PERIODS = ['realtime', 'day', 'month', '7d', '30d', '6mo', '12mo', 'year', 'all', 'custom']
|
|
|
|
export function parseQuery(querystring, site) {
|
|
const q = new URLSearchParams(querystring)
|
|
let period = q.get('period')
|
|
const periodKey = `period__${site.domain}`
|
|
|
|
if (PERIODS.includes(period)) {
|
|
if (period !== 'custom' && period !== 'realtime') storage.setItem(periodKey, period)
|
|
} else if (storage.getItem(periodKey)) {
|
|
period = storage.getItem(periodKey)
|
|
} else {
|
|
period = '30d'
|
|
}
|
|
|
|
let comparison = !!q.get('comparison')
|
|
if (COMPARISON_DISABLED_PERIODS.includes(period)) comparison = null
|
|
|
|
return {
|
|
period,
|
|
date: q.get('date') ? parseUTCDate(q.get('date')) : nowForSite(site),
|
|
from: q.get('from') ? parseUTCDate(q.get('from')) : undefined,
|
|
to: q.get('to') ? parseUTCDate(q.get('to')) : undefined,
|
|
with_imported: q.get('with_imported') ? q.get('with_imported') === 'true' : true,
|
|
comparison: comparison,
|
|
filters: {
|
|
'goal': q.get('goal'),
|
|
'props': JSON.parse(q.get('props')),
|
|
'source': q.get('source'),
|
|
'utm_medium': q.get('utm_medium'),
|
|
'utm_source': q.get('utm_source'),
|
|
'utm_campaign': q.get('utm_campaign'),
|
|
'utm_content': q.get('utm_content'),
|
|
'utm_term': q.get('utm_term'),
|
|
'referrer': q.get('referrer'),
|
|
'screen': q.get('screen'),
|
|
'browser': q.get('browser'),
|
|
'browser_version': q.get('browser_version'),
|
|
'os': q.get('os'),
|
|
'os_version': q.get('os_version'),
|
|
'country': q.get('country'),
|
|
'region': q.get('region'),
|
|
'city': q.get('city'),
|
|
'page': q.get('page'),
|
|
'entry_page': q.get('entry_page'),
|
|
'exit_page': q.get('exit_page')
|
|
}
|
|
}
|
|
}
|
|
|
|
export function appliedFilters(query) {
|
|
return Object.keys(query.filters)
|
|
.map((key) => [key, query.filters[key]])
|
|
.filter(([_key, value]) => !!value);
|
|
}
|
|
|
|
function generateQueryString(data) {
|
|
const query = new URLSearchParams(window.location.search)
|
|
Object.keys(data).forEach(key => {
|
|
if (!data[key]) {
|
|
query.delete(key)
|
|
return
|
|
}
|
|
|
|
query.set(key, data[key])
|
|
})
|
|
return query.toString()
|
|
}
|
|
|
|
export function navigateToQuery(history, queryFrom, newData) {
|
|
// if we update any data that we store in localstorage, make sure going back in history will
|
|
// revert them
|
|
if (newData.period && newData.period !== queryFrom.period) {
|
|
const replaceQuery = new URLSearchParams(window.location.search)
|
|
replaceQuery.set('period', queryFrom.period)
|
|
history.replace({ search: replaceQuery.toString() })
|
|
}
|
|
|
|
// then push the new query to the history
|
|
history.push({ search: generateQueryString(newData) })
|
|
}
|
|
|
|
class QueryLink extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.onClick = this.onClick.bind(this)
|
|
}
|
|
|
|
onClick(e) {
|
|
e.preventDefault()
|
|
navigateToQuery(this.props.history, this.props.query, this.props.to)
|
|
if (this.props.onClick) this.props.onClick(e)
|
|
}
|
|
|
|
render() {
|
|
const { to, ...props } = this.props
|
|
return (
|
|
<Link
|
|
{...props}
|
|
to={{ pathname: window.location.pathname, search: generateQueryString(to) }}
|
|
onClick={this.onClick}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
const QueryLinkWithRouter = withRouter(QueryLink)
|
|
export { QueryLinkWithRouter as QueryLink };
|
|
|
|
function QueryButton({history, query, to, disabled, className, children, onClick}) {
|
|
return (
|
|
<button
|
|
className={className}
|
|
onClick={(event) => {
|
|
event.preventDefault()
|
|
navigateToQuery(history, query, to)
|
|
if (onClick) onClick(event)
|
|
history.push({ pathname: window.location.pathname, search: generateQueryString(to) })
|
|
}}
|
|
type="button"
|
|
disabled={disabled}
|
|
>
|
|
{children}
|
|
</button>
|
|
)
|
|
}
|
|
|
|
const QueryButtonWithRouter = withRouter(QueryButton)
|
|
export { QueryButtonWithRouter as QueryButton };
|
|
|
|
export function toHuman(query) {
|
|
if (query.period === 'day') {
|
|
return `on ${formatDay(query.date)}`
|
|
} if (query.period === 'month') {
|
|
return `in ${formatMonthYYYY(query.date)}`
|
|
} if (query.period === '7d') {
|
|
return 'in the last 7 days'
|
|
} if (query.period === '30d') {
|
|
return 'in the last 30 days'
|
|
} if (query.period === '6mo') {
|
|
return 'in the last 6 months'
|
|
} if (query.period === '12mo') {
|
|
return 'in the last 12 months'
|
|
}
|
|
return ''
|
|
}
|
|
|
|
export function eventName(query) {
|
|
if (query.filters.goal) {
|
|
if (query.filters.goal.startsWith('Visit ')) {
|
|
return 'pageviews'
|
|
}
|
|
return 'events'
|
|
}
|
|
return 'pageviews'
|
|
}
|
|
|
|
export const formattedFilters = {
|
|
'goal': 'Goal',
|
|
'props': 'Property',
|
|
'prop_key': 'Property',
|
|
'prop_value': 'Value',
|
|
'source': 'Source',
|
|
'utm_medium': 'UTM Medium',
|
|
'utm_source': 'UTM Source',
|
|
'utm_campaign': 'UTM Campaign',
|
|
'utm_content': 'UTM Content',
|
|
'utm_term': 'UTM Term',
|
|
'referrer': 'Referrer URL',
|
|
'screen': 'Screen size',
|
|
'browser': 'Browser',
|
|
'browser_version': 'Browser Version',
|
|
'os': 'Operating System',
|
|
'os_version': 'Operating System Version',
|
|
'country': 'Country',
|
|
'region': 'Region',
|
|
'city': 'City',
|
|
'page': 'Page',
|
|
'entry_page': 'Entry Page',
|
|
'exit_page': 'Exit Page'
|
|
}
|