joplin/ReactNativeClient/lib/components/note-list.js

122 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-03-09 17:49:35 +00:00
const React = require("react");
const Component = React.Component;
const { connect } = require("react-redux");
const { ListView, Text, TouchableHighlight, Switch, View, StyleSheet } = require("react-native");
const { Log } = require("lib/log.js");
const { _ } = require("lib/locale.js");
const { Checkbox } = require("lib/components/checkbox.js");
const { NoteItem } = require("lib/components/note-item.js");
const { reg } = require("lib/registry.js");
const Note = require("lib/models/Note.js");
const Setting = require("lib/models/Setting.js");
const { time } = require("lib/time-utils.js");
const { themeStyle } = require("lib/components/global-style.js");
2017-07-25 17:49:31 +00:00
class NoteListComponent extends Component {
constructor() {
super();
const ds = new ListView.DataSource({
2018-03-09 17:49:35 +00:00
rowHasChanged: (r1, r2) => {
return r1 !== r2;
},
2017-07-25 17:49:31 +00:00
});
this.state = {
dataSource: ds,
items: [],
selectedItemIds: [],
};
2017-07-30 21:33:54 +00:00
this.rootRef_ = null;
2017-08-01 18:29:01 +00:00
this.styles_ = {};
}
styles() {
const themeId = this.props.theme;
const theme = themeStyle(themeId);
if (this.styles_[themeId]) return this.styles_[themeId];
this.styles_ = {};
let styles = {
noItemMessage: {
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
paddingTop: theme.marginTop,
paddingBottom: theme.marginBottom,
fontSize: theme.fontSize,
color: theme.color,
},
};
this.styles_[themeId] = StyleSheet.create(styles);
return this.styles_[themeId];
2017-07-25 17:49:31 +00:00
}
filterNotes(notes) {
2018-03-09 17:49:35 +00:00
const todoFilter = "all"; //Setting.value('todoFilter');
if (todoFilter == "all") return notes;
2017-07-25 17:49:31 +00:00
const now = time.unixMs();
const maxInterval = 1000 * 60 * 60 * 24;
const notRecentTime = now - maxInterval;
let output = [];
for (let i = 0; i < notes.length; i++) {
const note = notes[i];
if (note.is_todo) {
2018-03-09 17:49:35 +00:00
if (todoFilter == "recent" && note.user_updated_time < notRecentTime && !!note.todo_completed) continue;
if (todoFilter == "nonCompleted" && !!note.todo_completed) continue;
2017-07-25 17:49:31 +00:00
}
output.push(note);
}
return output;
}
componentWillMount() {
const newDataSource = this.state.dataSource.cloneWithRows(this.filterNotes(this.props.items));
this.setState({ dataSource: newDataSource });
2017-07-25 17:49:31 +00:00
}
componentWillReceiveProps(newProps) {
// https://stackoverflow.com/questions/38186114/react-native-redux-and-listview
this.setState({
dataSource: this.state.dataSource.cloneWithRows(this.filterNotes(newProps.items)),
});
2017-07-30 21:33:54 +00:00
// Make sure scroll position is reset when switching from one folder to another or to a tag list.
if (this.rootRef_ && newProps.notesSource != this.props.notesSource) {
this.rootRef_.scrollTo({ x: 0, y: 0, animated: false });
}
2017-07-25 17:49:31 +00:00
}
render() {
// `enableEmptySections` is to fix this warning: https://github.com/FaridSafi/react-native-gifted-listview/issues/39
if (this.state.dataSource.getRowCount()) {
return (
<ListView
2018-03-09 17:49:35 +00:00
ref={ref => (this.rootRef_ = ref)}
2017-07-25 17:49:31 +00:00
dataSource={this.state.dataSource}
2018-03-09 17:49:35 +00:00
renderRow={note => {
return <NoteItem note={note} />;
2017-07-25 18:36:52 +00:00
}}
2017-07-25 17:49:31 +00:00
enableEmptySections={true}
/>
);
} else {
2018-03-09 17:49:35 +00:00
const noItemMessage = _("There are currently no notes. Create one by clicking on the (+) button.");
return <Text style={this.styles().noItemMessage}>{noItemMessage}</Text>;
2017-07-25 17:49:31 +00:00
}
}
2017-05-15 19:46:34 +00:00
}
2017-05-15 19:10:00 +00:00
2018-03-09 17:49:35 +00:00
const NoteList = connect(state => {
return {
items: state.notes,
notesSource: state.notesSource,
theme: state.settings.theme,
noteSelectionEnabled: state.noteSelectionEnabled,
};
})(NoteListComponent);
2017-05-15 19:10:00 +00:00
2018-03-09 17:49:35 +00:00
module.exports = { NoteList };