105 lines
2.4 KiB
JavaScript
105 lines
2.4 KiB
JavaScript
![]() |
import noop from 'lodash/noop';
|
||
|
import React, { PureComponent, PropTypes } from 'react';
|
||
|
import { connect } from 'react-redux';
|
||
|
import { createSelector } from 'reselect';
|
||
|
import { Button, Modal } from 'react-bootstrap';
|
||
|
import FontAwesome from 'react-fontawesome';
|
||
|
|
||
|
import ns from './ns.json';
|
||
|
import {
|
||
|
closeChallengeModal,
|
||
|
submitChallenge,
|
||
|
|
||
|
challengeModalSelector,
|
||
|
successMessageSelector
|
||
|
} from './redux';
|
||
|
|
||
|
const mapStateToProps = createSelector(
|
||
|
challengeModalSelector,
|
||
|
successMessageSelector,
|
||
|
(isOpen, message) => ({
|
||
|
isOpen,
|
||
|
message
|
||
|
})
|
||
|
);
|
||
|
|
||
|
const mapDispatchToProps = function(dispatch) {
|
||
|
const dispatchers = {
|
||
|
close: () => dispatch(closeChallengeModal()),
|
||
|
submitChallenge: (e) => {
|
||
|
if (
|
||
|
e.keyCode === 13 &&
|
||
|
(e.ctrlKey || e.meta)
|
||
|
) {
|
||
|
dispatch(submitChallenge());
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
return () => dispatchers;
|
||
|
};
|
||
|
|
||
|
const propTypes = {
|
||
|
close: PropTypes.func.isRequired,
|
||
|
isOpen: PropTypes.bool,
|
||
|
message: PropTypes.string,
|
||
|
submitChallenge: PropTypes.func.isRequired
|
||
|
};
|
||
|
|
||
|
export class CompletionModal extends PureComponent {
|
||
|
render() {
|
||
|
const {
|
||
|
close,
|
||
|
isOpen,
|
||
|
submitChallenge,
|
||
|
message
|
||
|
} = this.props;
|
||
|
return (
|
||
|
<Modal
|
||
|
animation={ false }
|
||
|
dialogClassName={ `${ns}-success-modal` }
|
||
|
keyboard={ true }
|
||
|
onHide={ close }
|
||
|
onKeyDown={ isOpen ? submitChallenge : noop }
|
||
|
show={ isOpen }
|
||
|
>
|
||
|
<Modal.Header
|
||
|
className={ `${ns}-list-header` }
|
||
|
closeButton={ true }
|
||
|
>
|
||
|
<Modal.Title>{ message }</Modal.Title>
|
||
|
</Modal.Header>
|
||
|
<Modal.Body>
|
||
|
<div className='text-center'>
|
||
|
<div className='row'>
|
||
|
<div>
|
||
|
<FontAwesome
|
||
|
className='completion-icon text-primary'
|
||
|
name='check-circle'
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</Modal.Body>
|
||
|
<Modal.Footer>
|
||
|
<Button
|
||
|
block={ true }
|
||
|
bsSize='large'
|
||
|
bsStyle='primary'
|
||
|
onClick={ submitChallenge }
|
||
|
>
|
||
|
Submit and go to next challenge (Ctrl + Enter)
|
||
|
</Button>
|
||
|
</Modal.Footer>
|
||
|
</Modal>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
CompletionModal.displayName = 'CompletionModal';
|
||
|
CompletionModal.propTypes = propTypes;
|
||
|
|
||
|
export default connect(
|
||
|
mapStateToProps,
|
||
|
mapDispatchToProps
|
||
|
)(CompletionModal);
|