mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
86 lines
2.1 KiB
JavaScript
86 lines
2.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { BackHandler } from 'react-native';
|
|
import { WebView } from 'react-native-webview';
|
|
|
|
import { BlueLoading } from '../../BlueComponents';
|
|
import navigationStyle from '../../components/navigationStyle';
|
|
|
|
export default class Marketplace extends Component {
|
|
webview = React.createRef();
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
if (!props.route.params.fromWallet) throw new Error('Invalid param');
|
|
const fromWallet = props.route.params.fromWallet;
|
|
|
|
this.state = {
|
|
url: '',
|
|
fromWallet,
|
|
canGoBack: false,
|
|
};
|
|
BackHandler.addEventListener('hardwareBackPress', this.handleBackButton);
|
|
}
|
|
|
|
async componentDidMount() {
|
|
let address;
|
|
if (this.state.fromWallet && this.state.fromWallet.getAddressAsync) {
|
|
address = await this.state.fromWallet.getAddressAsync();
|
|
} else if (this.state.fromWallet && this.state.fromWallet.getAddress) {
|
|
address = this.state.fromWallet.getAddress();
|
|
}
|
|
|
|
const url = 'https://bluewallet.io/marketplace-btc/?address=' + address; // default
|
|
|
|
this.setState({
|
|
url,
|
|
});
|
|
}
|
|
|
|
componentWillUnmount = () => {
|
|
BackHandler.removeEventListener('hardwareBackPress', this.handleBackButton);
|
|
};
|
|
|
|
handleBackButton = () => {
|
|
this.state.canGoBack ? this.webview.current.goBack() : this.props.navigation.goBack(null);
|
|
return true;
|
|
};
|
|
|
|
_onNavigationStateChange = webViewState => {
|
|
this.setState({ canGoBack: webViewState.canGoBack });
|
|
};
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return <BlueLoading />;
|
|
}
|
|
|
|
return (
|
|
<WebView
|
|
testID="MarketplaceWebView"
|
|
ref={this.webview}
|
|
onNavigationStateChange={this._onNavigationStateChange}
|
|
source={{
|
|
uri: this.state.url,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
Marketplace.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
navigate: PropTypes.func,
|
|
goBack: PropTypes.func,
|
|
}),
|
|
route: PropTypes.shape({
|
|
params: PropTypes.object,
|
|
}),
|
|
};
|
|
|
|
Marketplace.navigationOptions = navigationStyle({
|
|
closeButton: true,
|
|
title: 'Marketplace',
|
|
headerLeft: null,
|
|
});
|