20 lines
753 B
JavaScript
20 lines
753 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doNavigate, doHistoryBack, doHistoryForward } from 'redux/actions/navigation';
|
|
import { selectIsBackDisabled, selectIsForwardDisabled, selectNavLinks } from 'lbry-redux';
|
|
import { selectNotifications } from 'redux/selectors/subscriptions';
|
|
import SideBar from './view';
|
|
|
|
const select = state => ({
|
|
navLinks: selectNavLinks(state),
|
|
isBackDisabled: selectIsBackDisabled(state),
|
|
isForwardDisabled: selectIsForwardDisabled(state),
|
|
notifications: selectNotifications(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
navigate: path => dispatch(doNavigate(path)),
|
|
back: () => dispatch(doHistoryBack()),
|
|
forward: () => dispatch(doHistoryForward()),
|
|
});
|
|
|
|
export default connect(select, perform)(SideBar);
|