mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-30 19:54:44 -04:00
* feat(frontend): ✨ add user registration page (WIP) * feat(backend): ✨ add user registration (WIP) * test(backend): ✅ add validator testing for registration schema * feat(backend): ✨ continued work on user sign-up * feat(backend): ✨ add signup flow and user/group settings * test(backend): ✅ user-creation tests and small refactor of existing tests * fix(backend): ✅ fix failing group tests * style: 🎨 fix lint issues Co-authored-by: hay-kot <hay-kot@pm.me>
107 lines
2.4 KiB
TypeScript
107 lines
2.4 KiB
TypeScript
import { useAsync, ref } from "@nuxtjs/composition-api";
|
|
import { useAsyncKey } from "./use-utils";
|
|
import { useApiSingleton } from "~/composables/use-api";
|
|
import { CreateGroup } from "~/api/class-interfaces/groups";
|
|
|
|
export const useGroupSelf = function () {
|
|
const api = useApiSingleton();
|
|
|
|
const actions = {
|
|
get() {
|
|
const group = useAsync(async () => {
|
|
const { data } = await api.groups.getCurrentUserGroup();
|
|
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
return group;
|
|
},
|
|
async updatePreferences() {
|
|
if (!group.value) {
|
|
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 useGroupCategories = function () {
|
|
const api = useApiSingleton();
|
|
|
|
const actions = {
|
|
getAll() {
|
|
const units = useAsync(async () => {
|
|
const { data } = await api.groups.getCategories();
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
return units;
|
|
},
|
|
async updateAll() {
|
|
if (!categories.value) {
|
|
return;
|
|
}
|
|
const { data } = await api.groups.setCategories(categories.value);
|
|
categories.value = data;
|
|
},
|
|
};
|
|
|
|
const categories = actions.getAll();
|
|
|
|
return { actions, categories };
|
|
};
|
|
|
|
export const useGroups = function () {
|
|
const api = useApiSingleton();
|
|
const loading = ref(false);
|
|
|
|
function getAllGroups() {
|
|
loading.value = true;
|
|
const asyncKey = String(Date.now());
|
|
const groups = useAsync(async () => {
|
|
const { data } = await api.groups.getAll();
|
|
return data;
|
|
}, asyncKey);
|
|
|
|
loading.value = false;
|
|
return groups;
|
|
}
|
|
|
|
async function refreshAllGroups() {
|
|
loading.value = true;
|
|
const { data } = await api.groups.getAll();
|
|
groups.value = data;
|
|
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: CreateGroup) {
|
|
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 };
|
|
};
|