// @flow import * as React from 'react'; import WebDataManager from "../utils/WebDataManager"; import {Container, H3, Tab, TabHeading, Tabs, Text} from "native-base"; import CustomHeader from "./CustomHeader"; import {RefreshControl, SectionList, View} from "react-native"; import CustomMaterialIcon from "./CustomMaterialIcon"; import i18n from 'i18n-js'; import ThemeManager from "../utils/ThemeManager"; type Props = { navigation: Object, } type State = { refreshing: boolean, firstLoading: boolean, fetchedData: Object, machinesWatched: Array, }; export default class FetchedDataSectionList extends React.Component { webDataManager: WebDataManager; constructor(fetchUrl: string) { super(); this.webDataManager = new WebDataManager(fetchUrl); } state = { refreshing: false, firstLoading: true, fetchedData: {}, machinesWatched: [], }; getHeaderTranslation() { return "Header"; } getUpdateToastTranslations() { return ["whoa", "nah"]; } /** * Refresh the FetchedData on first screen load */ componentDidMount() { this._onRefresh(); } _onRefresh = () => { this.setState({refreshing: true}); this.webDataManager.readData().then((fetchedData) => { this.setState({ fetchedData: fetchedData, refreshing: false, firstLoading: false }); this.webDataManager.showUpdateToast(this.getUpdateToastTranslations()[0], this.getUpdateToastTranslations()[1]); }); }; getRenderItem(item: Object, section: Object, data: Object) { return ; } getRenderSectionHeader(title: String) { return ; } getEmptyRenderItem(text: string, icon: string) { return (

{text}

); } /** * Create the dataset to be used in the list from the data fetched * @param fetchedData {Object} * @return {Array} */ createDataset(fetchedData: Object): Array { return []; } createEmptyDataset() { return [ { title: '', data: [ { text: this.state.refreshing ? i18n.t('general.loading') : i18n.t('general.networkError'), icon: this.state.refreshing ? 'refresh' : 'access-point-network-off' } ], keyExtractor: (item: Object) => item.text, } ]; } hasTabs() { return false; } getSectionList(dataset: Array) { let isEmpty = dataset[0].data.length === 0; if (isEmpty) dataset = this.createEmptyDataset(); return ( } renderSectionHeader={({section: {title}}) => isEmpty ? : this.getRenderSectionHeader(title) } renderItem={({item, section}) => isEmpty ? this.getEmptyRenderItem(item.text, item.icon) : this.getRenderItem(item, section, dataset) } style={{minHeight: 300, width: '100%'}} contentContainerStyle={ isEmpty ? {flexGrow: 1, justifyContent: 'center', alignItems: 'center'} : {} } /> ); } getTabbedView(dataset: Array) { let tabbedView = []; for (let i = 0; i < dataset.length; i++) { tabbedView.push( {dataset[i].title} } key={dataset[i].title}> {this.getSectionList( [ { title: dataset[i].title, data: dataset[i].data, extraData: dataset[i].extraData, keyExtractor: dataset[i].keyExtractor } ] )} ); } return tabbedView; } render() { const nav = this.props.navigation; const dataset = this.createDataset(this.state.fetchedData); return ( {this.hasTabs() ? {this.getTabbedView(dataset)} : this.getSectionList(dataset) } ); } }