mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-09 20:11:10 +00:00
feat: initial Pezkuwi Apps rebrand from polkadot-apps
Rebranded terminology: - Polkadot → Pezkuwi - Kusama → Dicle - Westend → Zagros - Rococo → PezkuwiChain - Substrate → Bizinikiwi - parachain → teyrchain Custom logos with Kurdistan brand colors (#e6007a → #86e62a): - bizinikiwi-hexagon.svg - sora-bizinikiwi.svg - hezscanner.svg - heztreasury.svg - pezkuwiscan.svg - pezkuwistats.svg - pezkuwiassembly.svg - pezkuwiholic.svg
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
// Copyright 2017-2025 @pezkuwi/react-hooks authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { ApiPromise } from '@pezkuwi/api';
|
||||
import type { Option, StorageKey, u16, u32, Vec } from '@pezkuwi/types';
|
||||
import type { PalletBrokerScheduleItem } from '@pezkuwi/types/lookup';
|
||||
import type { BN } from '@pezkuwi/util';
|
||||
import type { CoreWorkplan } from './types.js';
|
||||
|
||||
import { useEffect, useState } from 'react';
|
||||
|
||||
import { createNamedHook, useCall, useMapKeys } from '@pezkuwi/react-hooks';
|
||||
|
||||
import { processHexMask } from './utils/dataProcessing.js';
|
||||
|
||||
export function sortByCore<T extends { core: number }> (dataArray?: T | T[]): T[] {
|
||||
if (!dataArray) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const sanitized = Array.isArray(dataArray) ? dataArray : [dataArray];
|
||||
|
||||
return sanitized.sort((a, b) => a.core - b.core);
|
||||
}
|
||||
|
||||
function extractInfo (info: Vec<PalletBrokerScheduleItem>, core: number, timeslice: number): CoreWorkplan {
|
||||
const mask: string[] = processHexMask(info[0]?.mask);
|
||||
const assignment = info[0].assignment;
|
||||
|
||||
return {
|
||||
core,
|
||||
info: {
|
||||
isPool: assignment.isPool,
|
||||
isTask: assignment.isTask,
|
||||
mask,
|
||||
maskBits: mask.length,
|
||||
task: assignment.isTask ? assignment.asTask.toString() : assignment.isPool ? 'Pool' : 'Idle'
|
||||
},
|
||||
timeslice
|
||||
};
|
||||
}
|
||||
|
||||
const OPT_KEY = {
|
||||
transform: (keys: StorageKey<[u32, u16]>[]): [u32, u16][] =>
|
||||
keys.map(({ args: [timeslice, core] }) => [timeslice, core])
|
||||
};
|
||||
|
||||
function useWorkplanInfosImpl (api: ApiPromise, ready: boolean): CoreWorkplan[] | undefined {
|
||||
const workplanKeys = useMapKeys(ready && api?.query.broker.workplan, [], OPT_KEY);
|
||||
|
||||
const sanitizedKeys = workplanKeys?.map((value) => {
|
||||
return value[0];
|
||||
});
|
||||
|
||||
const workplanInfo = useCall<[[[u32, u16][]], Option<Vec<PalletBrokerScheduleItem>>[]]>(ready && api?.query.broker.workplan.multi, [sanitizedKeys], { withParams: true });
|
||||
|
||||
const [state, setState] = useState<CoreWorkplan[] | undefined>();
|
||||
|
||||
useEffect(() => {
|
||||
if (!workplanInfo?.[1] || !workplanInfo[0]?.[0]) {
|
||||
return;
|
||||
}
|
||||
|
||||
const coreInfo = workplanInfo[0][0];
|
||||
|
||||
setState(
|
||||
sortByCore(coreInfo.map((core: BN[], index) =>
|
||||
extractInfo(workplanInfo[1][index].unwrap(), core[1].toNumber(), core[0].toNumber())
|
||||
))
|
||||
);
|
||||
}, [workplanInfo]);
|
||||
|
||||
return state;
|
||||
}
|
||||
|
||||
export const useWorkplanInfos = createNamedHook('useWorkplanInfos', useWorkplanInfosImpl);
|
||||
Reference in New Issue
Block a user