mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-05-08 08:07:55 +00:00
971df8edba
- Remove all 3rd party parachain configurations from endpoints: - productionRelayPolkadot.ts: Keep only system parachains - productionRelayDicle.ts: Keep only system parachains - testingRelayZagros.ts: Keep only system parachains - testingRelayTeyrChain.ts: Keep only system parachains - Update domain references: - polkadot.js.org → pezkuwichain.app - wiki.polkadot.network → wiki.pezkuwichain.io - dotapps.io → pezkuwichain.app - statement.polkadot.network → docs.pezkuwichain.io/statement - support.polkadot.network → docs.pezkuwichain.io - Update repository references: - github.com/pezkuwi-js/apps → github.com/pezkuwichain/pwap - Rename system parachains to Pezkuwi ecosystem: - PolkadotAssetHub → PezkuwiAssetHub - polkadotBridgeHub → pezkuwiBridgeHub - polkadotCollectives → pezkuwiCollectives - polkadotCoretime → pezkuwiCoretime - polkadotPeople → pezkuwiPeople - Update network name in claims utility: - Polkadot → Pezkuwi
96 lines
2.6 KiB
TypeScript
96 lines
2.6 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/react-params authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Keys, ValidatorId } from '@pezkuwi/types/interfaces';
|
|
import type { Codec } from '@pezkuwi/types/types';
|
|
|
|
import React from 'react';
|
|
|
|
import { CopyButton } from '@pezkuwi/react-components';
|
|
import { Option, Raw } from '@pezkuwi/types';
|
|
import { isFunction, isNull, isUndefined, stringify, u8aToHex } from '@pezkuwi/util';
|
|
|
|
interface DivProps {
|
|
className?: string;
|
|
key?: string;
|
|
}
|
|
|
|
function div ({ className = '', key }: DivProps, ...values: React.ReactNode[]): { cName: string, key: string | undefined, values: React.ReactNode[] } {
|
|
const cName = `${className} ui--Param-text`;
|
|
|
|
return {
|
|
cName,
|
|
key,
|
|
values
|
|
};
|
|
}
|
|
|
|
function formatKeys (keys: [ValidatorId, Keys][]): string {
|
|
return JSON.stringify(
|
|
keys.map(([validator, keys]): [string, string] => [
|
|
validator.toString(), keys.toHex()
|
|
])
|
|
);
|
|
}
|
|
|
|
function toHuman (value: Codec | Codec[]): unknown {
|
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
return isFunction((value as Codec).toHuman)
|
|
? (value as Codec).toHuman()
|
|
: Array.isArray(value)
|
|
? value.map((v) => toHuman(v))
|
|
: value.toString();
|
|
}
|
|
|
|
export function toHumanJson (value: unknown): string {
|
|
return stringify(value, 2)
|
|
.replace(/,\n/g, '\n')
|
|
.replace(/"/g, '')
|
|
.replace(/\\/g, '')
|
|
.replace(/\],\[/g, '],\n[');
|
|
}
|
|
|
|
export default function valueToText (type: string, value: Codec | undefined | null): React.ReactNode {
|
|
if (isNull(value) || isUndefined(value)) {
|
|
const { cName, key, values } = div({}, '<unknown>');
|
|
|
|
return (
|
|
<div
|
|
className={cName}
|
|
key={key}
|
|
>
|
|
{values}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const renderedValue = (
|
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
['Bytes', 'Raw', 'Option<Keys>', 'Keys'].includes(type) && isFunction(value.toU8a)
|
|
? u8aToHex(value.toU8a(true))
|
|
// HACK Handle Keys as hex-only (this should go away once the node value is
|
|
// consistently swapped to `Bytes`)
|
|
: type === 'Vec<(ValidatorId,Keys)>'
|
|
? toHumanJson(formatKeys(value as unknown as [ValidatorId, Keys][]))
|
|
: value instanceof Raw
|
|
? value.isEmpty
|
|
? '<empty>'
|
|
: value.toString()
|
|
: (value instanceof Option) && value.isNone
|
|
? '<none>'
|
|
: toHumanJson(toHuman(value))
|
|
);
|
|
|
|
const { cName, key, values } = div({}, renderedValue);
|
|
|
|
return (
|
|
<div
|
|
className={cName}
|
|
key={key}
|
|
>
|
|
{values}
|
|
<CopyButton value={renderedValue} />
|
|
</div>
|
|
);
|
|
}
|