mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
79 lines
2.0 KiB
JavaScript
79 lines
2.0 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { BackHandler } from 'react-native';
|
|
import { WebView } from 'react-native-webview';
|
|
import { BlueLoading, BlueNavigationStyle } from '../../BlueComponents';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default class Marketplace extends Component {
|
|
static navigationOptions = ({ navigation }) => ({
|
|
...BlueNavigationStyle(navigation, true),
|
|
title: 'Marketplace',
|
|
headerLeft: null,
|
|
});
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
if (!props.navigation.getParam('fromWallet')) throw new Error('Invalid param');
|
|
let fromWallet = props.navigation.getParam('fromWallet');
|
|
|
|
this.state = {
|
|
url: '',
|
|
fromWallet,
|
|
canGoBack: false,
|
|
};
|
|
BackHandler.addEventListener('hardwareBackPress', this.handleBackButton.bind(this));
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
let url = 'https://bluewallet.io/marketplace-btc/?address=' + address; // default
|
|
|
|
this.setState({
|
|
url,
|
|
});
|
|
}
|
|
|
|
componentWillUnmount = () => {
|
|
BackHandler.removeEventListener('hardwareBackPress', this.handleBackButton.bind(this));
|
|
};
|
|
|
|
handleBackButton() {
|
|
this.state.canGoBack ? this.webview.goBack() : this.props.navigation.goBack(null);
|
|
return true;
|
|
}
|
|
|
|
_onNavigationStateChange = webViewState => {
|
|
this.setState({ canGoBack: webViewState.canGoBack });
|
|
};
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return <BlueLoading />;
|
|
}
|
|
|
|
return (
|
|
<WebView
|
|
ref={ref => (this.webview = ref)}
|
|
onNavigationStateChange={this._onNavigationStateChange}
|
|
source={{
|
|
uri: this.state.url,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
Marketplace.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
getParam: PropTypes.func,
|
|
navigate: PropTypes.func,
|
|
goBack: PropTypes.func,
|
|
}),
|
|
};
|