| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | import { useAsync, ref } from "@nuxtjs/composition-api"; | 
					
						
							| 
									
										
										
										
											2021-09-01 21:39:40 -08:00
										 |  |  | import { useAsyncKey } from "./use-utils"; | 
					
						
							| 
									
										
										
										
											2021-11-06 11:28:47 -08:00
										 |  |  | import { useUserApi } from "~/composables/api"; | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  | import { GroupBase } from "~/types/api-types/user"; | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  | export const useGroupSelf = function () { | 
					
						
							| 
									
										
										
										
											2021-11-06 11:28:47 -08:00
										 |  |  |   const api = useUserApi(); | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   const actions = { | 
					
						
							|  |  |  |     get() { | 
					
						
							|  |  |  |       const group = useAsync(async () => { | 
					
						
							|  |  |  |         const { data } = await api.groups.getCurrentUserGroup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return data; | 
					
						
							|  |  |  |       }, useAsyncKey()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return group; | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     async updatePreferences() { | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |       if (!group.value?.preferences) { | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const { data } = await api.groups.setPreferences(group.value.preferences); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (data) { | 
					
						
							|  |  |  |         group.value.preferences = data; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const group = actions.get(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return { actions, group }; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | export const useGroups = function () { | 
					
						
							| 
									
										
										
										
											2021-11-06 11:28:47 -08:00
										 |  |  |   const api = useUserApi(); | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  |   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; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |   async function createGroup(payload: GroupBase) { | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  |     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 }; | 
					
						
							|  |  |  | }; |