-
-
Save notakaos/24e02eb2fca1bfd9d6e6 to your computer and use it in GitHub Desktop.
Meteor 1.3 + React Simple Memo Step 7-1
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
meteor npm install --save react-textarea-autosize |
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
// imports/ui/components/MemoItem.js | |
import React from 'react'; | |
import Textarea from 'react-textarea-autosize' | |
export default class MemoItem extends React.Component { | |
constructor(props) { | |
super(props); | |
const { memo } = this.props; | |
this.state = { | |
textAreaValue: memo.content | |
}; | |
this.onClick = this.onClick.bind(this); | |
this.onChange = this.onChange.bind(this); | |
} | |
onClick(event) { | |
event.preventDefault(); | |
const { memo, removeMemo } = this.props; | |
removeMemo(memo._id); | |
} | |
onChange(event) { | |
const { memo, updateMemoContent } = this.props; | |
const content = event.target.value; | |
this.setState({ | |
textAreaValue: content | |
}); | |
updateMemoContent(memo._id, content); | |
} | |
componentWillReceiveProps(nextProps) { | |
if (this.state.textAreaValue !== nextProps.memo.content) { | |
this.setState({ | |
textAreaValue: nextProps.memo.content | |
}); | |
} | |
} | |
render() { | |
const { memo } = this.props; | |
const { textAreaValue } = this.state; | |
return ( | |
<div className="memo-item"> | |
<a href="#" onClick={this.onClick} className="remove-button"> | |
× | |
</a> | |
<Textarea | |
className="textarea" | |
value={textAreaValue} | |
onChange={this.onChange} | |
minRows={7} | |
/> | |
</div> | |
); | |
} | |
} | |
MemoItem.propTypes = { | |
memo: React.PropTypes.object.isRequired, | |
removeMemo: React.PropTypes.func.isRequired, | |
updateMemoContent: React.PropTypes.func.isRequired, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment