mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
53 lines
1.0 KiB
JavaScript
53 lines
1.0 KiB
JavaScript
import create from 'zustand';
|
|
import produce from 'immer';
|
|
import semver from 'semver';
|
|
import { VERSION_CHECK } from 'lib/constants';
|
|
import { getItem } from 'lib/web';
|
|
|
|
const REPO_URL = 'https://api.umami.is/v1/updates';
|
|
|
|
const initialState = {
|
|
current: process.env.VERSION,
|
|
latest: null,
|
|
hasUpdate: false,
|
|
};
|
|
|
|
const store = create(() => ({ ...initialState }));
|
|
|
|
export async function checkVersion() {
|
|
const { current } = store.getState();
|
|
|
|
const data = await fetch(REPO_URL, {
|
|
method: 'get',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
},
|
|
}).then(res => {
|
|
if (res.ok) {
|
|
return res.json();
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
if (!data) {
|
|
return;
|
|
}
|
|
|
|
store.setState(
|
|
produce(state => {
|
|
const { latest } = data;
|
|
const lastCheck = getItem(VERSION_CHECK);
|
|
const hasUpdate = latest && semver.gt(latest, current) && lastCheck?.version !== latest;
|
|
|
|
state.current = current;
|
|
state.latest = latest;
|
|
state.hasUpdate = hasUpdate;
|
|
|
|
return state;
|
|
}),
|
|
);
|
|
}
|
|
|
|
export default store;
|