Files
pezkuwi-ui/packages/react-qr/src/ScanSignature.tsx
T
2020-01-06 14:51:16 +01:00

45 lines
995 B
TypeScript

// Copyright 2017-2020 @polkadot/react-qr authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
import { BaseProps } from './types';
import React from 'react';
import QrScan from './Scan';
interface ScanType {
signature: string;
}
interface Props extends BaseProps {
onError?: (error: Error) => void;
onScan?: (scanned: ScanType) => void;
}
export default class ScanSignature extends React.PureComponent<Props> {
public render (): React.ReactNode {
const { className, onError, size, style } = this.props;
return (
<QrScan
className={className}
onError={onError}
onScan={this.onScan}
size={size}
style={style}
/>
);
}
private onScan = (signature: string | null): void => {
const { onScan } = this.props;
if (!signature || !onScan) {
return;
}
onScan({ signature: `0x${signature}` });
}
}