24 lines
724 B
JavaScript
24 lines
724 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { selectPreorderTag, selectClaimForUri, selectClaimIsMine } from 'redux/selectors/claims';
|
||
|
import ClaimTags from './view';
|
||
|
import { doOpenModal } from 'redux/actions/app';
|
||
|
import * as SETTINGS from 'constants/settings';
|
||
|
import { selectClientSetting } from 'redux/selectors/settings';
|
||
|
|
||
|
const select = (state, props) => {
|
||
|
const claim = selectClaimForUri(state, props.uri);
|
||
|
|
||
|
return {
|
||
|
preorderTag: selectPreorderTag(state, props.uri),
|
||
|
claimIsMine: selectClaimIsMine(state, claim),
|
||
|
claim,
|
||
|
preferredCurrency: selectClientSetting(state, SETTINGS.PREFERRED_CURRENCY),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
const perform = {
|
||
|
doOpenModal,
|
||
|
};
|
||
|
|
||
|
export default connect(select, perform)(ClaimTags);
|