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.
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
import {formatISO} from './util/date'
|
|
|
|
let abortController = new AbortController()
|
|
let SHARED_LINK_AUTH = null
|
|
|
|
class ApiError extends Error {
|
|
constructor(message, payload) {
|
|
super(message)
|
|
this.name = "ApiError"
|
|
this.payload = payload
|
|
}
|
|
}
|
|
|
|
function serialize(obj) {
|
|
var str = [];
|
|
for (var p in obj)
|
|
/* eslint-disable-next-line no-prototype-builtins */
|
|
if (obj.hasOwnProperty(p)) {
|
|
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
|
|
}
|
|
return str.join("&");
|
|
}
|
|
|
|
export function setSharedLinkAuth(auth) {
|
|
SHARED_LINK_AUTH = auth
|
|
}
|
|
|
|
export function cancelAll() {
|
|
abortController.abort()
|
|
abortController = new AbortController()
|
|
}
|
|
|
|
function serializeFilters(filters) {
|
|
const cleaned = {}
|
|
Object.entries(filters).forEach(([key, val]) => val ? cleaned[key] = val : null);
|
|
return JSON.stringify(cleaned)
|
|
}
|
|
|
|
export function serializeQuery(query, extraQuery=[]) {
|
|
const queryObj = {}
|
|
if (query.period) { queryObj.period = query.period }
|
|
if (query.date) { queryObj.date = formatISO(query.date) }
|
|
if (query.from) { queryObj.from = formatISO(query.from) }
|
|
if (query.to) { queryObj.to = formatISO(query.to) }
|
|
if (query.filters) { queryObj.filters = serializeFilters(query.filters) }
|
|
if (query.with_imported) { queryObj.with_imported = query.with_imported }
|
|
if (SHARED_LINK_AUTH) { queryObj.auth = SHARED_LINK_AUTH }
|
|
if (query.comparison) { queryObj.comparison = true }
|
|
Object.assign(queryObj, ...extraQuery)
|
|
|
|
return '?' + serialize(queryObj)
|
|
}
|
|
|
|
export function get(url, query={}, ...extraQuery) {
|
|
const headers = SHARED_LINK_AUTH ? {'X-Shared-Link-Auth': SHARED_LINK_AUTH} : {}
|
|
url = url + serializeQuery(query, extraQuery)
|
|
return fetch(url, {signal: abortController.signal, headers: headers})
|
|
.then( response => {
|
|
if (!response.ok) {
|
|
return response.json().then((msg) => {
|
|
throw new ApiError(msg.error, msg)
|
|
})
|
|
}
|
|
return response.json()
|
|
})
|
|
}
|