// @flow import * as React from 'react'; import {Body, Container, Content, H1, H3, Left, ListItem, Right, Text, Thumbnail} from 'native-base'; import CustomHeader from "../../components/CustomHeader"; import {FlatList, Image, Platform, View} from "react-native"; import Touchable from 'react-native-platform-touchable'; import Menu, {MenuItem} from 'react-native-material-menu'; import i18n from "i18n-js"; import CustomMaterialIcon from "../../components/CustomMaterialIcon"; import ThemeManager from "../../utils/ThemeManager"; import {Modalize} from 'react-native-modalize'; const sortMode = { price: "0", name: '1', }; 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 < b.name) return -1; if (a.name > b.name) return 1; return 0; } function sortNameReverse(a, b) { if (a.name < b.name) return 1; if (a.name > b.name) return -1; return 0; } type Props = { navigation: Object } type State = { currentSortMode: string, isSortReversed: boolean, sortPriceIcon: React.Node, sortNameIcon: React.Node, modalCurrentDisplayItem: Object, currentlyDisplayedData: Array, }; /** * Class defining proximo's article list of a certain category. */ export default class ProximoListScreen extends React.Component { modalRef: { current: null | Modalize }; originalData: Array; navData = this.props.navigation.getParam('data', []); shouldFocusSearchBar = this.props.navigation.getParam('shouldFocusSearchBar', false); state = { currentlyDisplayedData: this.navData['data'].sort(sortPrice), currentSortMode: sortMode.price, isSortReversed: false, sortPriceIcon: '', sortNameIcon: '', modalCurrentDisplayItem: {}, }; sortMenuRef: Menu; onMenuRef: Function; onSearchStringChange: Function; onSelectSortModeName: Function; onSelectSortModePrice: Function; onSortMenuPress: Function; renderItem: Function; constructor(props: any) { super(props); this.modalRef = React.createRef(); this.originalData = this.navData['data']; this.onMenuRef = this.onMenuRef.bind(this); this.onSearchStringChange = this.onSearchStringChange.bind(this); this.onSelectSortModeName = this.onSelectSortModeName.bind(this); this.onSelectSortModePrice = this.onSelectSortModePrice.bind(this); this.onSortMenuPress = this.onSortMenuPress.bind(this); this.renderItem = this.renderItem.bind(this); } /** * Saves the reference to the sort menu for later use * * @param ref The menu reference */ onMenuRef(ref: Menu) { this.sortMenuRef = ref; }; /** * Sets the sort mode based on the one selected. * If the selected mode is the current one, reverse it. * * @param mode The string representing the mode */ sortModeSelected(mode: string) { let isReverse = this.state.isSortReversed; if (mode === this.state.currentSortMode) // reverse mode isReverse = !isReverse; // this.state not updating on this function cycle else isReverse = false; this.setSortMode(mode, isReverse); } /** * Set the current sort mode. * * @param mode The string representing the mode * @param isReverse Whether to use a reverse sort */ setSortMode(mode: string, isReverse: boolean) { this.setState({ currentSortMode: mode, isSortReversed: isReverse }); let data = this.state.currentlyDisplayedData; switch (mode) { case sortMode.price: if (isReverse) { data.sort(sortPriceReverse); } else { data.sort(sortPrice); } break; case sortMode.name: if (isReverse) { data.sort(sortNameReverse); } else { data.sort(sortName); } break; } this.setupSortIcons(mode, isReverse); this.sortMenuRef.hide(); } /** * Set the sort mode from state when components are ready */ componentDidMount() { this.setSortMode(this.state.currentSortMode, this.state.isSortReversed); } /** * get color depending on quantity available * * @param availableStock * @return */ getStockColor(availableStock: number) { let color: string; if (availableStock > 3) color = ThemeManager.getCurrentThemeVariables().brandSuccess; else if (availableStock > 0) color = ThemeManager.getCurrentThemeVariables().brandWarning; else color = ThemeManager.getCurrentThemeVariables().brandDanger; return color; } /** * Set the sort menu icon based on the given mode. * * @param mode The string representing the mode * @param isReverse Whether to use a reversed icon */ setupSortIcons(mode: string, isReverse: boolean) { const downSortIcon = ; const upSortIcon = ; switch (mode) { case sortMode.price: this.setState({sortNameIcon: ''}); if (isReverse) { this.setState({sortPriceIcon: upSortIcon}); } else { this.setState({sortPriceIcon: downSortIcon}); } break; case sortMode.name: this.setState({sortPriceIcon: ''}); if (isReverse) { this.setState({sortNameIcon: upSortIcon}); } else { this.setState({sortNameIcon: downSortIcon}); } break; } } 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) }) } getModalContent() { return (

{this.state.modalCurrentDisplayItem.name}

{this.state.modalCurrentDisplayItem.quantity + ' ' + i18n.t('proximoScreen.inStock')}

{this.state.modalCurrentDisplayItem.price}€

{this.state.modalCurrentDisplayItem.description}
); } onListItemPress(item: Object) { this.setState({ modalCurrentDisplayItem: item }); if (this.modalRef.current) { this.modalRef.current.open(); } } onSelectSortModeName() { this.sortModeSelected(sortMode.name); } onSelectSortModePrice() { this.sortModeSelected(sortMode.price); } onSortMenuPress() { this.sortMenuRef.show(); } getSortMenu() { return ( } > {this.state.sortNameIcon} {i18n.t('proximoScreen.sortName')} {this.state.sortPriceIcon} {i18n.t('proximoScreen.sortPrice')} ); } renderItem({item}: Object) { const onListItemPress = this.onListItemPress.bind(this, item); return ( {item.name} {item.quantity + ' ' + i18n.t('proximoScreen.inStock')} {item.price}€ ); } keyExtractor(item: Object) { return item.name + item.code; } render() { // console.log("rendering ProximoListScreen"); const nav = this.props.navigation; return ( {this.getModalContent()} ); } }