6f645dc6c3
* feat: display postage batch usage percentage * refactor: use string template instead of concat
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
import { PostageBatch } from '@ethersphere/bee-js'
|
|
import { createContext, ReactChild, ReactElement, useEffect, useState } from 'react'
|
|
import { beeApi } from '../services/bee'
|
|
|
|
export interface EnrichedPostageBatch extends PostageBatch {
|
|
usage: number
|
|
usageText: string
|
|
}
|
|
|
|
interface ContextInterface {
|
|
stamps: EnrichedPostageBatch[] | 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
|
|
}
|
|
|
|
function enrichStamp(postageBatch: PostageBatch): EnrichedPostageBatch {
|
|
const { depth, bucketDepth, utilization } = postageBatch
|
|
|
|
const usage = utilization / Math.pow(2, depth - bucketDepth)
|
|
const usageText = `${Math.ceil(usage * 100)}%`
|
|
|
|
return {
|
|
...postageBatch,
|
|
usage,
|
|
usageText,
|
|
}
|
|
}
|
|
|
|
export function Provider({ children }: Props): ReactElement {
|
|
const [stamps, setStamps] = useState<EnrichedPostageBatch[] | 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.map(enrichStamp))
|
|
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>
|
|
)
|
|
}
|