* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import PropTypes from 'prop-types';
 | |
| import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | |
| import Button from '../../../components/button';
 | |
| 
 | |
| class ConfirmationModal extends React.PureComponent {
 | |
| 
 | |
|   static propTypes = {
 | |
|     message: PropTypes.node.isRequired,
 | |
|     confirm: PropTypes.string.isRequired,
 | |
|     onClose: PropTypes.func.isRequired,
 | |
|     onConfirm: PropTypes.func.isRequired,
 | |
|     intl: PropTypes.object.isRequired,
 | |
|   };
 | |
| 
 | |
|   handleClick = () => {
 | |
|     this.props.onClose();
 | |
|     this.props.onConfirm();
 | |
|   }
 | |
| 
 | |
|   handleCancel = (e) => {
 | |
|     e.preventDefault();
 | |
|     this.props.onClose();
 | |
|   }
 | |
| 
 | |
|   render () {
 | |
|     const { intl, message, confirm, onConfirm, onClose } = this.props;
 | |
| 
 | |
|     return (
 | |
|       <div className='modal-root__modal confirmation-modal'>
 | |
|         <div className='confirmation-modal__container'>
 | |
|           {message}
 | |
|         </div>
 | |
| 
 | |
|         <div className='confirmation-modal__action-bar'>
 | |
|           <div><a href='#' onClick={this.handleCancel}><FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' /></a></div>
 | |
|           <Button text={confirm} onClick={this.handleClick} />
 | |
|         </div>
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default injectIntl(ConfirmationModal);
 |