application-amicale/screens/PlanexScreen.js

86 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-08-06 19:18:45 +02:00
// @flow
import * as React from 'react';
2019-08-06 19:38:48 +02:00
import {Platform, View} from 'react-native';
import {Container, Right, Spinner} from 'native-base';
2019-08-06 19:18:45 +02:00
import CustomHeader from "../components/CustomHeader";
import WebView from "react-native-webview";
2019-08-06 19:38:48 +02:00
import Touchable from "react-native-platform-touchable";
import CustomMaterialIcon from "../components/CustomMaterialIcon";
import ThemeManager from "../utils/ThemeManager";
import BaseContainer from "../components/BaseContainer";
2019-08-06 19:18:45 +02:00
type Props = {
navigation: Object,
}
type State = {
isFinishedLoading: boolean
}
// const PLANEX_URL = 'http://planex.insa-toulouse.fr/';
// TODO use real url in prod
const PLANEX_URL = 'https://srv-falcon.etud.insa-toulouse.fr/~vergnet/planex/planex.insa-toulouse.fr.html';
2019-08-06 19:18:45 +02:00
/**
* Class defining the app's planex screen.
* This screen uses a webview to render the planex page
*/
export default class PlanningScreen extends React.Component<Props, State> {
state = {
isFinishedLoading: false,
};
2019-08-06 19:38:48 +02:00
webview: WebView;
getRefreshButton() {
return (
<Right>
<Touchable
style={{padding: 6}}
onPress={() => this.refreshWebview()}>
<CustomMaterialIcon
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
icon="refresh"/>
</Touchable>
</Right>
);
};
refreshWebview() {
this.setState({isFinishedLoading: false});
this.webview.reload();
}
2019-08-06 19:18:45 +02:00
render() {
const nav = this.props.navigation;
return (
<BaseContainer navigation={nav} headerTitle={'Planex'} headerRightMenu={this.getRefreshButton()}>
2019-08-06 19:18:45 +02:00
<WebView
2019-08-06 19:38:48 +02:00
ref={ref => (this.webview = ref)}
2019-08-06 19:18:45 +02:00
source={{uri: PLANEX_URL}}
2019-08-06 19:38:48 +02:00
style={{
width: '100%',
height: '100%',
2019-08-06 19:18:45 +02:00
}}
2019-08-06 19:38:48 +02:00
startInLoadingState={true}
renderLoading={() =>
<View style={{
backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor,
width: '100%',
height: '100%',
flex: 1,
alignItems: 'center',
justifyContent: 'center'
}}>
<Spinner/>
</View>
}
2019-08-06 19:18:45 +02:00
/>
</BaseContainer>
2019-08-06 19:18:45 +02:00
);
}
}