mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 09:07:56 +00:00
caa0ceea23
* 2025 * update License
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
// Copyright 2017-2025 @polkadot/react-qr authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { HexString } from '@polkadot/util/types';
|
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { decodeAddress } from '@polkadot/util-crypto';
|
|
|
|
import { ADDRESS_PREFIX, SEED_PREFIX } from './constants.js';
|
|
import { QrScan } from './Scan.js';
|
|
|
|
interface ScanType {
|
|
isAddress: boolean;
|
|
content: string;
|
|
genesisHash: HexString | null;
|
|
name?: string | undefined;
|
|
}
|
|
|
|
interface Props {
|
|
className?: string;
|
|
onError?: (error: Error) => void;
|
|
onScan: (scanned: ScanType) => void;
|
|
size?: string | number;
|
|
style?: React.CSSProperties;
|
|
isEthereum?: boolean
|
|
}
|
|
|
|
function ScanAddress ({ className, isEthereum, onError, onScan, size, style }: Props): React.ReactElement<Props> {
|
|
const _onScan = useCallback(
|
|
(data: string | null): void => {
|
|
if (data) {
|
|
try {
|
|
let prefix: string;
|
|
let content: string;
|
|
let genesisHash: string | null;
|
|
let name: string[];
|
|
|
|
if (!isEthereum) {
|
|
[prefix, content, genesisHash, ...name] = data.split(':');
|
|
} else {
|
|
[prefix, content, ...name] = data.split(':');
|
|
genesisHash = null;
|
|
content = content.substring(0, 42);
|
|
}
|
|
|
|
const expectedPrefix = (isEthereum ? 'ethereum' : ADDRESS_PREFIX);
|
|
const isValidPrefix = (prefix === expectedPrefix) || (prefix === SEED_PREFIX);
|
|
|
|
if (!isValidPrefix) {
|
|
throw new Error(`Invalid prefix received, expected '${expectedPrefix} or ${SEED_PREFIX}' , found '${prefix}'`);
|
|
}
|
|
|
|
const isAddress = prefix === expectedPrefix;
|
|
|
|
if (isAddress && !isEthereum) {
|
|
decodeAddress(content);
|
|
}
|
|
|
|
onScan({ content, genesisHash: genesisHash as HexString, isAddress, name: name?.length ? name.join(':') : undefined });
|
|
} catch (error) {
|
|
onError && onError(error as Error);
|
|
|
|
console.error('@polkadot/react-qr:QrScanAddress', (error as Error).message, data);
|
|
}
|
|
}
|
|
},
|
|
[onScan, onError, isEthereum]
|
|
);
|
|
|
|
return (
|
|
<QrScan
|
|
className={className}
|
|
onError={onError}
|
|
onScan={_onScan}
|
|
size={size}
|
|
style={style}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export const QrScanAddress = React.memo(ScanAddress);
|