mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
a7da8333a0
* Premilimary Sanitize data logic. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * sanitizeData v2 Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * sanitizeData: take 3 Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Sanitize Data take 4 Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Check that version is v4 before sanitizing. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * sanitize arrays. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Tests to check that typeless data are not shwon Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint Fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Do not check value types, Iterate through the message, and ensure each property of the message is declared as a type Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Check that if data type is not defined, it is a solidity type. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint Fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Code cleanup Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Move sanitizeData to utils Tests for sanitizeData in utils Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Fix unit tests for signaturerequest Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Remove unused type include fixedMxN and ufixedMxN checks. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * move fixtures to before each Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * invert if condition to avoid indentations. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * We should exclude types with [] at the beginning or middle as well: Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * cache nestedType Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Throw error for undefined/invalid types definition Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Throw if base type and types are not defined. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com>
137 lines
3.8 KiB
JavaScript
137 lines
3.8 KiB
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Identicon from '../../ui/identicon';
|
|
import LedgerInstructionField from '../ledger-instruction-field';
|
|
import { sanitizeMessage } from '../../../helpers/utils/util';
|
|
import Header from './signature-request-header';
|
|
import Footer from './signature-request-footer';
|
|
import Message from './signature-request-message';
|
|
|
|
export default class SignatureRequest extends PureComponent {
|
|
static propTypes = {
|
|
/**
|
|
* The display content of transaction data
|
|
*/
|
|
txData: PropTypes.object.isRequired,
|
|
/**
|
|
* The display content of sender account
|
|
*/
|
|
fromAccount: PropTypes.shape({
|
|
address: PropTypes.string.isRequired,
|
|
balance: PropTypes.string,
|
|
name: PropTypes.string,
|
|
}).isRequired,
|
|
/**
|
|
* Check if the wallet is ledget wallet or not
|
|
*/
|
|
isLedgerWallet: PropTypes.bool,
|
|
/**
|
|
* Handler for cancel button
|
|
*/
|
|
cancel: PropTypes.func.isRequired,
|
|
/**
|
|
* Handler for sign button
|
|
*/
|
|
sign: PropTypes.func.isRequired,
|
|
/**
|
|
* Whether the hardware wallet requires a connection disables the sign button if true.
|
|
*/
|
|
hardwareWalletRequiresConnection: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
};
|
|
|
|
formatWallet(wallet) {
|
|
return `${wallet.slice(0, 8)}...${wallet.slice(
|
|
wallet.length - 8,
|
|
wallet.length,
|
|
)}`;
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
fromAccount,
|
|
txData: {
|
|
msgParams: { data, origin, version },
|
|
type,
|
|
},
|
|
cancel,
|
|
sign,
|
|
isLedgerWallet,
|
|
hardwareWalletRequiresConnection,
|
|
} = this.props;
|
|
const { address: fromAddress } = fromAccount;
|
|
const { message, domain = {}, primaryType, types } = JSON.parse(data);
|
|
const { metricsEvent } = this.context;
|
|
|
|
const onSign = (event) => {
|
|
sign(event);
|
|
metricsEvent({
|
|
eventOpts: {
|
|
category: 'Transactions',
|
|
action: 'Sign Request',
|
|
name: 'Confirm',
|
|
},
|
|
customVariables: {
|
|
type,
|
|
version,
|
|
},
|
|
});
|
|
};
|
|
|
|
const onCancel = (event) => {
|
|
cancel(event);
|
|
metricsEvent({
|
|
eventOpts: {
|
|
category: 'Transactions',
|
|
action: 'Sign Request',
|
|
name: 'Cancel',
|
|
},
|
|
customVariables: {
|
|
type,
|
|
version,
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="signature-request page-container">
|
|
<Header fromAccount={fromAccount} />
|
|
<div className="signature-request-content">
|
|
<div className="signature-request-content__title">
|
|
{this.context.t('sigRequest')}
|
|
</div>
|
|
<div className="signature-request-content__identicon-container">
|
|
<div className="signature-request-content__identicon-initial">
|
|
{domain.name && domain.name[0]}
|
|
</div>
|
|
<div className="signature-request-content__identicon-border" />
|
|
<Identicon address={fromAddress} diameter={70} />
|
|
</div>
|
|
<div className="signature-request-content__info--bolded">
|
|
{domain.name}
|
|
</div>
|
|
<div className="signature-request-content__info">{origin}</div>
|
|
<div className="signature-request-content__info">
|
|
{this.formatWallet(fromAddress)}
|
|
</div>
|
|
</div>
|
|
{isLedgerWallet ? (
|
|
<div className="confirm-approve-content__ledger-instruction-wrapper">
|
|
<LedgerInstructionField showDataInstruction />
|
|
</div>
|
|
) : null}
|
|
<Message data={sanitizeMessage(message, primaryType, types)} />
|
|
<Footer
|
|
cancelAction={onCancel}
|
|
signAction={onSign}
|
|
disabled={hardwareWalletRequiresConnection}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|