Files
pwap/pezkuwi-sdk-ui/packages/page-staking2/src/useValidatorsWaiting.ts
T
Claude c71ddb6e0d Add Pezkuwi SDK UI - Polkadot.js Apps clone
- 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
2025-11-14 00:55:17 +00:00

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);