Last active
November 8, 2018 16:03
-
-
Save nicolaslopezj/ad734ad18a44715738ffd26d9618d475 to your computer and use it in GitHub Desktop.
field array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import styles from './styles.css' | |
import PropTypes from 'prop-types' | |
import Text from 'orionsoft-parts/lib/components/fields/Text' | |
import clone from 'lodash/clone' | |
import Button from 'orionsoft-parts/lib/components/Button' | |
import autobind from 'autobind-decorator' | |
import IconButton from 'orionsoft-parts/lib/components/IconButton' | |
import DeleteIcon from 'react-icons/lib/md/delete' | |
export default class Domains extends React.Component { | |
static propTypes = { | |
value: PropTypes.array, | |
onChange: PropTypes.func | |
} | |
@autobind | |
add() { | |
const docVal = clone(this.props.value) || [] | |
docVal.push('') | |
this.props.onChange(docVal) | |
} | |
@autobind | |
delete(index) { | |
const docVal = clone(this.props.value) || [] | |
docVal.splice(index, 1) | |
this.props.onChange(docVal) | |
} | |
@autobind | |
onChange(value, index) { | |
const docVal = clone(this.props.value) || [] | |
docVal[index] = value | |
this.props.onChange(docVal) | |
} | |
renderInputs() { | |
const docVal = this.props.value || [''] | |
return docVal.map((value, index) => { | |
return ( | |
<div key={index} className={styles.domain}> | |
<div className={styles.input}> | |
<Text | |
placeholder="Domain" | |
value={value} | |
onChange={value => this.onChange(value, index)} | |
/> | |
</div> | |
<div className={styles.icon}> | |
{docVal.length === 1 ? null : ( | |
<IconButton icon={DeleteIcon} onPress={() => this.delete(index)} /> | |
)} | |
</div> | |
</div> | |
) | |
}) | |
} | |
renderAdd() { | |
return <Button onClick={this.add}>Add domain</Button> | |
} | |
render() { | |
return ( | |
<div className={styles.container}> | |
{this.renderInputs()} | |
<div style={{height: 10}} /> | |
{this.renderAdd()} | |
</div> | |
) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:local(.container) { | |
margin-bottom: 10px; | |
} | |
:local(.domain) { | |
display: flex; | |
margin-bottom: 10px; | |
} | |
:local(.input) { | |
flex: 1; | |
height: 46px; | |
} | |
:local(.icon) { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
padding-left: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment