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.
37 lines (35 loc) • 1.16 kB
JavaScript
import { compose } from 'redux';
import { connect } from 'react-redux';
import { withTranslation } from 'react-i18next';
import { withPlugins } from '../extend/withPlugins';
import { getManifestDescription, getManifestTitle, getManifestMetadata } from '../state/selectors';
import { ManifestInfo } from '../components/ManifestInfo';
/**
* mapStateToProps - to hook up connect
* @memberof WindowSideBarInfoPanel
* @private
*/
var mapStateToProps = function mapStateToProps(state, _ref) {
var id = _ref.id,
manifestId = _ref.manifestId,
windowId = _ref.windowId;
return {
manifestDescription: getManifestDescription(state, {
companionWindowId: id,
manifestId: manifestId,
windowId: windowId
}),
manifestLabel: getManifestTitle(state, {
companionWindowId: id,
manifestId: manifestId,
windowId: windowId
}),
manifestMetadata: getManifestMetadata(state, {
companionWindowId: id,
manifestId: manifestId,
windowId: windowId
})
};
};
var enhance = compose(withTranslation(), connect(mapStateToProps), withPlugins('ManifestInfo'));
export default enhance(ManifestInfo);