mirror of
https://github.com/timepill/timepill-app.git
synced 2025-04-30 09:59:31 +08:00
268 lines
No EOL
8 KiB
JavaScript
268 lines
No EOL
8 KiB
JavaScript
import React, {Component} from 'react';
|
|
import {
|
|
InteractionManager,
|
|
ActivityIndicator,
|
|
StyleSheet,
|
|
FlatList,
|
|
Text,
|
|
View,
|
|
Alert
|
|
} from 'react-native';
|
|
import {Navigation} from 'react-native-navigation';
|
|
import {Divider} from "react-native-elements";
|
|
import ActionSheet from 'react-native-actionsheet-api';
|
|
|
|
import Color from '../../style/color';
|
|
import Msg from '../../util/msg';
|
|
import Api from '../../util/api';
|
|
|
|
import Touchable from '../touchable';
|
|
import ListFooter from '../listFooter';
|
|
import DiaryBrief from './diaryBrief';
|
|
|
|
|
|
export default class DiaryList extends Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.editable = props.editable || false;
|
|
this.dataSource = props.dataSource;
|
|
|
|
this.state = {
|
|
diaries: [],
|
|
|
|
refreshing: false,
|
|
refreshFailed: false,
|
|
|
|
hasMore: true,
|
|
loadingMore: false,
|
|
loadFailed: false
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
InteractionManager.runAfterInteractions(() => {
|
|
this.refresh();
|
|
});
|
|
}
|
|
|
|
_onUserIconPress(diary) {
|
|
Navigation.push(this.props.componentId, {
|
|
component: {
|
|
name: 'User',
|
|
options: {
|
|
bottomTabs: {
|
|
visible: false,
|
|
|
|
// hide bottom tab for android
|
|
drawBehind: true,
|
|
animate: true
|
|
}
|
|
},
|
|
passProps: {
|
|
user: diary.user
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
_onDiaryPress(diary) {
|
|
Navigation.push(this.props.componentId, {
|
|
component: {
|
|
name: 'DiaryDetail',
|
|
options: {
|
|
bottomTabs: {
|
|
visible: false,
|
|
|
|
// hide bottom tab for android
|
|
drawBehind: true,
|
|
animate: true
|
|
}
|
|
},
|
|
passProps: {
|
|
diary: diary,
|
|
user: diary.user,
|
|
|
|
editable: this.editable,
|
|
onDiaryAction: this._onDiaryAction.bind(this)
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
_onDiaryAction(diary) {
|
|
ActionSheet.showActionSheetWithOptions({
|
|
options:['修改','删除', '取消'],
|
|
cancelButtonIndex: 2,
|
|
destructiveButtonIndex: 1
|
|
|
|
}, (index) => {
|
|
if(index === 0) {
|
|
|
|
|
|
} else if (index === 1) {
|
|
Alert.alert('提示', '确认删除日记?', [
|
|
{text: '删除', style: 'destructive', onPress: () => {
|
|
Api.deleteDiary(diary.id)
|
|
.then(() => {
|
|
let filterDiaries = this.state.diaries.filter((it) => it.id !== diary.id);
|
|
this.setState({
|
|
diaries: filterDiaries
|
|
});
|
|
|
|
Msg.showMsg('日记已删除');
|
|
})
|
|
.catch(e => {
|
|
Msg.showMsg('日记删除失败');
|
|
})
|
|
.done();
|
|
}},
|
|
{text: '取消', onPress: () => {}},
|
|
]);
|
|
}
|
|
});
|
|
}
|
|
|
|
async refresh() {
|
|
if (this.state.refreshing) {
|
|
return;
|
|
}
|
|
|
|
this.setState({refreshing: true, refreshFailed: false});
|
|
this.dataSource.refresh()
|
|
.then(result => {
|
|
console.log('diary list result:', result);
|
|
if(!result) {
|
|
throw {
|
|
message: 'refresh diary no result'
|
|
}
|
|
|
|
} else {
|
|
let diaries = this.state.diaries;
|
|
let newDiaries = result.list;
|
|
if (diaries.length > 0 && newDiaries.length > 0
|
|
&& diaries[0].id === newDiaries[0].id) {
|
|
|
|
Msg.showMsg('没有新内容');
|
|
}
|
|
|
|
this.setState({
|
|
diaries: result.list ? result.list : [],
|
|
hasMore: result.more,
|
|
refreshFailed: false
|
|
});
|
|
}
|
|
|
|
}).catch(e => {
|
|
this.setState({
|
|
refreshFailed: true
|
|
});
|
|
|
|
}).done(() => {
|
|
this.setState({
|
|
refreshing: false
|
|
});
|
|
});
|
|
}
|
|
|
|
async loadMore() {
|
|
if (this.state.loadingMore) {
|
|
return;
|
|
}
|
|
|
|
this.setState({loadingMore: true, loadFailed: false});
|
|
this.dataSource.refresh(true)
|
|
.then(result => {
|
|
if(!result) {
|
|
throw {
|
|
message: 'loadMore diary no result'
|
|
}
|
|
|
|
} else {
|
|
this.setState({
|
|
diaries: result.list ? result.list : [],
|
|
hasMore: result.more,
|
|
loadFailed: false
|
|
});
|
|
}
|
|
|
|
}).catch(e => {
|
|
this.setState({
|
|
hasMore: false,
|
|
loadFailed: true
|
|
});
|
|
|
|
}).done(() => {
|
|
this.setState({
|
|
loadingMore: false
|
|
});
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<View style={localStyle.container}>
|
|
<FlatList style={localStyle.list}
|
|
|
|
data={this.state.diaries}
|
|
|
|
keyExtractor={(item, index) => {
|
|
return item.id.toString() + item.comment_count;
|
|
}}
|
|
|
|
renderItem={({item}) => {
|
|
return (
|
|
<Touchable onPress={() => this._onDiaryPress(item)}>
|
|
<DiaryBrief diary={item}
|
|
showField={this.props.showField}
|
|
editable={this.editable}
|
|
|
|
onUserIconPress={() => this._onUserIconPress(item)}
|
|
onDiaryAction={() => this._onDiaryAction(item)}
|
|
>
|
|
|
|
</DiaryBrief>
|
|
</Touchable>
|
|
)
|
|
}}
|
|
|
|
ItemSeparatorComponent={({highlighted}) => <Divider style={{backgroundColor: '#eee'}}/>}
|
|
|
|
ListFooterComponent={() => {
|
|
if (this.state.refreshing || this.state.loadingMore || this.state.diaries.length == 0) {
|
|
return null;
|
|
}
|
|
|
|
if (this.state.loadFailed) {
|
|
return ListFooter.renderFooterFailed(this.loadMore.bind(this));
|
|
}
|
|
|
|
if (!this.state.hasMore) {
|
|
return ListFooter.renderFooterEnd();
|
|
}
|
|
|
|
return ListFooter.renderFooterLoading();
|
|
}}
|
|
|
|
refreshing={this.state.refreshing}
|
|
onRefresh={this.refresh.bind(this)}
|
|
|
|
onEndReachedThreshold={2}
|
|
onEndReached={this.state.hasMore ? this.loadMore.bind(this) : null}
|
|
>
|
|
</FlatList>
|
|
<ActionSheet/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const localStyle = StyleSheet.create({
|
|
container: {
|
|
flex: 1
|
|
},
|
|
list: {
|
|
height: '100%'
|
|
}
|
|
}); |