// Copyright 2017-2026 @pezkuwi/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { bool, Option, UInt } from '@pezkuwi/types'; import type { MemberInfo } from './types.js'; import { useMemo } from 'react'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; function useMemberInfoImpl (accountId: string): MemberInfo | undefined { const { api } = useApi(); const upForKicking = useCall(api.query.alliance.upForKicking, [accountId]); const retiringAt = useCall>(api.query.alliance.retiringMembers, [accountId]); const depositOf = useCall>(api.query.alliance.depositOf, [accountId]); return useMemo( () => depositOf && { accountId, deposit: depositOf.unwrapOr(null), isUpForKicking: upForKicking && upForKicking.isTrue, retiringAt: retiringAt?.unwrapOr(null) }, [accountId, depositOf, retiringAt, upForKicking] ); } export default createNamedHook('useMemberInfo', useMemberInfoImpl);