application-amicale/screens/Proximo/ProximoMainScreen.js

234 lines
7.5 KiB
JavaScript
Raw Normal View History

// @flow
import * as React from 'react';
import {Platform, View} from 'react-native'
2020-01-31 16:51:43 +01:00
import {Body, Left, ListItem, Right, Text} from 'native-base';
2019-06-27 10:17:51 +02:00
import i18n from "i18n-js";
import {MaterialCommunityIcons} from "@expo/vector-icons";
import ThemeManager from "../../utils/ThemeManager";
import Touchable from "react-native-platform-touchable";
import BaseContainer from "../../components/BaseContainer";
import WebSectionList from "../../components/WebSectionList";
2019-06-27 10:17:51 +02:00
const DATA_URL = "https://etud.insa-toulouse.fr/~proximo/data/stock-v2.json";
2019-06-27 10:17:51 +02:00
type Props = {
navigation: Object,
}
type State = {
fetchedData: Object,
}
2019-06-29 15:43:57 +02:00
/**
* Class defining the main proximo screen. This screen shows the different categories of articles
* offered by proximo.
*/
export default class ProximoMainScreen extends React.Component<Props, State> {
articles: Object;
2020-02-23 18:15:30 +01:00
onPressSearchBtn: Function;
onPressAboutBtn: Function;
getRenderItem: Function;
createDataset: Function;
2020-02-23 18:15:30 +01:00
constructor() {
super();
2020-02-11 01:05:24 +01:00
this.onPressSearchBtn = this.onPressSearchBtn.bind(this);
this.onPressAboutBtn = this.onPressAboutBtn.bind(this);
this.getRenderItem = this.getRenderItem.bind(this);
this.createDataset = this.createDataset.bind(this);
}
2020-01-31 16:51:43 +01:00
static sortFinalData(a: Object, b: Object) {
let str1 = a.type.name.toLowerCase();
let str2 = b.type.name.toLowerCase();
// Make 'All' category with id -1 stick to the top
if (a.type.id === -1)
return -1;
if (b.type.id === -1)
return 1;
// Sort others by name ascending
if (str1 < str2)
return -1;
if (str1 > str2)
return 1;
return 0;
2020-01-31 16:51:43 +01:00
}
getKeyExtractor(item: Object) {
2019-10-06 12:30:29 +02:00
return item !== undefined ? item.type['id'] : undefined;
}
createDataset(fetchedData: Object) {
return [
{
2019-09-16 18:54:50 +02:00
title: '',
data: this.generateData(fetchedData),
extraData: this.state,
keyExtractor: this.getKeyExtractor
}
];
}
2019-06-27 10:17:51 +02:00
2019-06-29 15:43:57 +02:00
/**
* Generate the data using types and FetchedData.
2019-06-29 15:43:57 +02:00
* This will group items under the same type.
*
* @param fetchedData The array of articles represented by objects
2019-06-29 15:43:57 +02:00
* @returns {Array} The formatted dataset
*/
generateData(fetchedData: Object) {
2019-06-27 10:17:51 +02:00
let finalData = [];
this.articles = undefined;
if (fetchedData.types !== undefined && fetchedData.articles !== undefined) {
let types = fetchedData.types;
this.articles = fetchedData.articles;
finalData.push({
type: {
id: -1,
name: i18n.t('proximoScreen.all'),
icon: 'star'
},
data: this.getAvailableArticles(this.articles, undefined)
});
for (let i = 0; i < types.length; i++) {
finalData.push({
type: types[i],
data: this.getAvailableArticles(this.articles, types[i])
});
2019-06-27 10:17:51 +02:00
}
}
2019-09-17 11:07:58 +02:00
finalData.sort(ProximoMainScreen.sortFinalData);
2019-06-27 10:17:51 +02:00
return finalData;
}
/**
* Get an array of available articles (in stock) of the given type
*
* @param articles The list of all articles
* @param type The type of articles to find (undefined for any type)
* @return {Array} The array of available articles
*/
getAvailableArticles(articles: Array<Object>, type: ?Object) {
let availableArticles = [];
for (let k = 0; k < articles.length; k++) {
if ((type !== undefined && type !== null && articles[k]['type'].includes(type['id'])
|| type === undefined)
&& parseInt(articles[k]['quantity']) > 0) {
availableArticles.push(articles[k]);
}
}
return availableArticles;
}
2020-02-11 01:05:24 +01:00
onPressSearchBtn() {
let searchScreenData = {
shouldFocusSearchBar: true,
data: {
type: {
id: "0",
name: i18n.t('proximoScreen.all'),
icon: 'star'
},
data: this.articles !== undefined ?
this.getAvailableArticles(this.articles, undefined) : []
},
};
2020-02-11 01:05:24 +01:00
this.props.navigation.navigate('ProximoListScreen', searchScreenData);
}
2020-02-11 01:05:24 +01:00
onPressAboutBtn() {
this.props.navigation.navigate('ProximoAboutScreen');
}
2020-02-11 01:05:24 +01:00
getRightButton() {
return (
<View
style={{
flexDirection: 'row'
}}>
<Touchable
style={{padding: 6}}
2020-02-11 01:05:24 +01:00
onPress={this.onPressSearchBtn}>
<MaterialCommunityIcons
name="magnify"
size={26}
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}/>
</Touchable>
<Touchable
style={{padding: 6}}
2020-02-11 01:05:24 +01:00
onPress={this.onPressAboutBtn}>
<MaterialCommunityIcons
name="information"
size={26}
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}/>
</Touchable>
</View>
);
}
getRenderItem({item}: Object) {
let dataToSend = {
shouldFocusSearchBar: false,
data: item,
};
const onPress = this.props.navigation.navigate.bind(this, 'ProximoListScreen', dataToSend);
if (item.data.length > 0) {
return (
<ListItem
button
thumbnail
onPress={onPress}
>
<Left>
<MaterialCommunityIcons
name={item.type.icon}
size={30}
color={ThemeManager.getCurrentThemeVariables().brandPrimary}
/>
</Left>
<Body>
<Text>
{item.type.name}
</Text>
<Text note>
{item.data.length} {item.data.length > 1 ? i18n.t('proximoScreen.articles') : i18n.t('proximoScreen.article')}
</Text>
</Body>
<Right>
<MaterialCommunityIcons
icon="chevron-right"
size={26}
color={ThemeManager.getCurrentThemeVariables().customMaterialIconColor}/>
</Right>
</ListItem>
);
} else
return <View/>;
}
render() {
const nav = this.props.navigation;
return (
<BaseContainer
navigation={nav}
headerTitle={i18n.t('screens.proximo')}
headerRightButton={this.getRightButton()}>
<WebSectionList
createDataset={this.createDataset}
navigation={nav}
refreshTime={0}
fetchUrl={DATA_URL}
renderItem={this.getRenderItem}
updateErrorText={i18n.t("homeScreen.listUpdateFail")}/>
</BaseContainer>
);
2019-06-27 10:17:51 +02:00
}
}