mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-25 18:35:41 +00:00
c71ddb6e0d
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
// Copyright 2017-2025 @polkadot/app-staking authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { SessionInfo, Validator } from './types.js';
|
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { createNamedHook } from '@polkadot/react-hooks';
|
|
|
|
import { useCacheValue } from './useCache.js';
|
|
import useValidatorsAll from './useValidatorsAll.js';
|
|
|
|
function excludeValidators (from: Validator[], exclude: Validator[]): Validator[] {
|
|
return from.filter(({ stashId }) =>
|
|
!exclude.some((v) => v.stashId === stashId)
|
|
);
|
|
}
|
|
|
|
function useValidatorsWaitingImpl (favorites: string[], sessionInfo: SessionInfo, activeValidators?: Validator[]): Validator[] | undefined {
|
|
const allValidators = useValidatorsAll(favorites, sessionInfo);
|
|
|
|
// both active and all is already sorted and tagged, so we don't
|
|
// need to re-sort the waiting list
|
|
const tagged = useMemo(
|
|
() => allValidators && activeValidators && excludeValidators(allValidators, activeValidators),
|
|
[activeValidators, allValidators]
|
|
);
|
|
|
|
return useCacheValue('useValidatorsWaiting', tagged);
|
|
}
|
|
|
|
export default createNamedHook('useValidatorsWaiting', useValidatorsWaitingImpl);
|