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.
63 lines (57 loc) • 1.72 kB
JavaScript
import { compose } from 'redux';
import { connect } from 'react-redux';
import { withTranslation } from 'react-i18next';
import { withStyles } from '@material-ui/core/styles';
import * as actions from '../state/actions';
import { withPlugins } from '../extend/withPlugins';
import { SearchPanel } from '../components/SearchPanel';
import { getManifestSearchService, getSearchQuery, getWindow } from '../state/selectors';
/** */
var mapStateToProps = function mapStateToProps(state, _ref) {
var id = _ref.id,
windowId = _ref.windowId;
return {
query: getSearchQuery(state, {
companionWindowId: id,
windowId: windowId
}),
searchService: getManifestSearchService(state, {
windowId: windowId
}),
suggestedSearches: getWindow(state, {
windowId: windowId
}).suggestedSearches
};
};
/** */
var mapDispatchToProps = function mapDispatchToProps(dispatch, props) {
return {
fetchSearch: function fetchSearch(searchId, query) {
return dispatch(actions.fetchSearch(props.windowId, props.id, searchId, query));
},
removeSearch: function removeSearch() {
return dispatch(actions.removeSearch(props.windowId, props.id));
}
};
};
/**
* Styles for withStyles HOC
*/
var styles = function styles(theme) {
return {
clearChip: {
marginLeft: theme.spacing(1)
},
inlineButton: {
'& span': {
lineHeight: '1.5em'
},
margin: theme.spacing(2),
padding: 0,
textAlign: 'inherit',
textTransform: 'none'
}
};
};
var enhance = compose(connect(mapStateToProps, mapDispatchToProps), withStyles(styles), withTranslation(), withPlugins('SearchPanel'));
export default enhance(SearchPanel);