mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
71 lines
1.9 KiB
JavaScript
71 lines
1.9 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux'
|
|
import { ListView, Text, TouchableHighlight, Switch, View } from 'react-native';
|
|
import { Log } from 'lib/log.js';
|
|
import { _ } from 'lib/locale.js';
|
|
import { Checkbox } from 'lib/components/checkbox.js';
|
|
import { Note } from 'lib/models/note.js';
|
|
|
|
class ItemListComponent extends Component {
|
|
|
|
constructor() {
|
|
super();
|
|
const ds = new ListView.DataSource({
|
|
rowHasChanged: (r1, r2) => { return r1 !== r2; }
|
|
});
|
|
this.state = {
|
|
dataSource: ds,
|
|
items: [],
|
|
selectedItemIds: [],
|
|
};
|
|
}
|
|
|
|
componentWillMount() {
|
|
const newDataSource = this.state.dataSource.cloneWithRows(this.props.items);
|
|
this.state = { dataSource: newDataSource };
|
|
}
|
|
|
|
componentWillReceiveProps(newProps) {
|
|
// https://stackoverflow.com/questions/38186114/react-native-redux-and-listview
|
|
this.setState({
|
|
dataSource: this.state.dataSource.cloneWithRows(newProps.items),
|
|
});
|
|
}
|
|
|
|
async todoCheckbox_change(itemId, checked) {
|
|
let note = await Note.load(itemId);
|
|
await Note.save({ id: note.id, todo_completed: checked });
|
|
}
|
|
|
|
listView_itemPress(itemId) {}
|
|
|
|
render() {
|
|
let renderRow = (item) => {
|
|
let onPress = () => {
|
|
this.listView_itemPress(item.id);
|
|
}
|
|
let onLongPress = () => {
|
|
this.listView_itemLongPress(item.id);
|
|
}
|
|
|
|
return (
|
|
<TouchableHighlight onPress={onPress} onLongPress={onLongPress}>
|
|
<View style={{flexDirection: 'row'}}>
|
|
{ !!Number(item.is_todo) && <Checkbox checked={!!Number(item.todo_completed)} onChange={(checked) => { this.todoCheckbox_change(item.id, checked) }}/> }<Text>{item.title} [{item.id}]</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
);
|
|
}
|
|
|
|
// `enableEmptySections` is to fix this warning: https://github.com/FaridSafi/react-native-gifted-listview/issues/39
|
|
return (
|
|
<ListView
|
|
dataSource={this.state.dataSource}
|
|
renderRow={renderRow}
|
|
enableEmptySections={true}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export { ItemListComponent }; |