forked from vergnet/application-amicale
112 lines
4.6 KiB
JavaScript
112 lines
4.6 KiB
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import ThemeManager from "../utils/ThemeManager";
|
|
import WebViewScreen from "../components/WebViewScreen";
|
|
import i18n from "i18n-js";
|
|
|
|
type Props = {
|
|
navigation: Object,
|
|
}
|
|
|
|
|
|
const PLANEX_URL = 'http://planex.insa-toulouse.fr/';
|
|
|
|
const CUSTOM_CSS_GENERAL = 'https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/custom_css/planex/customMobile2.css';
|
|
const CUSTOM_CSS_NIGHTMODE = 'https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/custom_css/planex/customDark2.css';
|
|
|
|
// // JS + JQuery functions used to remove alpha from events. Copy paste in browser console for quick testing
|
|
// // Remove alpha from given Jquery node
|
|
// function removeAlpha(node) {
|
|
// console.log(node);
|
|
// let bg = node.css("background-color");
|
|
// if (bg.match("^rgba")) {
|
|
// let a = bg.slice(5).split(',');
|
|
// let newBg ='rgb(' + a[0] + ',' + parseInt(a[1]) + ',' + parseInt(a[2]) + ')';
|
|
// node.css("background-color", newBg);
|
|
// }
|
|
// }
|
|
// // Observe for planning DOM changes
|
|
// let observer = new MutationObserver(function(mutations) {
|
|
// for (let i = 0; i < mutations.length; i++) {
|
|
// if (mutations[i]['addedNodes'].length > 0 && $(mutations[i]['addedNodes'][0]).hasClass("fc-event"))
|
|
// removeAlpha($(mutations[i]['addedNodes'][0]))
|
|
// }
|
|
// });
|
|
// observer.observe(document.querySelector(".fc-body"), {attributes: false, childList: true, characterData: false, subtree:true});
|
|
// // Run remove alpha a first time on whole planning. Useful when code injected after planning fully loaded.
|
|
// $(".fc-event-container .fc-event").each(function(index) {
|
|
// removeAlpha($(this));
|
|
// });
|
|
|
|
// Watch for changes in the calendar and call the remove alpha function
|
|
const OBSERVE_MUTATIONS_INJECTED =
|
|
'function removeAlpha(node) {\n' +
|
|
' console.log(node);\n' +
|
|
' let bg = node.css("background-color");\n' +
|
|
' if (bg.match("^rgba")) {\n' +
|
|
' let a = bg.slice(5).split(\',\');\n' +
|
|
' let newBg =\'rgb(\' + a[0] + \',\' + parseInt(a[1]) + \',\' + parseInt(a[2]) + \')\';\n' +
|
|
' node.css("background-color", newBg);\n' +
|
|
' }\n' +
|
|
'}' +
|
|
'let observer = new MutationObserver(function(mutations) {\n' +
|
|
' for (let i = 0; i < mutations.length; i++) {\n' +
|
|
' if (mutations[i][\'addedNodes\'].length > 0 && $(mutations[i][\'addedNodes\'][0]).hasClass("fc-event"))\n' +
|
|
' removeAlpha($(mutations[i][\'addedNodes\'][0]))\n' +
|
|
' }\n' +
|
|
'});\n' +
|
|
'observer.observe(document.querySelector(".fc-body"), {attributes: false, childList: true, characterData: false, subtree:true});\n' +
|
|
'$(".fc-event-container .fc-event").each(function(index) {\n' +
|
|
' removeAlpha($(this));\n' +
|
|
'});';
|
|
/**
|
|
* Class defining the app's planex screen.
|
|
* This screen uses a webview to render the planex page
|
|
*/
|
|
export default class PlanexScreen extends React.Component<Props> {
|
|
|
|
customInjectedJS: string;
|
|
|
|
constructor() {
|
|
super();
|
|
this.customInjectedJS =
|
|
'$(document).ready(function() {' +
|
|
OBSERVE_MUTATIONS_INJECTED +
|
|
'$("head").append(\'<meta name="viewport" content="width=device-width, initial-scale=1.0">\');' +
|
|
'$("head").append(\'<link rel="stylesheet" href="' + CUSTOM_CSS_GENERAL + '" type="text/css"/>\');';
|
|
|
|
if (ThemeManager.getNightMode())
|
|
this.customInjectedJS += '$("head").append(\'<link rel="stylesheet" href="' + CUSTOM_CSS_NIGHTMODE + '" type="text/css"/>\');';
|
|
|
|
this.customInjectedJS +=
|
|
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToLandscape" style="color: ' + ThemeManager.getCurrentThemeVariables().brandPrimary + '">' +
|
|
i18n.t("planexScreen.rotateToLandscape") + '</p>\');' +
|
|
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToPortrait" style="color: ' + ThemeManager.getCurrentThemeVariables().brandPrimary + '">' +
|
|
i18n.t("planexScreen.rotateToPortrait") + '</p>\');' +
|
|
'removeAlpha();' +
|
|
'});true;'; // Prevent crash on ios
|
|
|
|
}
|
|
|
|
render() {
|
|
const nav = this.props.navigation;
|
|
return (
|
|
<WebViewScreen
|
|
navigation={nav}
|
|
data={[
|
|
{
|
|
url: PLANEX_URL,
|
|
icon: '',
|
|
name: '',
|
|
customJS: this.customInjectedJS
|
|
},
|
|
]}
|
|
customInjectedJS={this.customInjectedJS}
|
|
headerTitle={'Planex'}
|
|
hasHeaderBackButton={false}
|
|
hasFooter={false}/>
|
|
);
|
|
}
|
|
}
|
|
|