This commit is contained in:
ammarahm-ed
2020-09-14 17:17:17 +05:00
parent 708e2e93d8
commit c493f4681f
5 changed files with 65 additions and 72 deletions

View File

@@ -27,7 +27,11 @@ import {
import {useTracked} from '../../provider'; import {useTracked} from '../../provider';
import {ACTIONS} from '../../provider/actions'; import {ACTIONS} from '../../provider/actions';
import {eSendEvent, openVault} from '../../services/eventManager'; import {eSendEvent, openVault} from '../../services/eventManager';
import {eOpenLoginDialog, eOpenMoveNoteDialog, refreshNotesPage} from '../../services/events'; import {
eOpenLoginDialog,
eOpenMoveNoteDialog,
refreshNotesPage,
} from '../../services/events';
import NavigationService from '../../services/NavigationService'; import NavigationService from '../../services/NavigationService';
import {MMKV} from '../../utils/storage'; import {MMKV} from '../../utils/storage';
import { import {
@@ -214,8 +218,7 @@ export const ActionSheetComponent = ({
close(); close();
setTimeout(() => { setTimeout(() => {
eSendEvent(eOpenMoveNoteDialog); eSendEvent(eOpenMoveNoteDialog);
},400) }, 400);
}, },
}, },
{ {

View File

@@ -4,6 +4,7 @@ import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import {ph, pv, SIZE, WEIGHT} from '../../common/common'; import {ph, pv, SIZE, WEIGHT} from '../../common/common';
import {useTracked} from '../../provider'; import {useTracked} from '../../provider';
import {ACTIONS} from '../../provider/actions'; import {ACTIONS} from '../../provider/actions';
import NavigationService from '../../services/NavigationService';
import {db, ToastEvent} from '../../utils/utils'; import {db, ToastEvent} from '../../utils/utils';
import {Button} from '../Button'; import {Button} from '../Button';
import {ActionSheetEvent, moveNoteHideEvent} from '../DialogManager/recievers'; import {ActionSheetEvent, moveNoteHideEvent} from '../DialogManager/recievers';
@@ -80,7 +81,12 @@ export const NotebookItem = ({
}}> }}>
{item && item.topics ? ( {item && item.topics ? (
item.topics.slice(1, 4).map((topic) => ( item.topics.slice(1, 4).map((topic) => (
<View <TouchableOpacity
onPress={() => {
NavigationService.navigate('Notes', {
...topic,
});
}}
key={topic.dateCreated.toString() + topic.title} key={topic.dateCreated.toString() + topic.title}
style={{ style={{
borderRadius: 2.5, borderRadius: 2.5,
@@ -100,7 +106,7 @@ export const NotebookItem = ({
}}> }}>
{topic.title} {topic.title}
</Text> </Text>
</View> </TouchableOpacity>
)) ))
) : ( ) : (
<Text <Text

View File

@@ -1,20 +1,15 @@
import React, {useState, useEffect} from 'react'; import React, {useEffect, useState} from 'react';
import {Platform, StatusBar, Text, TouchableOpacity, View} from 'react-native'; import {Text, TouchableOpacity, View} from 'react-native';
import * as Animatable from 'react-native-animatable'; import Animated, {Easing, useValue} from 'react-native-reanimated';
import {useSafeAreaInsets} from 'react-native-safe-area-context'; import {useSafeAreaInsets} from 'react-native-safe-area-context';
import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import {SIZE, WEIGHT} from '../../common/common'; import {SIZE, WEIGHT} from '../../common/common';
import {useTracked} from '../../provider'; import {useTracked} from '../../provider';
import {ACTIONS} from '../../provider/actions'; import {ACTIONS} from '../../provider/actions';
import {eSendEvent} from '../../services/eventManager'; import {eSendEvent} from '../../services/eventManager';
import { import {eOpenMoveNoteDialog, eOpenSimpleDialog} from '../../services/events';
eOpenMoveNoteDialog,
eOpenPremiumDialog,
eOpenSimpleDialog,
} from '../../services/events';
import {db, ToastEvent} from '../../utils/utils'; import {db, ToastEvent} from '../../utils/utils';
import {TEMPLATE_DELETE} from '../DialogManager/templates'; import {TEMPLATE_DELETE} from '../DialogManager/templates';
import Animated, {useValue, Easing} from 'react-native-reanimated';
export const SelectionHeader = () => { export const SelectionHeader = () => {
// State // State

View File

@@ -41,11 +41,6 @@ export const NotebookItemWrapper = ({
onLongPress(); onLongPress();
return; return;
} }
if (item.type === 'topic') {
NavigationService.navigate('Notes', {
...item,
});
} else {
dispatch({ dispatch({
type: ACTIONS.HEADER_TEXT_STATE, type: ACTIONS.HEADER_TEXT_STATE,
state: { state: {
@@ -71,7 +66,6 @@ export const NotebookItemWrapper = ({
title: item.title, title: item.title,
root: true, root: true,
}); });
}
}; };
return ( return (

View File

@@ -16,6 +16,7 @@ import {
eOnNewTopicAdded, eOnNewTopicAdded,
eScrollEvent, eScrollEvent,
} from '../../services/events'; } from '../../services/events';
import NavigationService from '../../services/NavigationService';
import {db, ToastEvent, w} from '../../utils/utils'; import {db, ToastEvent, w} from '../../utils/utils';
export const Notebook = ({route, navigation}) => { export const Notebook = ({route, navigation}) => {
@@ -45,10 +46,6 @@ export const Notebook = ({route, navigation}) => {
}; };
}, []); }, []);
const handleBackPress = () => {
navigation.goBack();
};
useEffect(() => { useEffect(() => {
if (isFocused) { if (isFocused) {
onLoad(); onLoad();
@@ -110,13 +107,6 @@ export const Notebook = ({route, navigation}) => {
} }
}, [topics, isFocused]); }, [topics, isFocused]);
useEffect(() => {
eSubscribeEvent(eMoveNoteDialogNavigateBack, handleBackPress);
return () => {
eUnSubscribeEvent(eMoveNoteDialogNavigateBack, handleBackPress);
};
}, []);
const _onRefresh = async () => { const _onRefresh = async () => {
setRefreshing(true); setRefreshing(true);
try { try {
@@ -157,15 +147,12 @@ const RenderItem = ({item, index}) => {
let params = headerState.route.params ? headerState.route.params : {}; let params = headerState.route.params ? headerState.route.params : {};
return ( return (
<SelectionWrapper item={item}> <SelectionWrapper
<NotebookItem onPress={() => {
hideMore={preventDefaultMargins} NavigationService.navigate('Notes', {
isTopic={true} ...item,
customStyle={{ });
width: selectionMode ? w - 74 : '100%',
marginHorizontal: 0,
}} }}
selectionMode={selectionMode}
onLongPress={() => { onLongPress={() => {
if (!selectionMode) { if (!selectionMode) {
dispatch({ dispatch({
@@ -178,10 +165,18 @@ const RenderItem = ({item, index}) => {
item: item, item: item,
}); });
}} }}
item={item}>
<NotebookItem
hideMore={preventDefaultMargins}
isTopic={true}
customStyle={{
width: '100%',
marginHorizontal: 0,
}}
selectionMode={selectionMode}
noteToMove={params.note} noteToMove={params.note}
notebookID={params.notebook?.id} notebookID={params.notebook?.id}
isMove={preventDefaultMargins} isMove={preventDefaultMargins}
refresh={() => {}}
item={item} item={item}
index={index} index={index}
colors={colors} colors={colors}