1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 12:56:01 +01:00
metamask-extension/ui/components/app/qr-hardware-popover/qr-hardware-wallet-importer/qr-hardware-wallet-importer.component.js

38 lines
1.1 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import {
submitQRHardwareCryptoAccount,
submitQRHardwareCryptoHDKey,
} from '../../../../store/actions';
import BaseReader from '../base-reader';
import { useI18nContext } from '../../../../hooks/useI18nContext';
const QRHardwareWalletImporter = ({ handleCancel, setErrorTitle }) => {
const t = useI18nContext();
const handleSuccess = async (ur) => {
if (ur.type === 'crypto-hdkey') {
return await submitQRHardwareCryptoHDKey(ur.cbor.toString('hex'));
} else if (ur.type === 'crypto-account') {
return await submitQRHardwareCryptoAccount(ur.cbor.toString('hex'));
}
setErrorTitle(t('QRHardwareUnknownQRCodeTitle'));
throw new Error(t('unknownQrCode'));
};
return (
<BaseReader
isReadingWallet
handleCancel={handleCancel}
handleSuccess={handleSuccess}
setErrorTitle={setErrorTitle}
/>
);
};
QRHardwareWalletImporter.propTypes = {
handleCancel: PropTypes.func.isRequired,
setErrorTitle: PropTypes.func.isRequired,
};
export default QRHardwareWalletImporter;