databag/net/web/src/context/useGroupContext.hook.js
2022-06-08 01:25:41 -07:00

64 lines
1.4 KiB
JavaScript

import { useEffect, useState, useRef } from 'react';
import { getGroups } from 'api/getGroups';
export function useGroupContext() {
const [state, setState] = useState({
init: false,
groups: new Map(),
});
const access = useRef(null);
const revision = useRef(null);
const groups = useRef(new Map());
const next = useRef(null);
const updateState = (value) => {
setState((s) => ({ ...s, ...value }))
}
const updateGroups = async () => {
let delta = await getGroups(access.current, revision.current);
for (let group of delta) {
if (group.data) {
groups.current.set(group.id, group);
}
else {
groups.current.delete(group.id);
}
}
}
const setGroups = async (rev) => {
if (next.current == null) {
if (revision.current != rev) {
await updateGroups();
updateState({ init: true, groups: groups.current });
revision.current = rev;
}
if (next.current != null) {
let r = next.current;
next.current = null;
setGroups(r);
}
}
else {
next.current = rev;
}
}
const actions = {
setToken: (token) => {
access.current = token;
},
clearToken: () => {
access.current = null;
setState({ init: false });
},
setRevision: async (rev) => {
setGroups(rev);
},
}
return { state, actions }
}