A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/components/send_/send-content/send-row-wrapper/send-row-wrapper.component.js

44 lines
1.0 KiB

7 years ago
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowErrorMessage from './send-row-error-message/send-row-error-message.container'
export default class SendRowWrapper extends Component {
static propTypes = {
label: PropTypes.string,
showError: PropTypes.bool,
children: PropTypes.node,
errorType: PropTypes.string,
};
render () {
const {
label,
errorType = '',
showError = false,
children,
} = this.props
let formField = Array.isArray(children) ? children[1] || children[0] : children
let customLabelContent = children.length === 1 ? children[0] : null
7 years ago
7 years ago
return (
<div className="send-v2__form-row">
<div className="send-v2__form-label">
{label}
{showError && <SendRowErrorMessage errorType={errorType}/>}
7 years ago
{customLabelContent}
7 years ago
</div>
<div className="send-v2__form-field">
7 years ago
{formField}
7 years ago
</div>
</div>
);
}
}
SendRowWrapper.contextTypes = {
t: PropTypes.func,
}