fcc5d99d40
* add vitest * initialize lib w/ tests * move to dev dep * run tests in CI * update file names * move api folder to lib * move api and api types to same folder * update generator outpath * rm husky * i guess i _did_ need those types * reorg types * extract validators into testable components * (WIP) start composable testing * fix import type * fix linter complaint * simplify icon type def * fix linter errors (maybe?) * rename client file for sorting
91 lines
2 KiB
TypeScript
91 lines
2 KiB
TypeScript
import { useAsync, ref } from "@nuxtjs/composition-api";
|
|
import { useAsyncKey } from "./use-utils";
|
|
import { useUserApi } from "~/composables/api";
|
|
import { GroupBase } from "~/lib/api/types/user";
|
|
|
|
export const useGroupSelf = function () {
|
|
const api = useUserApi();
|
|
|
|
const actions = {
|
|
get() {
|
|
const group = useAsync(async () => {
|
|
const { data } = await api.groups.getCurrentUserGroup();
|
|
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
return group;
|
|
},
|
|
async updatePreferences() {
|
|
if (!group.value?.preferences) {
|
|
return;
|
|
}
|
|
|
|
const { data } = await api.groups.setPreferences(group.value.preferences);
|
|
|
|
if (data) {
|
|
group.value.preferences = data;
|
|
}
|
|
},
|
|
};
|
|
|
|
const group = actions.get();
|
|
|
|
return { actions, group };
|
|
};
|
|
|
|
export const useGroups = function () {
|
|
const api = useUserApi();
|
|
const loading = ref(false);
|
|
|
|
function getAllGroups() {
|
|
loading.value = true;
|
|
const asyncKey = String(Date.now());
|
|
const groups = useAsync(async () => {
|
|
const { data } = await api.groups.getAll();
|
|
|
|
if (data) {
|
|
return data.items;
|
|
} else {
|
|
return null;
|
|
}
|
|
}, asyncKey);
|
|
|
|
loading.value = false;
|
|
return groups;
|
|
}
|
|
|
|
async function refreshAllGroups() {
|
|
loading.value = true;
|
|
const { data } = await api.groups.getAll();
|
|
|
|
if (data) {
|
|
groups.value = data.items;
|
|
} else {
|
|
groups.value = null;
|
|
}
|
|
|
|
loading.value = false;
|
|
}
|
|
|
|
async function deleteGroup(id: string | number) {
|
|
loading.value = true;
|
|
const { data } = await api.groups.deleteOne(id);
|
|
loading.value = false;
|
|
refreshAllGroups();
|
|
return data;
|
|
}
|
|
|
|
async function createGroup(payload: GroupBase) {
|
|
loading.value = true;
|
|
const { data } = await api.groups.createOne(payload);
|
|
|
|
if (data && groups.value) {
|
|
groups.value.push(data);
|
|
}
|
|
}
|
|
|
|
const groups = getAllGroups();
|
|
|
|
return { groups, getAllGroups, refreshAllGroups, deleteGroup, createGroup };
|
|
};
|