mirror of https://github.com/mastodon/mastodon
18 lines
489 B
JavaScript
18 lines
489 B
JavaScript
import { connect } from 'react-redux';
|
|
import { submitAccountNote } from 'mastodon/actions/account_notes';
|
|
import AccountNote from '../components/account_note';
|
|
|
|
const mapStateToProps = (state, { account }) => ({
|
|
value: account.getIn(['relationship', 'note']),
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch, { account }) => ({
|
|
|
|
onSave (value) {
|
|
dispatch(submitAccountNote(account.get('id'), value));
|
|
},
|
|
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AccountNote);
|