2022-06-22 16:35:50 +00:00
|
|
|
import { useEffect, useState } from 'react'
|
|
|
|
import { Group } from 'common/group'
|
|
|
|
import { User } from 'common/user'
|
|
|
|
import {
|
2022-06-22 22:19:17 +00:00
|
|
|
getGroupsWithContractId,
|
2022-06-22 16:35:50 +00:00
|
|
|
listenForGroup,
|
|
|
|
listenForGroups,
|
|
|
|
listenForMemberGroups,
|
|
|
|
} from 'web/lib/firebase/groups'
|
2022-07-14 15:09:12 +00:00
|
|
|
import { getUser, getUsers } from 'web/lib/firebase/users'
|
2022-07-13 21:11:22 +00:00
|
|
|
import { filterDefined } from 'common/util/array'
|
2022-06-22 16:35:50 +00:00
|
|
|
|
|
|
|
export const useGroup = (groupId: string | undefined) => {
|
|
|
|
const [group, setGroup] = useState<Group | null | undefined>()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (groupId) return listenForGroup(groupId, setGroup)
|
|
|
|
}, [groupId])
|
|
|
|
|
|
|
|
return group
|
|
|
|
}
|
|
|
|
|
|
|
|
export const useGroups = () => {
|
|
|
|
const [groups, setGroups] = useState<Group[] | undefined>()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
return listenForGroups(setGroups)
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
return groups
|
|
|
|
}
|
|
|
|
|
2022-07-13 21:11:22 +00:00
|
|
|
export const useMemberGroups = (
|
|
|
|
userId: string | null | undefined,
|
|
|
|
options?: { withChatEnabled: boolean }
|
|
|
|
) => {
|
2022-06-22 16:35:50 +00:00
|
|
|
const [memberGroups, setMemberGroups] = useState<Group[] | undefined>()
|
|
|
|
useEffect(() => {
|
2022-07-13 21:11:22 +00:00
|
|
|
if (userId)
|
|
|
|
return listenForMemberGroups(userId, (groups) => {
|
|
|
|
if (options?.withChatEnabled)
|
|
|
|
return setMemberGroups(
|
|
|
|
filterDefined(groups.filter((group) => group.chatDisabled !== true))
|
|
|
|
)
|
|
|
|
return setMemberGroups(groups)
|
|
|
|
})
|
|
|
|
}, [options?.withChatEnabled, userId])
|
2022-06-22 16:35:50 +00:00
|
|
|
return memberGroups
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: We cache member group ids in localstorage to speed up the initial load
|
|
|
|
export const useMemberGroupIds = (user: User | null | undefined) => {
|
|
|
|
const [memberGroupIds, setMemberGroupIds] = useState<string[] | undefined>(
|
|
|
|
undefined
|
|
|
|
)
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (user) {
|
|
|
|
const key = `member-groups-${user.id}`
|
|
|
|
const memberGroupJson = localStorage.getItem(key)
|
|
|
|
if (memberGroupJson) {
|
|
|
|
setMemberGroupIds(JSON.parse(memberGroupJson))
|
|
|
|
}
|
|
|
|
|
|
|
|
return listenForMemberGroups(user.id, (Groups) => {
|
|
|
|
const groupIds = Groups.map((group) => group.id)
|
|
|
|
setMemberGroupIds(groupIds)
|
|
|
|
localStorage.setItem(key, JSON.stringify(groupIds))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}, [user])
|
|
|
|
|
|
|
|
return memberGroupIds
|
|
|
|
}
|
|
|
|
|
2022-07-13 22:20:56 +00:00
|
|
|
export function useMembers(group: Group, max?: number) {
|
2022-06-22 16:35:50 +00:00
|
|
|
const [members, setMembers] = useState<User[]>([])
|
|
|
|
useEffect(() => {
|
2022-06-24 23:38:39 +00:00
|
|
|
const { memberIds } = group
|
|
|
|
if (memberIds.length > 0) {
|
2022-07-13 22:20:56 +00:00
|
|
|
listMembers(group, max).then((members) => setMembers(members))
|
2022-06-24 23:38:39 +00:00
|
|
|
}
|
2022-07-13 22:20:56 +00:00
|
|
|
}, [group, max])
|
2022-06-22 16:35:50 +00:00
|
|
|
return members
|
|
|
|
}
|
2022-06-22 22:19:17 +00:00
|
|
|
|
2022-07-13 22:20:56 +00:00
|
|
|
export async function listMembers(group: Group, max?: number) {
|
2022-07-14 15:09:12 +00:00
|
|
|
const { memberIds } = group
|
|
|
|
const numToRetrieve = max ?? memberIds.length
|
|
|
|
if (memberIds.length === 0) return []
|
|
|
|
if (numToRetrieve)
|
|
|
|
return (await getUsers()).filter((user) =>
|
|
|
|
group.memberIds.includes(user.id)
|
|
|
|
)
|
|
|
|
return await Promise.all(group.memberIds.slice(0, numToRetrieve).map(getUser))
|
2022-06-24 23:38:39 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 22:19:17 +00:00
|
|
|
export const useGroupsWithContract = (contractId: string | undefined) => {
|
|
|
|
const [groups, setGroups] = useState<Group[] | null | undefined>()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (contractId) getGroupsWithContractId(contractId, setGroups)
|
|
|
|
}, [contractId])
|
|
|
|
|
|
|
|
return groups
|
|
|
|
}
|