// Copyright 2017-2023 @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 { 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 ( ); } export const QrScanAddress = React.memo(ScanAddress);