Chore: Migrate AdminPanelView to Typescript (#3377)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
parent
b59fa0f199
commit
93d734bfa9
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { WebView } from 'react-native-webview';
|
||||
import { connect } from 'react-redux';
|
||||
import { DrawerScreenProps } from '@react-navigation/drawer';
|
||||
|
||||
import I18n from '../../i18n';
|
||||
import StatusBar from '../../containers/StatusBar';
|
||||
|
@ -10,17 +10,22 @@ import { withTheme } from '../../theme';
|
|||
import { getUserSelector } from '../../selectors/login';
|
||||
import SafeAreaView from '../../containers/SafeAreaView';
|
||||
|
||||
class AdminPanelView extends React.Component {
|
||||
static navigationOptions = ({ navigation, isMasterDetail }) => ({
|
||||
interface IAdminPanelViewProps {
|
||||
baseUrl: string;
|
||||
token: string;
|
||||
}
|
||||
|
||||
interface INavigationOptions {
|
||||
navigation: DrawerScreenProps<any>;
|
||||
isMasterDetail: boolean;
|
||||
}
|
||||
|
||||
class AdminPanelView extends React.Component<IAdminPanelViewProps, any> {
|
||||
static navigationOptions = ({ navigation, isMasterDetail }: INavigationOptions) => ({
|
||||
headerLeft: isMasterDetail ? undefined : () => <HeaderButton.Drawer navigation={navigation} />,
|
||||
title: I18n.t('Admin_Panel')
|
||||
});
|
||||
|
||||
static propTypes = {
|
||||
baseUrl: PropTypes.string,
|
||||
token: PropTypes.string
|
||||
};
|
||||
|
||||
render() {
|
||||
const { baseUrl, token } = this.props;
|
||||
if (!baseUrl) {
|
||||
|
@ -40,7 +45,7 @@ class AdminPanelView extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
const mapStateToProps = state => ({
|
||||
const mapStateToProps = (state: any) => ({
|
||||
baseUrl: state.server.server,
|
||||
token: getUserSelector(state).token
|
||||
});
|
Loading…
Reference in New Issue