import PropTypes from 'prop-types'; // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import Setting from './setting.jsx'; import Constants from 'utils/constants.jsx'; import * as Utils from 'utils/utils.jsx'; export default class PostEditSetting extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); this.handleTimeLimitChange = this.handleTimeLimitChange.bind(this); } handleChange(e) { this.props.onChange(this.props.id, e.target.value); } handleTimeLimitChange(e) { this.props.onChange(this.props.timeLimitId, e.target.value); } render() { return (
); } } PostEditSetting.defaultProps = { isDisabled: false }; PostEditSetting.propTypes = { id: PropTypes.string.isRequired, timeLimitId: PropTypes.string.isRequired, label: PropTypes.node.isRequired, value: PropTypes.string.isRequired, timeLimitValue: PropTypes.number.isRequired, onChange: PropTypes.func.isRequired, disabled: PropTypes.bool, helpText: PropTypes.node };