@polkadot/types/interfaces#Forcing TypeScript Examples
The following examples show how to use
@polkadot/types/interfaces#Forcing.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: useEraBlocks.ts From crust-apps with Apache License 2.0 | 6 votes |
export default function useEraBlocks (era?: BN): BN | undefined {
const { api } = useApi();
const depth = useCall<BN>(api.query.staking.historyDepth);
const progress = useCall<DeriveSessionProgress>(api.derive.session.progress);
const forcing = useCall<Forcing>(api.query.staking.forceEra);
return useMemo(
() => (depth && era && forcing && progress && progress.sessionLength.gt(BN_ONE))
? (
forcing.isForceAlways
? progress.sessionLength
: progress.eraLength
).mul(
depth
.sub(progress.activeEra)
.iadd(era)
.iadd(BN_ONE)
).isub(
forcing.isForceAlways
? progress.sessionProgress
: progress.eraProgress
)
: undefined,
[depth, era, forcing, progress]
);
}
Example #2
Source File: SummarySession.tsx From crust-apps with Apache License 2.0 | 5 votes |
function SummarySession ({ className, withEra = true, withSession = true }: Props): React.ReactElement<Props> {
const { t } = useTranslation();
const { api } = useApi();
const sessionInfo = useCall<DeriveSessionProgress>(api.derive.session?.progress);
const forcing = useCall<Forcing>(api.query.staking?.forceEra);
const eraLabel = t<string>('era');
const sessionLabel = sessionInfo?.isEpoch
? t<string>('epoch')
: t<string>('session');
const activeEraStart = sessionInfo?.activeEraStart.unwrapOr(null);
return (
<>
{sessionInfo && (
<>
{withSession && (
sessionInfo.sessionLength.gt(BN_ONE)
? (
<CardSummary
className={className}
label={sessionLabel}
progress={{
total: sessionInfo.sessionLength,
value: sessionInfo.sessionProgress,
withTime: true
}}
/>
)
: (
<CardSummary label={sessionLabel}>
#{formatNumber(sessionInfo.currentIndex)}
{withEra && activeEraStart && <div className='isSecondary'> </div>}
</CardSummary>
)
)}
{forcing && !forcing.isForceNone && withEra && (
sessionInfo.sessionLength.gt(BN_ONE)
? (
<CardSummary
className={className}
label={eraLabel}
progress={{
total: forcing.isForceAlways ? sessionInfo.sessionLength : sessionInfo.eraLength,
value: forcing.isForceAlways ? sessionInfo.sessionProgress : sessionInfo.eraProgress,
withTime: true
}}
/>
)
: (
<CardSummary
className={className}
label={eraLabel}
>
#{formatNumber(sessionInfo.activeEra)}
{activeEraStart && (
<Elapsed
className='isSecondary'
value={activeEraStart}
>
{t('elapsed')}
</Elapsed>
)}
</CardSummary>
)
)}
</>
)}
</>
);
}