forked from vergnet/application-amicale
92 lines
3.3 KiB
JavaScript
92 lines
3.3 KiB
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import {Platform, View} from 'react-native';
|
|
import {Container, Spinner} from 'native-base';
|
|
import WebView from "react-native-webview";
|
|
import Touchable from "react-native-platform-touchable";
|
|
import CustomMaterialIcon from "../components/CustomMaterialIcon";
|
|
import ThemeManager from "../utils/ThemeManager";
|
|
import CustomHeader from "../components/CustomHeader";
|
|
import i18n from "i18n-js";
|
|
|
|
type Props = {
|
|
navigation: Object,
|
|
}
|
|
|
|
|
|
const RU_URL = 'http://m.insa-toulouse.fr/ru.html';
|
|
const CUSTOM_CSS_GENERAL = 'https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/custom_css/RU/customGeneral.css';
|
|
const CUSTOM_CSS_LIGHT = 'https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/custom_css/RU/customLight.css';
|
|
|
|
/**
|
|
* Class defining the app's planex screen.
|
|
* This screen uses a webview to render the planex page
|
|
*/
|
|
export default class SelfMenuScreen extends React.Component<Props> {
|
|
|
|
webview: WebView;
|
|
customInjectedJS: string;
|
|
|
|
constructor() {
|
|
super();
|
|
this.customInjectedJS =
|
|
'document.querySelector(\'head\').innerHTML += \'<meta name="viewport" content="width=device-width, initial-scale=1.0">\';' +
|
|
'document.querySelector(\'head\').innerHTML += \'<link rel="stylesheet" href="' + CUSTOM_CSS_GENERAL + '" type="text/css"/>\';';
|
|
if (!ThemeManager.getNightMode())
|
|
this.customInjectedJS += 'document.querySelector(\'head\').innerHTML += \'<link rel="stylesheet" href="' + CUSTOM_CSS_LIGHT + '" type="text/css"/>\';';
|
|
}
|
|
|
|
getRefreshButton() {
|
|
return (
|
|
<Touchable
|
|
style={{padding: 6}}
|
|
onPress={() => this.refreshWebview()}>
|
|
<CustomMaterialIcon
|
|
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
|
|
icon="refresh"/>
|
|
</Touchable>
|
|
);
|
|
};
|
|
|
|
refreshWebview() {
|
|
this.webview.reload();
|
|
}
|
|
|
|
render() {
|
|
const nav = this.props.navigation;
|
|
return (
|
|
<Container>
|
|
<CustomHeader navigation={nav} title={i18n.t('screens.menuSelf')} hasBackButton={true}
|
|
rightButton={this.getRefreshButton()}/>
|
|
<WebView
|
|
ref={ref => (this.webview = ref)}
|
|
source={{uri: RU_URL}}
|
|
style={{
|
|
width: '100%',
|
|
height: '100%',
|
|
}}
|
|
startInLoadingState={true}
|
|
injectedJavaScript={this.customInjectedJS}
|
|
javaScriptEnabled={true}
|
|
renderLoading={() =>
|
|
<View style={{
|
|
backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor,
|
|
position: 'absolute',
|
|
top: 0,
|
|
right: 0,
|
|
width: '100%',
|
|
height: '100%',
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
}}>
|
|
<Spinner/>
|
|
</View>
|
|
}
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
}
|
|
|