// @flow import * as React from 'react'; import {FlatList, Image, ScrollView, View} from "react-native"; import i18n from "i18n-js"; import ThemeManager from "../../utils/ThemeManager"; import CustomModal from "../../components/CustomModal"; import {Avatar, IconButton, List, RadioButton, Searchbar, Subheading, Text, Title} from "react-native-paper"; function sortPrice(a, b) { return a.price - b.price; } function sortPriceReverse(a, b) { return b.price - a.price; } function sortName(a, b) { if (a.name.toLowerCase() < b.name.toLowerCase()) return -1; if (a.name.toLowerCase() > b.name.toLowerCase()) return 1; return 0; } function sortNameReverse(a, b) { if (a.name.toLowerCase() < b.name.toLowerCase()) return 1; if (a.name.toLowerCase() > b.name.toLowerCase()) return -1; return 0; } type Props = { navigation: Object, route: Object, } type State = { currentSortMode: number, modalCurrentDisplayItem: React.Node, currentlyDisplayedData: Array, }; /** * Class defining proximo's article list of a certain category. */ export default class ProximoListScreen extends React.Component { modalRef: Object; originalData: Array; shouldFocusSearchBar: boolean; onSearchStringChange: Function; onSortMenuPress: Function; renderItem: Function; onModalRef: Function; constructor(props: any) { super(props); this.originalData = this.props.route.params['data']['data']; this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar']; this.state = { currentlyDisplayedData: this.originalData, currentSortMode: 1, modalCurrentDisplayItem: , }; this.onSearchStringChange = this.onSearchStringChange.bind(this); this.onSortMenuPress = this.onSortMenuPress.bind(this); this.renderItem = this.renderItem.bind(this); this.onModalRef = this.onModalRef.bind(this); } /** * Set the current sort mode. * * @param mode The number representing the mode */ setSortMode(mode: number) { this.setState({ currentSortMode: mode, }); let data = this.state.currentlyDisplayedData; switch (mode) { case 1: data.sort(sortPrice); break; case 2: data.sort(sortPriceReverse); break; case 3: data.sort(sortName); break; case 4: data.sort(sortNameReverse); break; } if (this.modalRef && mode !== this.state.currentSortMode) { this.modalRef.close(); } } /** * Set the sort mode from state when components are ready */ componentDidMount() { const button = this.getSortMenu.bind(this); const title = this.getSearchBar.bind(this); this.props.navigation.setOptions({ headerRight: button, headerTitle: title, }); this.setSortMode(1); } getSearchBar() { return ( ); } /** * get color depending on quantity available * * @param availableStock * @return */ getStockColor(availableStock: number) { let color: string; if (availableStock > 3) color = ThemeManager.getCurrentThemeVariables().success; else if (availableStock > 0) color = ThemeManager.getCurrentThemeVariables().warning; else color = ThemeManager.getCurrentThemeVariables().danger; return color; } sanitizeString(str: string) { return str.toLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g, ""); } /** * Returns only the articles whose name contains str. Case and accents insensitive. * @param str * @returns {[]} */ filterData(str: string) { let filteredData = []; const testStr = this.sanitizeString(str); const articles = this.originalData; for (const article of articles) { const name = this.sanitizeString(article.name); if (name.includes(testStr)) { filteredData.push(article) } } return filteredData; } onSearchStringChange(str: string) { this.setState({ currentlyDisplayedData: this.filterData(str) }) } getModalItemContent(item: Object) { return ( {item.name} {item.quantity + ' ' + i18n.t('proximoScreen.inStock')} {item.price}€ {item.description} ); } getModalSortMenu() { return ( Sort Order this.setSortMode(value)} value={this.state.currentSortMode} > {i18n.t('proximoScreen.sortPrice')} {i18n.t('proximoScreen.sortPriceReverse')} {i18n.t('proximoScreen.sortName')} {i18n.t('proximoScreen.sortNameReverse')} ); } onListItemPress(item: Object) { this.setState({ modalCurrentDisplayItem: this.getModalItemContent(item) }); if (this.modalRef) { this.modalRef.open(); } } onSortMenuPress() { this.setState({ modalCurrentDisplayItem: this.getModalSortMenu() }); if (this.modalRef) { this.modalRef.open(); } } getSortMenu() { return ( ); } renderItem({item}: Object) { const onPress = this.onListItemPress.bind(this, item); return ( } right={() => {item.price}€ } /> ); } keyExtractor(item: Object) { return item.name + item.code; } onModalRef(ref: Object) { this.modalRef = ref; } render() { return ( {this.state.modalCurrentDisplayItem} ); } }