Skip to content

Instantly share code, notes, and snippets.

@notakaos
Created March 25, 2016 18:29
Show Gist options
  • Save notakaos/24e02eb2fca1bfd9d6e6 to your computer and use it in GitHub Desktop.
Save notakaos/24e02eb2fca1bfd9d6e6 to your computer and use it in GitHub Desktop.
Meteor 1.3 + React Simple Memo Step 7-1
meteor npm install --save react-textarea-autosize
// 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">
&times;
</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