mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
bde74756d3
* feat: add desktop enable button component This component will be added to the experimental page. Users will then be able to initialize a desktop connection * feat: add desktop pairing page * feat: add desktop deep-linking shared lib * test: add initial entries to render helper Allow specifying initialEntries for MemoryRouter. This change will allow testing pages that use the useParam hook. * feat: add desktop error page Error page for any desktop pairing related issue * feat: add desktop routes to route component * feat: add enable desktop button to experimental tab * feat: add desktop icon when paired in dev mode * feat: disable ledger live control when desktop enabled * feat: register desktop error actions on ui init * fix: add missing code fencing * chore: remove enable desktop rpc middleware Now that we are adding the UI there's no need for this rpc middleware (as it was used to test desktop background code) * fix: display experimental tab for desktop
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { compose } from 'redux';
|
|
import {
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
getUnreadNotificationsCount,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(beta)
|
|
getShowBetaHeader,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} from '../../../selectors';
|
|
|
|
import * as actions from '../../../store/actions';
|
|
import AppHeader from './app-header.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { appState, metamask } = state;
|
|
const { networkDropdownOpen } = appState;
|
|
const {
|
|
selectedAddress,
|
|
isUnlocked,
|
|
isAccountMenuOpen,
|
|
///: BEGIN:ONLY_INCLUDE_IN(desktop)
|
|
desktopEnabled,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} = metamask;
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
const unreadNotificationsCount = getUnreadNotificationsCount(state);
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(beta)
|
|
const showBetaHeader = getShowBetaHeader(state);
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
return {
|
|
networkDropdownOpen,
|
|
selectedAddress,
|
|
isUnlocked,
|
|
isAccountMenuOpen,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
unreadNotificationsCount,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(beta)
|
|
showBetaHeader,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(desktop)
|
|
desktopEnabled,
|
|
///: END:ONLY_INCLUDE_IN
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
showNetworkDropdown: () => dispatch(actions.showNetworkDropdown()),
|
|
hideNetworkDropdown: () => dispatch(actions.hideNetworkDropdown()),
|
|
toggleAccountMenu: () => dispatch(actions.toggleAccountMenu()),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(AppHeader);
|