mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 02:55:02 +03:00
cfe81d6d3f
* Add tailwind and esbuild
* Remove unused images
* Move unprocessed assets to priv directory
* Fix applyTheme script
* Remove autoprefixer
* Update bundlemon
* Remove babel config
* Revert "Remove autoprefixer"
This reverts commit fc60c31c73
.
* Make dashboard react file work
* Fix app.css imports
* Remove autoprefixer
* Add back in robots.txt
* Go back to css/ and js/ folders as opposed to assets/
* Bundle embed.host.js and embed.content.js
* Add components folder to live reload paths
* Remove bundlemon
* Use mix assets task in Dockerfil
* Add assets setup to CONTRIBUTING.md
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import 'url-search-params-polyfill';
|
|
|
|
import Router from './dashboard/router'
|
|
import ErrorBoundary from './dashboard/error-boundary'
|
|
import * as api from './dashboard/api'
|
|
import * as timer from './dashboard/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',
|
|
conversionsEnabled: container.dataset.conversionsEnabled === 'true',
|
|
funnelsEnabled: container.dataset.funnelsEnabled === 'true',
|
|
propsEnabled: container.dataset.propsEnabled === 'true',
|
|
hasProps: container.dataset.hasProps === 'true',
|
|
funnels: JSON.parse(container.dataset.funnels),
|
|
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);
|
|
}
|