application-amicale/screens/Proximo/ProximoListScreen.js

348 lines
9.7 KiB
JavaScript
Raw Normal View History

// @flow
import * as React from 'react';
import {FlatList, Image, Platform, ScrollView, View} from "react-native";
2019-06-27 10:17:51 +02:00
import i18n from "i18n-js";
2020-04-02 10:07:20 +02:00
import CustomModal from "../../components/Custom/CustomModal";
import {IconButton, RadioButton, Searchbar, Subheading, Text, Title, withTheme} from "react-native-paper";
import {stringMatchQuery} from "../../utils/Search";
import ProximoListItem from "../../components/Lists/ProximoListItem";
2019-06-27 10:17:51 +02:00
function sortPrice(a, b) {
return a.price - b.price;
}
function sortPriceReverse(a, b) {
return b.price - a.price;
}
function sortName(a, b) {
2020-03-07 22:31:08 +01:00
if (a.name.toLowerCase() < b.name.toLowerCase())
2019-06-27 10:17:51 +02:00
return -1;
2020-03-07 22:31:08 +01:00
if (a.name.toLowerCase() > b.name.toLowerCase())
2019-06-27 10:17:51 +02:00
return 1;
return 0;
}
function sortNameReverse(a, b) {
2020-03-07 22:31:08 +01:00
if (a.name.toLowerCase() < b.name.toLowerCase())
2019-06-27 10:17:51 +02:00
return 1;
2020-03-07 22:31:08 +01:00
if (a.name.toLowerCase() > b.name.toLowerCase())
2019-06-27 10:17:51 +02:00
return -1;
return 0;
}
type Props = {
navigation: Object,
route: Object,
}
2019-06-27 10:17:51 +02:00
type State = {
2020-03-07 22:31:08 +01:00
currentSortMode: number,
modalCurrentDisplayItem: React.Node,
currentSearchString: string,
};
2019-06-29 15:43:57 +02:00
/**
* Class defining proximo's article list of a certain category.
*/
class ProximoListScreen extends React.Component<Props, State> {
modalRef: Object;
listData: Array<Object>;
shouldFocusSearchBar: boolean;
colors: Object;
constructor(props) {
2020-01-31 16:51:43 +01:00
super(props);
this.listData = this.props.route.params['data']['data'];
this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar'];
this.state = {
currentSearchString: '',
2020-03-12 12:31:02 +01:00
currentSortMode: 3,
2020-03-08 14:29:57 +01:00
modalCurrentDisplayItem: null,
};
2020-02-23 18:15:30 +01:00
this.colors = props.theme.colors;
2020-01-31 16:51:43 +01:00
}
2020-03-08 14:29:57 +01:00
/**
2020-03-29 15:59:25 +02:00
* Creates the header content
2020-03-08 14:29:57 +01:00
*/
componentDidMount() {
this.props.navigation.setOptions({
headerRight: this.getSortMenuButton,
headerTitle: this.getSearchBar,
2020-03-10 21:26:14 +01:00
headerBackTitleVisible: false,
headerTitleContainerStyle: Platform.OS === 'ios' ?
{marginHorizontal: 0, width: '70%'} :
{marginHorizontal: 0, right: 50, left: 50},
2020-03-08 14:29:57 +01:00
});
}
2019-06-29 15:43:57 +02:00
/**
2020-03-29 15:59:25 +02:00
* Gets the header search bar
*
* @return {*}
*/
getSearchBar = () => {
2020-03-29 15:59:25 +02:00
return (
<Searchbar
placeholder={i18n.t('proximoScreen.search')}
onChangeText={this.onSearchStringChange}
/>
);
};
2020-03-29 15:59:25 +02:00
/**
* Gets the sort menu header button
*
* @return {*}
*/
getSortMenuButton = () => {
2020-03-29 15:59:25 +02:00
return (
<IconButton
icon="sort"
color={this.colors.text}
size={26}
onPress={this.onSortMenuPress}
/>
);
};
2020-03-29 15:59:25 +02:00
/**
* Callback used when clicking on the sort menu button.
* It will open the modal to show a sort selection
*/
onSortMenuPress = () => {
2020-03-29 15:59:25 +02:00
this.setState({
modalCurrentDisplayItem: this.getModalSortMenu()
});
if (this.modalRef) {
this.modalRef.open();
}
};
2020-03-29 15:59:25 +02:00
/**
* Sets the current sort mode.
2019-06-29 15:43:57 +02:00
*
2020-03-07 22:31:08 +01:00
* @param mode The number representing the mode
2019-06-29 15:43:57 +02:00
*/
2020-03-07 22:31:08 +01:00
setSortMode(mode: number) {
2019-06-27 10:17:51 +02:00
this.setState({
currentSortMode: mode,
});
switch (mode) {
2020-03-07 22:31:08 +01:00
case 1:
this.listData.sort(sortPrice);
2020-03-07 22:31:08 +01:00
break;
case 2:
this.listData.sort(sortPriceReverse);
2019-06-27 10:17:51 +02:00
break;
2020-03-07 22:31:08 +01:00
case 3:
this.listData.sort(sortName);
2019-06-27 10:17:51 +02:00
break;
2020-03-07 22:31:08 +01:00
case 4:
this.listData.sort(sortNameReverse);
2020-03-07 22:31:08 +01:00
break;
}
if (this.modalRef && mode !== this.state.currentSortMode) {
this.modalRef.close();
2019-06-27 10:17:51 +02:00
}
}
/**
2020-03-29 15:59:25 +02:00
* Gets a color depending on the quantity available
*
2020-03-29 15:59:25 +02:00
* @param availableStock The quantity available
* @return
*/
getStockColor(availableStock: number) {
let color: string;
if (availableStock > 3)
color = this.colors.success;
else if (availableStock > 0)
color = this.colors.warning;
else
color = this.colors.danger;
return color;
}
2020-03-29 15:59:25 +02:00
/**
* Callback used when the search changes
*
* @param str The new search string
*/
onSearchStringChange = (str: string) => {
this.setState({currentSearchString: str})
};
2020-03-29 15:59:25 +02:00
/**
* Gets the modal content depending on the given article
*
* @param item The article to display
* @return {*}
*/
2020-03-07 22:31:08 +01:00
getModalItemContent(item: Object) {
return (
<View style={{
flex: 1,
padding: 20
}}>
2020-03-07 22:31:08 +01:00
<Title>{item.name}</Title>
<View style={{
flexDirection: 'row',
width: '100%',
marginTop: 10,
}}>
<Subheading style={{
2020-03-07 22:31:08 +01:00
color: this.getStockColor(parseInt(item.quantity)),
}}>
2020-03-07 22:31:08 +01:00
{item.quantity + ' ' + i18n.t('proximoScreen.inStock')}
</Subheading>
2020-03-07 22:31:08 +01:00
<Subheading style={{marginLeft: 'auto'}}>{item.price}</Subheading>
</View>
<ScrollView>
<View style={{width: '100%', height: 150, marginTop: 20, marginBottom: 20}}>
<Image style={{flex: 1, resizeMode: "contain"}}
2020-03-07 22:31:08 +01:00
source={{uri: item.image}}/>
</View>
2020-03-07 22:31:08 +01:00
<Text>{item.description}</Text>
</ScrollView>
</View>
);
}
2020-03-29 15:59:25 +02:00
/**
* Gets the modal content to display a sort menu
*
* @return {*}
*/
2020-03-07 22:31:08 +01:00
getModalSortMenu() {
return (
<View style={{
flex: 1,
padding: 20
}}>
<Title style={{marginBottom: 10}}>{i18n.t('proximoScreen.sortOrder')}</Title>
2020-03-07 22:31:08 +01:00
<RadioButton.Group
onValueChange={value => this.setSortMode(value)}
value={this.state.currentSortMode}
>
<View style={{
flexDirection: 'row',
justifyContent: 'flex-start',
2020-03-07 22:31:08 +01:00
alignItems: 'center'
}}>
<RadioButton value={1}/>
<Text>{i18n.t('proximoScreen.sortPrice')}</Text>
2020-03-07 22:31:08 +01:00
</View>
<View style={{
flexDirection: 'row',
justifyContent: 'flex-start',
2020-03-07 22:31:08 +01:00
alignItems: 'center'
}}>
<RadioButton value={2}/>
<Text>{i18n.t('proximoScreen.sortPriceReverse')}</Text>
2020-03-07 22:31:08 +01:00
</View>
<View style={{
flexDirection: 'row',
justifyContent: 'flex-start',
2020-03-07 22:31:08 +01:00
alignItems: 'center'
}}>
<RadioButton value={3}/>
<Text>{i18n.t('proximoScreen.sortName')}</Text>
2020-03-07 22:31:08 +01:00
</View>
<View style={{
flexDirection: 'row',
justifyContent: 'flex-start',
2020-03-07 22:31:08 +01:00
alignItems: 'center'
}}>
<RadioButton value={4}/>
<Text>{i18n.t('proximoScreen.sortNameReverse')}</Text>
2020-03-07 22:31:08 +01:00
</View>
</RadioButton.Group>
</View>
);
}
2020-03-29 15:59:25 +02:00
/**
* Callback used when clicking an article in the list.
* It opens the modal to show detailed information about the article
*
* @param item The article pressed
*/
onListItemPress(item: Object) {
this.setState({
2020-03-07 22:31:08 +01:00
modalCurrentDisplayItem: this.getModalItemContent(item)
});
if (this.modalRef) {
this.modalRef.open();
}
}
2019-09-12 15:01:07 +02:00
2020-03-29 15:59:25 +02:00
/**
* Gets a render item for the given article
*
* @param item The article to render
* @return {*}
*/
renderItem = ({item}: Object) => {
if (stringMatchQuery(item.name, this.state.currentSearchString)) {
const onPress = this.onListItemPress.bind(this, item);
const color = this.getStockColor(parseInt(item.quantity));
return (
<ProximoListItem
item={item}
onPress={onPress}
color={color}
/>
);
} else
return null;
};
2020-02-11 01:05:24 +01:00
2020-03-29 15:59:25 +02:00
/**
* Extracts a key for the given article
*
* @param item The article to extract the key from
* @return {*} The extracted key
*/
2020-02-23 18:15:30 +01:00
keyExtractor(item: Object) {
2020-02-11 01:05:24 +01:00
return item.name + item.code;
}
2020-03-29 15:59:25 +02:00
/**
* Callback used when receiving the modal ref
*
* @param ref
*/
onModalRef = (ref: Object) => {
this.modalRef = ref;
};
2019-06-27 10:17:51 +02:00
render() {
return (
<View style={{
height: '100%'
}}>
<CustomModal onRef={this.onModalRef}>
2020-03-07 22:31:08 +01:00
{this.state.modalCurrentDisplayItem}
</CustomModal>
{/*$FlowFixMe*/}
<FlatList
data={this.listData}
extraData={this.state.currentSearchString + this.state.currentSortMode}
2020-02-11 01:05:24 +01:00
keyExtractor={this.keyExtractor}
renderItem={this.renderItem}
/>
2020-03-06 09:12:56 +01:00
</View>
2019-06-27 10:17:51 +02:00
);
}
}
export default withTheme(ProximoListScreen);