import React, {useState} from 'react';
import {
KeyboardAvoidingView,
Modal,
Platform,
Text,
TouchableOpacity,
View,
} from 'react-native';
import {FlatList, TextInput} from 'react-native-gesture-handler';
import Icon from 'react-native-vector-icons/Feather';
import {db, DDS} from '../../../App';
import {opacity, ph, pv, SIZE, WEIGHT} from '../../common/common';
import {ACTIONS} from '../../provider';
import {getElevation, ToastEvent} from '../../utils/utils';
import {updateEvent} from '../DialogManager';
let refs = [];
export class AddNotebookDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
visible: false,
topics: [],
description: null,
titleFocused: false,
descFocused: false,
count: 0,
topicInputFoused: false,
};
this.title = null;
this.description = null;
this.listRef;
this.prevItem = null;
this.prevIndex = null;
this.currentSelectedInput = null;
this.timestamp = null;
this.backPressCount = 0;
this.currentInputValue = null;
}
open = () => {
refs = [];
let {toEdit} = this.props;
console.log(toEdit);
if (toEdit && toEdit.type === 'notebook') {
let topicsList = [];
toEdit.topics.forEach(item => {
if (item.title !== 'General') {
topicsList.push(item.title);
}
});
this.timestamp = toEdit.dateCreated;
this.title = toEdit.title;
this.description = toEdit.description;
this.setState({
topics: [...topicsList],
visible: true,
});
} else {
this.setState({
visible: true,
});
}
};
close = () => {
refs = [];
this.prevIndex = null;
this.prevItem = null;
this.currentSelectedInput = null;
this.title = null;
this.description = null;
this.timestamp = null;
this.setState({
visible: false,
topics: [],
descFocused: false,
titleFocused: false,
});
};
onDelete = index => {
let {topics} = this.state;
let prevTopics = topics;
refs = [];
prevTopics.splice(index, 1);
let nextTopics = [...prevTopics];
if (this.prevIndex === index) {
this.prevIndex = null;
this.prevItem = null;
this.currentInputValue = null;
this.topicInputRef.setNativeProps({
text: null,
});
}
this.setState({
topics: nextTopics,
});
};
addNewNotebook = async () => {
let {topics} = this.state;
let {toEdit} = this.props;
if (!this.title)
return ToastEvent.show('Title is required', 'error', 3000, () => {}, '');
let dateCreated = toEdit && toEdit.dateCreated ? toEdit.dateCreated : null;
await db.addNotebook({
title: this.title,
description: this.description,
topics,
dateCreated: dateCreated,
});
updateEvent({type: ACTIONS.NOTEBOOKS});
this.close();
ToastEvent.show('New notebook added', 'success', 3000, () => {}, '');
};
onSubmit = () => {
if (
!this.currentInputValue ||
this.currentInputValue === '' ||
this.currentInputValue === ' '
)
return;
let prevTopics = [...topics];
if (this.prevItem === null) {
prevTopics.push(this.currentInputValue);
this.setState({
topics: prevTopics,
});
this.topicInputRef.setNativeProps({
text: null,
});
setTimeout(() => {
this.listRef.scrollToEnd({animated: true});
}, 30);
} else {
prevTopics[this.prevIndex] = this.currentInputValue;
this.setState({
topics: prevTopics,
});
this.currentInputValue = null;
if (prevTopics[this.prevIndex + 1]) {
this.prevIndex = this.prevIndex + 1;
this.prevItem = prevTopics[this.prevIndex];
this.currentInputValue = this.prevItem;
this.topicInputRef.setNativeProps({
text: null,
});
this.topicInputRef.setNativeProps({
text: prevTopics[this.prevIndex],
});
} else {
this.prevItem = null;
this.prevIndex = null;
this.currentInputValue = null;
this.topicInputRef.setNativeProps({
text: null,
});
setTimeout(() => {
this.listRef.scrollToEnd({animated: true});
}, 30);
}
}
};
render() {
const {colors, toEdit} = this.props;
const {
titleFocused,
descFocused,
topics,
visible,
topicInputFoused,
} = this.state;
return (
{toEdit && toEdit.dateCreated
? 'Edit Notebook'
: 'New Notebook'}
{
this.setState({
titleFocused: true,
});
}}
onBlur={() => {
this.setState({
titleFocused: false,
});
}}
defaultValue={toEdit ? toEdit.title : null}
onChangeText={value => {
this.title = value;
}}
placeholder="Title of notebook"
placeholderTextColor={colors.icon}
/>
{
this.setState({
descFocused: true,
});
}}
onBlur={() => {
this.setState({
descFocused: false,
});
}}
defaultValue={toEdit ? toEdit.description : null}
onChangeText={value => {
this.description = value;
}}
placeholder="write a description"
placeholderTextColor={colors.icon}
/>
(this.topicInputRef = ref)}
onChangeText={value => {
this.currentInputValue = value;
if (this.prevItem !== null) {
refs[this.prevIndex].setNativeProps({
text: this.prevIndex + 1 + '. ' + value,
style: {
borderBottomColor: colors.accent,
},
});
}
}}
blurOnSubmit={false}
onFocus={() => {
this.setState({
topicInputFoused: true,
});
}}
onBlur={() => {
this.setState({
topicInputFoused: false,
});
}}
onSubmitEditing={this.onSubmit}
style={{
padding: pv - 5,
paddingHorizontal: 0,
borderRadius: 5,
borderWidth: 1.5,
fontSize: SIZE.sm,
borderColor: topicInputFoused ? colors.accent : colors.nav,
fontFamily: WEIGHT.regular,
color: colors.pri,
paddingHorizontal: ph,
width: '85%',
maxWidth: '85%',
}}
placeholder="Add a topic"
placeholderTextColor={colors.icon}
/>
(this.listRef = ref)}
removeClippedSubviews={false}
enableEmptySections={false}
getItemLayout={(data, index) => ({
length: 50,
offset: 50 * index,
index,
})}
keyExtractor={(item, index) => item + index.toString()}
renderItem={({item, index}) => (
{
this.prevIndex = index;
this.prevItem = item;
this.topicInputRef.setNativeProps({
text: item,
});
this.topicInputRef.focus();
this.currentInputValue = item;
}}
onDelete={this.onDelete}
index={index}
colors={colors}
/>
)}
/>
Add
Cancel
);
}
}
const TopicItem = ({item, index, colors, onPress, onDelete}) => {
const topicRef = ref => (refs[index] = ref);
return (
{
onPress(item, index);
}}>
{
onDelete(index);
}}
style={{
justifyContent: 'center',
alignItems: 'center',
position: 'absolute',
right: 0,
borderColor: colors.nav,
borderRadius: 5,
width: 40,
height: 40,
}}>
);
};