4074a9de5d
* chore: release 0.3.0 * feat: added postage stamp table to list all stamps * feat: postage stamp modal to purchase stamps * feat: postage stamps provider * chore: added formik * chore: proper form state handling * chore: revert accidental release inclusion * chore: polishing identified when developing the upload functionality Co-authored-by: bee-worker <70210089+bee-worker@users.noreply.github.com>
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import { PostageBatch } from '@ethersphere/bee-js'
|
|
import { createContext, ReactChild, ReactElement, useEffect, useState } from 'react'
|
|
import { beeApi } from '../services/bee'
|
|
|
|
interface ContextInterface {
|
|
stamps: PostageBatch[] | null
|
|
error: Error | null
|
|
isLoading: boolean
|
|
lastUpdate: number | null
|
|
start: (frequency?: number) => void
|
|
stop: () => void
|
|
refresh: () => Promise<void>
|
|
}
|
|
|
|
const initialValues: ContextInterface = {
|
|
stamps: null,
|
|
error: null,
|
|
isLoading: false,
|
|
lastUpdate: null,
|
|
start: () => {}, // eslint-disable-line
|
|
stop: () => {}, // eslint-disable-line
|
|
refresh: () => Promise.reject(),
|
|
}
|
|
|
|
export const Context = createContext<ContextInterface>(initialValues)
|
|
export const Consumer = Context.Consumer
|
|
|
|
interface Props {
|
|
children: ReactChild
|
|
}
|
|
|
|
export function Provider({ children }: Props): ReactElement {
|
|
const [stamps, setStamps] = useState<PostageBatch[] | null>(initialValues.stamps)
|
|
const [error, setError] = useState<Error | null>(initialValues.error)
|
|
const [isLoading, setIsLoading] = useState<boolean>(initialValues.isLoading)
|
|
const [lastUpdate, setLastUpdate] = useState<number | null>(initialValues.lastUpdate)
|
|
const [frequency, setFrequency] = useState<number | null>(null)
|
|
|
|
const refresh = async () => {
|
|
// Don't want to refresh when already refreshing
|
|
if (isLoading) return
|
|
|
|
try {
|
|
setIsLoading(true)
|
|
const stamps = await beeApi.stamps.getPostageStamps()
|
|
|
|
setStamps(stamps)
|
|
setLastUpdate(Date.now())
|
|
} catch (e) {
|
|
setError(e)
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
const start = (freq = 30000) => setFrequency(freq)
|
|
const stop = () => setFrequency(null)
|
|
|
|
// Start the update loop
|
|
useEffect(() => {
|
|
refresh()
|
|
|
|
// Start autorefresh only if the frequency is set
|
|
if (frequency) {
|
|
const interval = setInterval(refresh, frequency)
|
|
|
|
return () => clearInterval(interval)
|
|
}
|
|
}, [frequency])
|
|
|
|
return (
|
|
<Context.Provider value={{ stamps, error, isLoading, lastUpdate, start, stop, refresh }}>
|
|
{children}
|
|
</Context.Provider>
|
|
)
|
|
}
|