mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
32 lines (27 loc) • 756 B
JavaScript
import { compose } from 'redux';
import { connect } from 'react-redux';
import { withPlugins } from '../extend/withPlugins';
import { ErrorDialog } from '../components/ErrorDialog';
import * as actions from '../state/actions';
import { getLatestError } from '../state/selectors';
/**
* mapStateToProps - to hook up connect
* @memberof ErrorDialog
* @private
*/
const mapStateToProps = state => ({
error: getLatestError(state),
});
/**
* mapDispatchToProps - used to hook up connect to action creators
* @memberof App
* @private
*/
const mapDispatchToProps = {
removeError: actions.removeError,
};
const enhance = compose(
connect(mapStateToProps, mapDispatchToProps),
withPlugins('ErrorDialog'),
);
export default enhance(ErrorDialog);