mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
Changed fetch response.
This commit is contained in:
parent
7a0575e33a
commit
26463973cb
8 changed files with 36 additions and 13 deletions
|
|
@ -2,16 +2,16 @@ import { useCallback } from 'react';
|
||||||
import * as reactQuery from '@tanstack/react-query';
|
import * as reactQuery from '@tanstack/react-query';
|
||||||
import { getClientAuthToken } from '@/lib/client';
|
import { getClientAuthToken } from '@/lib/client';
|
||||||
import { SHARE_TOKEN_HEADER } from '@/lib/constants';
|
import { SHARE_TOKEN_HEADER } from '@/lib/constants';
|
||||||
import { httpGet, httpPost, httpPut, httpDelete } from '@/lib/fetch';
|
import { httpGet, httpPost, httpPut, httpDelete, FetchResponse } from '@/lib/fetch';
|
||||||
import useStore from '@/store/app';
|
import useStore from '@/store/app';
|
||||||
|
|
||||||
const selector = (state: { shareToken: { token?: string } }) => state.shareToken;
|
const selector = (state: { shareToken: { token?: string } }) => state.shareToken;
|
||||||
|
|
||||||
async function handleResponse(data: any): Promise<any> {
|
async function handleResponse(res: FetchResponse): Promise<any> {
|
||||||
if (data.error) {
|
if (!res.ok) {
|
||||||
return Promise.reject(new Error(data.error));
|
return Promise.reject(new Error(res.error));
|
||||||
}
|
}
|
||||||
return Promise.resolve(data);
|
return Promise.resolve(res.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleError(err: Error | string) {
|
function handleError(err: Error | string) {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ export function useCountryNames(locale: string) {
|
||||||
const [list, setList] = useState(countryNames[locale] || enUS);
|
const [list, setList] = useState(countryNames[locale] || enUS);
|
||||||
|
|
||||||
async function loadData(locale: string) {
|
async function loadData(locale: string) {
|
||||||
const data = await httpGet(`${process.env.basePath || ''}/intl/country/${locale}.json`);
|
const { data } = await httpGet(`${process.env.basePath || ''}/intl/country/${locale}.json`);
|
||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
countryNames[locale] = data;
|
countryNames[locale] = data;
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ export function useLanguageNames(locale) {
|
||||||
const [list, setList] = useState(languageNames[locale] || enUS);
|
const [list, setList] = useState(languageNames[locale] || enUS);
|
||||||
|
|
||||||
async function loadData(locale) {
|
async function loadData(locale) {
|
||||||
const data = await httpGet(`${process.env.basePath || ''}/intl/language/${locale}.json`);
|
const { data } = await httpGet(`${process.env.basePath || ''}/intl/language/${locale}.json`);
|
||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
languageNames[locale] = data;
|
languageNames[locale] = data;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,9 @@ export function useLocale() {
|
||||||
const dateLocale = getDateLocale(locale);
|
const dateLocale = getDateLocale(locale);
|
||||||
|
|
||||||
async function loadMessages(locale: string) {
|
async function loadMessages(locale: string) {
|
||||||
messages[locale] = await httpGet(`${process.env.basePath || ''}/intl/messages/${locale}.json`);
|
const { data } = await httpGet(`${process.env.basePath || ''}/intl/messages/${locale}.json`);
|
||||||
|
|
||||||
|
messages[locale] = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function saveLocale(value: string) {
|
async function saveLocale(value: string) {
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ export function MetricsTable({
|
||||||
return filter(arr);
|
return filter(arr);
|
||||||
}, items);
|
}, items);
|
||||||
} else {
|
} else {
|
||||||
items = dataFilter(data);
|
items = dataFilter(items);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import { ClickHouseClient, createClient } from '@clickhouse/client';
|
||||||
import { formatInTimeZone } from 'date-fns-tz';
|
import { formatInTimeZone } from 'date-fns-tz';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { CLICKHOUSE } from '@/lib/db';
|
import { CLICKHOUSE } from '@/lib/db';
|
||||||
import { getWebsite } from '@/queries/index';
|
import { getWebsite } from '@/queries';
|
||||||
import { DEFAULT_PAGE_SIZE, OPERATORS } from './constants';
|
import { DEFAULT_PAGE_SIZE, OPERATORS } from './constants';
|
||||||
import { maxDate } from './date';
|
import { maxDate } from './date';
|
||||||
import { filtersToArray } from './params';
|
import { filtersToArray } from './params';
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,18 @@
|
||||||
import { buildUrl } from '@/lib/url';
|
import { buildUrl } from '@/lib/url';
|
||||||
|
|
||||||
export async function request(method: string, url: string, body?: string, headers: object = {}) {
|
export interface FetchResponse {
|
||||||
|
ok: boolean;
|
||||||
|
status: number;
|
||||||
|
data?: any;
|
||||||
|
error?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function request(
|
||||||
|
method: string,
|
||||||
|
url: string,
|
||||||
|
body?: string,
|
||||||
|
headers: object = {},
|
||||||
|
): Promise<FetchResponse> {
|
||||||
return fetch(url, {
|
return fetch(url, {
|
||||||
method,
|
method,
|
||||||
cache: 'no-cache',
|
cache: 'no-cache',
|
||||||
|
|
@ -10,7 +22,16 @@ export async function request(method: string, url: string, body?: string, header
|
||||||
...headers,
|
...headers,
|
||||||
},
|
},
|
||||||
body,
|
body,
|
||||||
}).then(res => res.json());
|
}).then(async res => {
|
||||||
|
const data = await res.json();
|
||||||
|
|
||||||
|
return {
|
||||||
|
ok: res.ok,
|
||||||
|
status: res.status,
|
||||||
|
data: res.ok ? data : undefined,
|
||||||
|
error: res.ok ? undefined : data,
|
||||||
|
};
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function httpGet(url: string, params: object = {}, headers: object = {}) {
|
export async function httpGet(url: string, params: object = {}, headers: object = {}) {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { getPageviewStats, getRealtimeActivity, getSessionStats } from '@/queries/index';
|
import { getPageviewStats, getRealtimeActivity, getSessionStats } from '@/queries';
|
||||||
|
|
||||||
function increment(data: object, key: string) {
|
function increment(data: object, key: string) {
|
||||||
if (key) {
|
if (key) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue