2022-07-19 07:53:03 +00:00
|
|
|
import type { UseMinterContractProps } from 'contracts/minter'
|
|
|
|
import { useMinterContract } from 'contracts/minter'
|
|
|
|
import type { UseSG721ContractProps } from 'contracts/sg721'
|
|
|
|
import { useSG721Contract } from 'contracts/sg721'
|
2022-10-21 01:02:52 +00:00
|
|
|
import type { UseVendingFactoryContractProps } from 'contracts/vendingFactory'
|
|
|
|
import { useVendingFactoryContract } from 'contracts/vendingFactory'
|
2022-07-19 07:53:03 +00:00
|
|
|
import type { UseWhiteListContractProps } from 'contracts/whitelist'
|
|
|
|
import { useWhiteListContract } from 'contracts/whitelist'
|
|
|
|
import type { ReactNode, VFC } from 'react'
|
|
|
|
import { Fragment, useEffect } from 'react'
|
|
|
|
import type { State } from 'zustand'
|
|
|
|
import create from 'zustand'
|
2022-07-13 13:56:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Contracts store type definitions
|
|
|
|
*/
|
|
|
|
export interface ContractsStore extends State {
|
2022-07-14 10:16:50 +00:00
|
|
|
sg721: UseSG721ContractProps | null
|
|
|
|
minter: UseMinterContractProps | null
|
2022-07-19 07:53:03 +00:00
|
|
|
whitelist: UseWhiteListContractProps | null
|
2022-10-21 01:02:52 +00:00
|
|
|
vendingFactory: UseVendingFactoryContractProps | null
|
2022-07-13 13:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contracts store default values as a separate variable for reusability
|
|
|
|
*/
|
|
|
|
export const defaultValues: ContractsStore = {
|
2022-07-14 10:16:50 +00:00
|
|
|
sg721: null,
|
|
|
|
minter: null,
|
|
|
|
whitelist: null,
|
2022-10-21 01:02:52 +00:00
|
|
|
vendingFactory: null,
|
2022-07-13 13:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Entrypoint for contracts store using {@link defaultValues}
|
|
|
|
*/
|
|
|
|
export const useContracts = create<ContractsStore>(() => ({
|
|
|
|
...defaultValues,
|
|
|
|
}))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contracts store provider to easily mount {@link ContractsSubscription}
|
|
|
|
* to listen/subscribe to contract changes
|
|
|
|
*/
|
|
|
|
export const ContractsProvider = ({ children }: { children: ReactNode }) => {
|
|
|
|
return (
|
2022-07-19 07:53:03 +00:00
|
|
|
<>
|
2022-07-13 13:56:36 +00:00
|
|
|
{children}
|
|
|
|
<ContractsSubscription />
|
2022-07-19 07:53:03 +00:00
|
|
|
</>
|
2022-07-13 13:56:36 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-07-14 10:16:50 +00:00
|
|
|
const ContractsSubscription: VFC = () => {
|
|
|
|
const sg721 = useSG721Contract()
|
|
|
|
const minter = useMinterContract()
|
|
|
|
const whitelist = useWhiteListContract()
|
2022-10-21 01:02:52 +00:00
|
|
|
const vendingFactory = useVendingFactoryContract()
|
2022-07-14 10:16:50 +00:00
|
|
|
|
2022-07-13 13:56:36 +00:00
|
|
|
useEffect(() => {
|
|
|
|
useContracts.setState({
|
2022-07-14 10:16:50 +00:00
|
|
|
sg721,
|
|
|
|
minter,
|
|
|
|
whitelist,
|
2022-10-21 01:02:52 +00:00
|
|
|
vendingFactory,
|
2022-07-13 13:56:36 +00:00
|
|
|
})
|
2022-10-21 01:02:52 +00:00
|
|
|
}, [sg721, minter, whitelist, vendingFactory])
|
2022-07-13 13:56:36 +00:00
|
|
|
|
|
|
|
return null
|
|
|
|
}
|