pagraphcontrol/components/modals/index.js
2018-11-19 23:11:01 +03:00

136 lines
2.6 KiB
JavaScript

const {
mapObjIndexed,
map,
merge,
path,
} = require('ramda');
const r = require('r-dom');
const React = require('react');
const Modal = require('react-modal');
const { connect } = require('react-redux');
const { bindActionCreators } = require('redux');
const {
pulse: pulseActions,
preferences: preferencesActions,
} = require('../../actions');
const {
getPaiByTypeAndIndex,
} = require('../../selectors');
const { modules } = require('../../constants/pulse');
const ConnectToServerModal = require('./connect-to-server');
const ConfirmationModal = require('./confirmation');
Modal.setAppElement('#root');
Modal.defaultStyles = {
overlay: {},
content: {},
};
class Modals extends React.PureComponent {
constructor(props) {
super(props);
this.initialState = {
target: null,
confirmation: null,
continuation: null,
connectToServerModalOpen: false,
actions: {
openConnectToServerModal: this.openConnectToServerModal.bind(this),
},
};
this.state = this.initialState;
this.handleCancel = this.handleCancel.bind(this);
}
static getDerivedStateFromProps(props, state) {
return {
actions: merge(state.actions, mapObjIndexed((f, name) => function (...args) {
const continuation = () => {
props[name](...args);
this.setState(this.initialState);
};
if (props.preferences.doNotAskForConfirmations) {
return continuation();
}
const target = f(...args);
if (!target) {
return continuation();
}
this.setState({
target,
continuation,
confirmation: name,
});
}, {
unloadModuleByIndex(index) {
const pai = getPaiByTypeAndIndex('module', index)({ pulse: props });
if (pai && path([ pai.name, 'confirmUnload' ], modules)) {
return pai;
}
return null;
},
})),
};
}
openConnectToServerModal() {
this.setState({ connectToServerModalOpen: true });
}
handleCancel() {
this.setState(this.initialState);
}
render() {
const { preferences, toggle, children } = this.props;
const { actions, target, confirmation, continuation } = this.state;
return r(React.Fragment, [
...[].concat(children({ actions: map(a => a.bind(this), actions) })),
r(ConfirmationModal, {
target,
confirmation,
onConfirm: continuation,
onCancel: this.handleCancel,
preferences,
toggle,
}),
r(ConnectToServerModal, {
isOpen: this.state.connectToServerModalOpen,
onRequestClose: this.handleCancel,
}),
]);
}
}
module.exports = connect(
state => ({
infos: state.pulse.infos,
preferences: state.preferences,
}),
dispatch => bindActionCreators(merge(pulseActions, preferencesActions), dispatch),
)(Modals);