2019-05-18 19:31:33 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { WebView } from 'react-native-webview';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
|
|
|
import { DrawerButton } from '../../containers/HeaderButton';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../../selectors/login';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2019-05-18 19:31:33 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class AdminPanelView extends React.Component {
|
2020-06-15 14:00:46 +00:00
|
|
|
static navigationOptions = ({ navigation, isMasterDetail }) => ({
|
|
|
|
headerLeft: isMasterDetail ? undefined : () => <DrawerButton navigation={navigation} />,
|
2019-05-18 19:31:33 +00:00
|
|
|
title: I18n.t('Admin_Panel')
|
|
|
|
})
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
baseUrl: PropTypes.string,
|
2020-02-11 14:09:14 +00:00
|
|
|
token: PropTypes.string,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string
|
2019-05-18 19:31:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-02-11 14:09:14 +00:00
|
|
|
const { baseUrl, token, theme } = this.props;
|
2019-05-18 19:31:33 +00:00
|
|
|
if (!baseUrl) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
2020-06-15 14:00:46 +00:00
|
|
|
<SafeAreaView theme={theme}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<StatusBar theme={theme} />
|
2019-05-18 19:31:33 +00:00
|
|
|
<WebView
|
2020-07-22 19:41:36 +00:00
|
|
|
// https://github.com/react-native-community/react-native-webview/issues/1311
|
|
|
|
onMessage={() => {}}
|
2019-05-18 19:31:33 +00:00
|
|
|
source={{ uri: `${ baseUrl }/admin/info?layout=embedded` }}
|
2020-02-11 14:09:14 +00:00
|
|
|
injectedJavaScript={`Meteor.loginWithToken('${ token }', function() { })`}
|
2019-05-18 19:31:33 +00:00
|
|
|
/>
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2020-02-11 14:09:14 +00:00
|
|
|
baseUrl: state.server.server,
|
|
|
|
token: getUserSelector(state).token
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(AdminPanelView));
|