2019-06-29 13:37:21 +02:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import * as React from 'react';
|
2019-07-30 13:59:28 +02:00
|
|
|
import {Image, Linking, TouchableOpacity, View} from 'react-native';
|
2019-10-06 10:54:01 +02:00
|
|
|
import {Body, Button, Card, CardItem, Left, Right, Text, Thumbnail, H1, H3} from 'native-base';
|
2019-06-25 22:20:24 +02:00
|
|
|
import i18n from "i18n-js";
|
2019-07-25 17:52:16 +02:00
|
|
|
import CustomMaterialIcon from '../components/CustomMaterialIcon';
|
2019-07-26 14:14:01 +02:00
|
|
|
import FetchedDataSectionList from "../components/FetchedDataSectionList";
|
2019-07-30 13:59:28 +02:00
|
|
|
import Autolink from 'react-native-autolink';
|
2019-08-05 14:52:18 +02:00
|
|
|
import ThemeManager from "../utils/ThemeManager";
|
2019-10-06 10:54:01 +02:00
|
|
|
import PlatformTouchable from "react-native-platform-touchable";
|
2019-07-25 17:52:16 +02:00
|
|
|
|
|
|
|
const ICON_AMICALE = require('../assets/amicale.png');
|
2019-07-26 14:14:01 +02:00
|
|
|
const NAME_AMICALE = 'Amicale INSA Toulouse';
|
2019-10-06 10:54:01 +02:00
|
|
|
const DATA_URL = "https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/dashboard/dashboard_data.json";
|
|
|
|
|
|
|
|
const SECTIONS_ID = [
|
|
|
|
'dashboard',
|
|
|
|
'news_feed'
|
|
|
|
];
|
2019-07-28 12:40:35 +02:00
|
|
|
|
2019-07-25 17:52:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a link in the device's browser
|
|
|
|
* @param link The link to open
|
|
|
|
*/
|
|
|
|
function openWebLink(link) {
|
|
|
|
Linking.openURL(link).catch((err) => console.error('Error opening link', err));
|
|
|
|
}
|
|
|
|
|
2019-06-29 15:43:57 +02:00
|
|
|
/**
|
|
|
|
* Class defining the app's home screen
|
|
|
|
*/
|
2019-07-26 14:14:01 +02:00
|
|
|
export default class HomeScreen extends FetchedDataSectionList {
|
2019-07-25 17:52:16 +02:00
|
|
|
|
2019-07-30 20:40:17 +02:00
|
|
|
constructor() {
|
2019-07-31 19:11:30 +02:00
|
|
|
super(DATA_URL, 0);
|
2019-07-30 20:40:17 +02:00
|
|
|
}
|
|
|
|
|
2019-07-26 14:14:01 +02:00
|
|
|
getHeaderTranslation() {
|
|
|
|
return i18n.t("screens.home");
|
|
|
|
}
|
2019-07-25 17:52:16 +02:00
|
|
|
|
2019-07-31 14:34:38 +02:00
|
|
|
getUpdateToastTranslations() {
|
|
|
|
return [i18n.t("homeScreen.listUpdated"), i18n.t("homeScreen.listUpdateFail")];
|
2019-07-25 17:52:16 +02:00
|
|
|
}
|
|
|
|
|
2019-07-30 13:59:28 +02:00
|
|
|
getKeyExtractor(item: Object) {
|
2019-07-28 12:40:35 +02:00
|
|
|
return item !== undefined ? item.id : undefined;
|
2019-07-25 17:52:16 +02:00
|
|
|
}
|
|
|
|
|
2019-07-30 13:59:28 +02:00
|
|
|
createDataset(fetchedData: Object) {
|
2019-10-06 10:54:01 +02:00
|
|
|
let newsData = [];
|
|
|
|
let dashboardData = [];
|
|
|
|
if (fetchedData['news_feed'] !== undefined)
|
|
|
|
newsData = fetchedData['news_feed']['data'];
|
|
|
|
if (fetchedData['dashboard'] !== undefined)
|
|
|
|
dashboardData = this.generateDashboardDataset(fetchedData['dashboard']);
|
2019-07-26 14:14:01 +02:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
title: '',
|
2019-10-06 10:54:01 +02:00
|
|
|
data: dashboardData,
|
|
|
|
extraData: super.state,
|
|
|
|
keyExtractor: this.getKeyExtractor,
|
|
|
|
id: SECTIONS_ID[0]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'News Feed',
|
|
|
|
data: newsData,
|
2019-07-31 14:22:36 +02:00
|
|
|
extraData: super.state,
|
2019-10-06 10:54:01 +02:00
|
|
|
keyExtractor: this.getKeyExtractor,
|
|
|
|
id: SECTIONS_ID[1]
|
2019-07-25 17:52:16 +02:00
|
|
|
}
|
2019-07-26 14:14:01 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-10-06 10:54:01 +02:00
|
|
|
generateDashboardDataset(dashboardData: Object) {
|
|
|
|
let dataset = [];
|
|
|
|
for (let [key, value] of Object.entries(dashboardData)) {
|
|
|
|
dataset.push(
|
|
|
|
{
|
|
|
|
id: key,
|
|
|
|
data: value
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return dataset
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-26 14:14:01 +02:00
|
|
|
/**
|
|
|
|
* Converts a dateString using Unix Timestamp to a formatted date
|
|
|
|
* @param dateString {string} The Unix Timestamp representation of a date
|
|
|
|
* @return {string} The formatted output date
|
|
|
|
*/
|
|
|
|
static getFormattedDate(dateString: string) {
|
|
|
|
let date = new Date(Number.parseInt(dateString) * 1000);
|
|
|
|
return date.toLocaleString();
|
|
|
|
}
|
2019-07-25 17:52:16 +02:00
|
|
|
|
2019-10-06 10:54:01 +02:00
|
|
|
getRenderSectionHeader(title: string) {
|
|
|
|
if (title === '') {
|
|
|
|
return <View/>;
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<View style={{
|
|
|
|
backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor
|
|
|
|
}}>
|
|
|
|
<H1 style={{
|
|
|
|
marginLeft: 'auto',
|
|
|
|
marginRight: 'auto',
|
|
|
|
marginTop: 10,
|
|
|
|
marginBottom: 10
|
|
|
|
}}>{title}</H1>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getDashboardItemData(item: Object) {
|
|
|
|
let icon = '';
|
|
|
|
let title = '';
|
|
|
|
let subtitle = '';
|
|
|
|
let clickAction;
|
|
|
|
switch (item['id']) {
|
|
|
|
case 'today_events':
|
|
|
|
icon = 'calendar-range';
|
|
|
|
title = 'Today\s events';
|
|
|
|
if (item['data'].length === 0)
|
|
|
|
subtitle = 'Pas d\'event ajd';
|
|
|
|
else
|
|
|
|
subtitle = item['data'].length + ' events ajd';
|
|
|
|
clickAction = () => this.props.navigation.navigate('Planning');
|
|
|
|
break;
|
|
|
|
case 'proximo_articles':
|
|
|
|
icon = 'shopping';
|
|
|
|
title = 'Proximo';
|
|
|
|
subtitle = item['data'] + ' articles disponibles';
|
|
|
|
clickAction = () => this.props.navigation.navigate('Proximo');
|
|
|
|
break;
|
|
|
|
case 'available_machines':
|
|
|
|
icon = 'washing-machine';
|
|
|
|
title = 'Machines disponibles';
|
|
|
|
subtitle = item['data']['dryers'] + ' dryers and ' + item['data']['washers'] + ' washers.';
|
|
|
|
clickAction = () => this.props.navigation.navigate('Proxiwash');
|
|
|
|
break;
|
|
|
|
case 'today_menu':
|
|
|
|
icon = 'silverware-fork-knife';
|
|
|
|
title = 'Menu du jour';
|
|
|
|
if (item['data'].length === 0)
|
|
|
|
subtitle = 'non disponible';
|
|
|
|
else
|
|
|
|
subtitle = 'Click here to show the menu';
|
|
|
|
clickAction = () => this.props.navigation.navigate('SelfMenuScreen');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
icon: icon,
|
|
|
|
title: title,
|
|
|
|
subtitle: subtitle,
|
|
|
|
clickAction: clickAction
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-30 13:59:28 +02:00
|
|
|
getRenderItem(item: Object, section: Object, data: Object) {
|
2019-10-06 10:54:01 +02:00
|
|
|
if (section['id'] === SECTIONS_ID[0]) {
|
|
|
|
let itemData = this.getDashboardItemData(item);
|
|
|
|
return (
|
|
|
|
<Card style={{
|
|
|
|
flex: 0,
|
|
|
|
marginLeft: 10,
|
|
|
|
marginRight: 10
|
|
|
|
}}>
|
|
|
|
<PlatformTouchable
|
|
|
|
onPress={itemData['clickAction']}
|
|
|
|
>
|
|
|
|
<CardItem>
|
|
|
|
<Left>
|
|
|
|
<CustomMaterialIcon
|
|
|
|
icon={itemData['icon']}
|
|
|
|
fontSize={40}
|
|
|
|
width={40}/>
|
|
|
|
<Body>
|
|
|
|
<H3>{itemData['title']}</H3>
|
|
|
|
<Text>{itemData['subtitle']}</Text>
|
|
|
|
</Body>
|
|
|
|
</Left>
|
|
|
|
</CardItem>
|
|
|
|
</PlatformTouchable>
|
|
|
|
</Card>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<Card style={{
|
|
|
|
flex: 0,
|
|
|
|
marginLeft: 10,
|
|
|
|
marginRight: 10
|
|
|
|
}}>
|
|
|
|
<CardItem>
|
|
|
|
<Left>
|
|
|
|
<Thumbnail source={ICON_AMICALE} square/>
|
|
|
|
<Body>
|
|
|
|
<Text>{NAME_AMICALE}</Text>
|
|
|
|
<Text note>{HomeScreen.getFormattedDate(item.created_time)}</Text>
|
|
|
|
</Body>
|
|
|
|
</Left>
|
|
|
|
</CardItem>
|
|
|
|
<CardItem>
|
2019-07-25 17:52:16 +02:00
|
|
|
<Body>
|
2019-10-06 10:54:01 +02:00
|
|
|
{item.full_picture !== '' && item.full_picture !== undefined ?
|
|
|
|
<TouchableOpacity onPress={() => openWebLink(item.full_picture)}
|
|
|
|
style={{width: '100%', height: 250}}>
|
|
|
|
<Image source={{uri: item.full_picture}}
|
|
|
|
style={{flex: 1, resizeMode: "contain"}}
|
|
|
|
resizeMode="contain"
|
|
|
|
/>
|
|
|
|
</TouchableOpacity>
|
|
|
|
: <View/>}
|
|
|
|
{item.message !== undefined ?
|
|
|
|
<Autolink
|
|
|
|
text={item.message}
|
|
|
|
hashtag="facebook"
|
|
|
|
style={{color: ThemeManager.getCurrentThemeVariables().textColor}}
|
|
|
|
/> : <View/>
|
|
|
|
}
|
2019-07-25 17:52:16 +02:00
|
|
|
</Body>
|
2019-10-06 10:54:01 +02:00
|
|
|
</CardItem>
|
|
|
|
<CardItem>
|
|
|
|
<Left>
|
|
|
|
<Button transparent
|
|
|
|
onPress={() => openWebLink(item.permalink_url)}>
|
|
|
|
<CustomMaterialIcon
|
|
|
|
icon="facebook"
|
|
|
|
color="#57aeff"
|
|
|
|
width={20}/>
|
|
|
|
<Text>En savoir plus</Text>
|
|
|
|
</Button>
|
|
|
|
</Left>
|
|
|
|
</CardItem>
|
|
|
|
</Card>
|
|
|
|
);
|
|
|
|
}
|
2019-07-25 17:52:16 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 22:20:24 +02:00
|
|
|
}
|