import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import Toggle from 'react-toggle'; import Button from '../../../components/button'; import { closeModal } from '../../../actions/modal'; import { muteAccount } from '../../../actions/accounts'; import { toggleHideNotifications, changeMuteDuration } from '../../../actions/mutes'; const messages = defineMessages({ minutes: { id: 'intervals.full.minutes', defaultMessage: '{number, plural, one {# minute} other {# minutes}}' }, hours: { id: 'intervals.full.hours', defaultMessage: '{number, plural, one {# hour} other {# hours}}' }, days: { id: 'intervals.full.days', defaultMessage: '{number, plural, one {# day} other {# days}}' }, }); const mapStateToProps = state => { return { account: state.getIn(['mutes', 'new', 'account']), notifications: state.getIn(['mutes', 'new', 'notifications']), muteDuration: state.getIn(['mutes', 'new', 'duration']), }; }; const mapDispatchToProps = dispatch => { return { onConfirm(account, notifications, muteDuration) { dispatch(muteAccount(account.get('id'), notifications, muteDuration)); }, onClose() { dispatch(closeModal()); }, onToggleNotifications() { dispatch(toggleHideNotifications()); }, onChangeMuteDuration(e) { dispatch(changeMuteDuration(e.target.value)); }, }; }; export default @connect(mapStateToProps, mapDispatchToProps) @injectIntl class MuteModal extends React.PureComponent { static propTypes = { account: PropTypes.object.isRequired, notifications: PropTypes.bool.isRequired, onClose: PropTypes.func.isRequired, onConfirm: PropTypes.func.isRequired, onToggleNotifications: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, muteDuration: PropTypes.number.isRequired, onChangeMuteDuration: PropTypes.func.isRequired, }; componentDidMount() { this.button.focus(); } handleClick = () => { this.props.onClose(); this.props.onConfirm(this.props.account, this.props.notifications, this.props.muteDuration); } handleCancel = () => { this.props.onClose(); } setRef = (c) => { this.button = c; } toggleNotifications = () => { this.props.onToggleNotifications(); } changeMuteDuration = (e) => { this.props.onChangeMuteDuration(e); } render () { const { account, notifications, muteDuration, intl } = this.props; return (

@{account.get('acct')} }} />

: {/* eslint-disable-next-line jsx-a11y/no-onchange */}
); } }