forked from vergnet/application-amicale
122 lines
3.2 KiB
JavaScript
122 lines
3.2 KiB
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import WebDataManager from "../utils/WebDataManager";
|
|
import {Container, Content, H2} from "native-base";
|
|
import CustomHeader from "./CustomHeader";
|
|
import {SectionList, RefreshControl, View} from "react-native";
|
|
|
|
type Props = {
|
|
navigation: Object,
|
|
}
|
|
|
|
type State = {
|
|
refreshing: boolean,
|
|
firstLoading: boolean,
|
|
fetchedData: Object,
|
|
machinesWatched : Array<Object>
|
|
};
|
|
|
|
export default class FetchedDataSectionList extends React.Component<Props, State> {
|
|
|
|
webDataManager : WebDataManager;
|
|
|
|
constructor() {
|
|
super();
|
|
this.webDataManager = new WebDataManager(this.getFetchUrl());
|
|
}
|
|
|
|
state = {
|
|
refreshing: false,
|
|
firstLoading: true,
|
|
fetchedData: {},
|
|
machinesWatched : [],
|
|
};
|
|
|
|
getFetchUrl() {
|
|
return "";
|
|
}
|
|
|
|
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 <View />;
|
|
}
|
|
|
|
getRenderSectionHeader(title: String) {
|
|
return <View />;
|
|
}
|
|
|
|
/**
|
|
* Create the dataset to be used in the list from the data fetched
|
|
* @param fetchedData {Object}
|
|
* @return {Array}
|
|
*/
|
|
createDataset(fetchedData : Object) : Array<Object> {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* What item field should be used as a key in the list
|
|
* @param item {Object}
|
|
* @return {*}
|
|
*/
|
|
getKeyExtractor(item : Object) {
|
|
return item.id;
|
|
}
|
|
|
|
render() {
|
|
const nav = this.props.navigation;
|
|
const dataset = this.createDataset(this.state.fetchedData);
|
|
return (
|
|
<Container>
|
|
<CustomHeader navigation={nav} title={this.getHeaderTranslation()}/>
|
|
<Content padder>
|
|
<SectionList
|
|
sections={dataset}
|
|
keyExtractor={(item) => this.getKeyExtractor(item)}
|
|
refreshControl={
|
|
<RefreshControl
|
|
refreshing={this.state.refreshing}
|
|
onRefresh={this._onRefresh}
|
|
/>
|
|
}
|
|
renderSectionHeader={({section: {title}}) =>
|
|
this.getRenderSectionHeader(title)
|
|
}
|
|
renderItem={({item, section}) =>
|
|
this.getRenderItem(item, section, dataset)
|
|
}
|
|
style={{minHeight: 300, width: '100%'}}
|
|
/>
|
|
</Content>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
}
|