mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 08:31:29 +03:00
eb6baa92a3
This commit updates the imported 'G' icon, so that it appears only when querying or comparing a range with imported data. By hiding the icon in all other cases, users will see it only when they can actually click on it.
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import 'url-search-params-polyfill';
|
|
|
|
import Router from './router'
|
|
import ErrorBoundary from './error-boundary'
|
|
import * as api from './api'
|
|
import * as timer from './util/realtime-update-timer'
|
|
|
|
timer.start()
|
|
|
|
const container = document.getElementById('stats-react-container')
|
|
|
|
if (container) {
|
|
const site = {
|
|
domain: container.dataset.domain,
|
|
offset: container.dataset.offset,
|
|
hasGoals: container.dataset.hasGoals === 'true',
|
|
statsBegin: container.dataset.statsBegin,
|
|
nativeStatsBegin: container.dataset.nativeStatsBegin,
|
|
embedded: container.dataset.embedded,
|
|
background: container.dataset.background,
|
|
isDbip: container.dataset.isDbip === 'true',
|
|
flags: JSON.parse(container.dataset.flags),
|
|
validIntervalsByPeriod: JSON.parse(container.dataset.validIntervalsByPeriod)
|
|
}
|
|
|
|
const loggedIn = container.dataset.loggedIn === 'true'
|
|
const currentUserRole = container.dataset.currentUserRole
|
|
const sharedLinkAuth = container.dataset.sharedLinkAuth
|
|
if (sharedLinkAuth) {
|
|
api.setSharedLinkAuth(sharedLinkAuth)
|
|
}
|
|
|
|
const app = (
|
|
<ErrorBoundary>
|
|
<Router site={site} loggedIn={loggedIn} currentUserRole={currentUserRole} />
|
|
</ErrorBoundary>
|
|
)
|
|
|
|
ReactDOM.render(app, container);
|
|
}
|