frigate/web/src/api/index.jsx

112 lines
3.0 KiB
React
Raw Normal View History

2021-02-11 18:13:21 +03:00
import { baseUrl } from './baseUrl';
2021-01-26 18:04:03 +03:00
import { h, createContext } from 'preact';
import produce from 'immer';
import { useContext, useEffect, useReducer } from 'preact/hooks';
2021-01-26 18:04:03 +03:00
export const FetchStatus = {
NONE: 'none',
LOADING: 'loading',
LOADED: 'loaded',
ERROR: 'error',
};
const initialState = Object.freeze({
2021-02-11 18:13:21 +03:00
host: baseUrl,
2021-01-26 18:04:03 +03:00
queries: {},
});
2021-02-11 18:13:21 +03:00
const Api = createContext(initialState);
2021-01-26 18:04:03 +03:00
function reducer(state, { type, payload, meta }) {
switch (type) {
2021-02-11 18:16:35 +03:00
case 'REQUEST': {
const { url, fetchId } = payload;
const data = state.queries[url]?.data || null;
return produce(state, (draftState) => {
draftState.queries[url] = { status: FetchStatus.LOADING, data, fetchId };
});
}
2021-01-26 18:04:03 +03:00
2021-02-11 18:16:35 +03:00
case 'RESPONSE': {
const { url, ok, data, fetchId } = payload;
return produce(state, (draftState) => {
draftState.queries[url] = { status: ok ? FetchStatus.LOADED : FetchStatus.ERROR, data, fetchId };
});
}
2021-01-26 18:04:03 +03:00
2021-02-11 18:16:35 +03:00
default:
return state;
2021-01-26 18:04:03 +03:00
}
}
export const ApiProvider = ({ children }) => {
const [state, dispatch] = useReducer(reducer, initialState);
return <Api.Provider value={{ state, dispatch }}>{children}</Api.Provider>;
};
function shouldFetch(state, url, fetchId = null) {
if ((fetchId && url in state.queries && state.queries[url].fetchId !== fetchId) || !(url in state.queries)) {
2021-01-26 18:04:03 +03:00
return true;
}
const { status } = state.queries[url];
return status !== FetchStatus.LOADING && status !== FetchStatus.LOADED;
}
export function useFetch(url, fetchId) {
2021-01-26 18:04:03 +03:00
const { state, dispatch } = useContext(Api);
useEffect(() => {
if (!shouldFetch(state, url, fetchId)) {
2021-01-26 18:04:03 +03:00
return;
}
async function fetchData() {
await dispatch({ type: 'REQUEST', payload: { url, fetchId } });
2021-01-26 18:04:03 +03:00
const response = await fetch(`${state.host}${url}`);
2021-02-11 18:13:21 +03:00
try {
const data = await response.json();
await dispatch({ type: 'RESPONSE', payload: { url, ok: response.ok, data, fetchId } });
} catch (e) {
await dispatch({ type: 'RESPONSE', payload: { url, ok: false, data: null, fetchId } });
}
2021-01-26 18:04:03 +03:00
}
fetchData();
}, [url, fetchId, state, dispatch]);
2021-01-26 18:04:03 +03:00
if (!(url in state.queries)) {
return { data: null, status: FetchStatus.NONE };
}
const data = state.queries[url].data || null;
const status = state.queries[url].status;
return { data, status };
}
export function useApiHost() {
const { state } = useContext(Api);
2021-01-26 18:04:03 +03:00
return state.host;
}
export function useEvents(searchParams, fetchId) {
2021-01-26 18:04:03 +03:00
const url = `/api/events${searchParams ? `?${searchParams.toString()}` : ''}`;
return useFetch(url, fetchId);
2021-01-26 18:04:03 +03:00
}
export function useEvent(eventId, fetchId) {
2021-01-26 18:04:03 +03:00
const url = `/api/events/${eventId}`;
return useFetch(url, fetchId);
2021-01-26 18:04:03 +03:00
}
export function useConfig(searchParams, fetchId) {
2021-01-26 18:04:03 +03:00
const url = `/api/config${searchParams ? `?${searchParams.toString()}` : ''}`;
return useFetch(url, fetchId);
2021-01-26 18:04:03 +03:00
}
export function useStats(searchParams, fetchId) {
2021-01-26 18:04:03 +03:00
const url = `/api/stats${searchParams ? `?${searchParams.toString()}` : ''}`;
return useFetch(url, fetchId);
2021-01-26 18:04:03 +03:00
}