mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 06:59:31 +01:00
ui: fix ui of selection header
This commit is contained in:
@@ -1,15 +1,17 @@
|
|||||||
import React, {useEffect, useState} from 'react';
|
import React, {useEffect} from 'react';
|
||||||
import {Text, TouchableOpacity, View} from 'react-native';
|
import {TouchableOpacity, View} from 'react-native';
|
||||||
import Animated, {Easing, useValue} from 'react-native-reanimated';
|
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 {useTracked} from '../../provider';
|
import {useTracked} from '../../provider';
|
||||||
import {Actions} from '../../provider/Actions';
|
import {Actions} from '../../provider/Actions';
|
||||||
import {eSendEvent, ToastEvent} from '../../services/EventManager';
|
import {eSendEvent, ToastEvent} from '../../services/EventManager';
|
||||||
|
import {db} from '../../utils/DB';
|
||||||
import {eOpenMoveNoteDialog, eOpenSimpleDialog} from '../../utils/Events';
|
import {eOpenMoveNoteDialog, eOpenSimpleDialog} from '../../utils/Events';
|
||||||
|
import {SIZE} from '../../utils/SizeUtils';
|
||||||
|
import {ActionIcon} from '../ActionIcon';
|
||||||
import {TEMPLATE_DELETE} from '../DialogManager/Templates';
|
import {TEMPLATE_DELETE} from '../DialogManager/Templates';
|
||||||
import {SIZE, WEIGHT} from "../../utils/SizeUtils";
|
import Heading from '../Typography/Heading';
|
||||||
import {db} from "../../utils/DB";
|
|
||||||
|
|
||||||
export const SelectionHeader = () => {
|
export const SelectionHeader = () => {
|
||||||
// State
|
// State
|
||||||
@@ -21,7 +23,6 @@ export const SelectionHeader = () => {
|
|||||||
currentScreen,
|
currentScreen,
|
||||||
premiumUser,
|
premiumUser,
|
||||||
} = state;
|
} = state;
|
||||||
const [selectAll, setSelectAll] = useState(false);
|
|
||||||
const insets = useSafeAreaInsets();
|
const insets = useSafeAreaInsets();
|
||||||
const translateY = useValue(-150);
|
const translateY = useValue(-150);
|
||||||
|
|
||||||
@@ -38,10 +39,12 @@ export const SelectionHeader = () => {
|
|||||||
style={{
|
style={{
|
||||||
width: '100%',
|
width: '100%',
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
height: 50,
|
height: 50 + insets.top,
|
||||||
|
paddingTop: insets.top,
|
||||||
backgroundColor: colors.bg,
|
backgroundColor: colors.bg,
|
||||||
marginTop: insets.top,
|
justifyContent: 'center',
|
||||||
justifyContent: 'flex-end',
|
alignItems: 'center',
|
||||||
|
flexDirection: 'row',
|
||||||
zIndex: 999,
|
zIndex: 999,
|
||||||
paddingHorizontal: 12,
|
paddingHorizontal: 12,
|
||||||
transform: [
|
transform: [
|
||||||
@@ -52,206 +55,107 @@ export const SelectionHeader = () => {
|
|||||||
}}>
|
}}>
|
||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
width: '100%',
|
|
||||||
height: 50,
|
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'flex-start',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
|
position: 'absolute',
|
||||||
|
left: 12,
|
||||||
|
paddingTop: insets.top,
|
||||||
}}>
|
}}>
|
||||||
<View
|
<ActionIcon
|
||||||
style={{
|
customStyle={{
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'center',
|
||||||
flexDirection: 'row',
|
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
}}>
|
height: 40,
|
||||||
<TouchableOpacity
|
width: 40,
|
||||||
onPress={() => {
|
borderRadius: 100,
|
||||||
dispatch({type: Actions.SELECTION_MODE, enabled: !selectionMode});
|
marginLeft: -5,
|
||||||
dispatch({type: Actions.CLEAR_SELECTION});
|
marginRight: 25,
|
||||||
}}
|
}}
|
||||||
hitSlop={{top: 20, bottom: 20, left: 50, right: 40}}
|
onPress={() => {
|
||||||
style={{
|
dispatch({type: Actions.SELECTION_MODE, enabled: !selectionMode});
|
||||||
justifyContent: 'center',
|
dispatch({type: Actions.CLEAR_SELECTION});
|
||||||
alignItems: 'flex-start',
|
}}
|
||||||
height: 40,
|
color={colors.heading}
|
||||||
width: 60,
|
name="arrow-left"
|
||||||
}}>
|
size={SIZE.xxxl}
|
||||||
<Icon
|
/>
|
||||||
style={{
|
|
||||||
marginLeft: -5,
|
|
||||||
}}
|
|
||||||
color={colors.pri}
|
|
||||||
name={'chevron-left'}
|
|
||||||
size={SIZE.xxxl}
|
|
||||||
/>
|
|
||||||
</TouchableOpacity>
|
|
||||||
|
|
||||||
<Text
|
{Platform.OS === 'android' ? (
|
||||||
style={{
|
<Heading>{selectedItemsList.length + ' Selected'}</Heading>
|
||||||
fontSize: SIZE.lg,
|
) : null}
|
||||||
fontFamily: WEIGHT.regular,
|
|
||||||
color: colors.pri,
|
|
||||||
textAlignVertical: 'center',
|
|
||||||
}}>
|
|
||||||
{selectAll ? 'All' : selectedItemsList.length}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
<View
|
|
||||||
style={{
|
|
||||||
flexDirection: 'row',
|
|
||||||
justifyContent: 'space-between',
|
|
||||||
alignItems: 'center',
|
|
||||||
}}>
|
|
||||||
{currentScreen === 'trash' || currentScreen === 'notebooks' ? null : (
|
|
||||||
<TouchableOpacity
|
|
||||||
style={{
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
height: 40,
|
|
||||||
width: 50,
|
|
||||||
paddingRight: 0,
|
|
||||||
}}
|
|
||||||
onPress={() => {
|
|
||||||
dispatch({type: Actions.SELECTION_MODE, enabled: false});
|
|
||||||
dispatch({type: Actions.CLEAR_SELECTION});
|
|
||||||
eSendEvent(eOpenMoveNoteDialog);
|
|
||||||
}}>
|
|
||||||
<Icon color={colors.heading} name={'plus'} size={SIZE.xl} />
|
|
||||||
</TouchableOpacity>
|
|
||||||
)}
|
|
||||||
{/* {currentScreen === 'trash' || currentScreen === 'notebooks' ? null : (
|
|
||||||
<TouchableOpacity
|
|
||||||
style={{
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
height: 40,
|
|
||||||
width: 50,
|
|
||||||
paddingRight: 0,
|
|
||||||
}}
|
|
||||||
onPress={async () => {
|
|
||||||
if (!premiumUser) {
|
|
||||||
eSendEvent(eOpenPremiumDialog);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let favCount = 0;
|
|
||||||
let unFavCount = 0;
|
|
||||||
if (selectedItemsList.length > 0) {
|
|
||||||
selectedItemsList.forEach(async (item) => {
|
|
||||||
if (!item.favorite) {
|
|
||||||
favCount += 1;
|
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await db.notes.note(item.id).favorite();
|
|
||||||
dispatch({type: ACTIONS.NOTES});
|
|
||||||
dispatch({type: ACTIONS.FAVORITES});
|
|
||||||
});
|
|
||||||
|
|
||||||
dispatch({type: ACTIONS.SELECTION_MODE, enabled: false});
|
|
||||||
|
|
||||||
dispatch({type: ACTIONS.CLEAR_SELECTION});
|
|
||||||
|
|
||||||
ToastEvent.show(
|
|
||||||
favCount + ' notes added to favorites',
|
|
||||||
'success',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}}>
|
|
||||||
<Icon color={colors.heading} name={'star'} size={SIZE.xl - 3} />
|
|
||||||
</TouchableOpacity>
|
|
||||||
)} */}
|
|
||||||
|
|
||||||
{currentScreen === 'trash' ? null : (
|
|
||||||
<TouchableOpacity
|
|
||||||
style={{
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
height: 40,
|
|
||||||
width: 50,
|
|
||||||
paddingRight: 0,
|
|
||||||
}}
|
|
||||||
onPress={async () => {
|
|
||||||
eSendEvent(eOpenSimpleDialog, TEMPLATE_DELETE('item'));
|
|
||||||
return;
|
|
||||||
}}>
|
|
||||||
<Icon color={colors.heading} name={'delete'} size={SIZE.xl - 3} />
|
|
||||||
</TouchableOpacity>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{currentScreen === 'trash' ? (
|
|
||||||
<TouchableOpacity
|
|
||||||
style={{
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
height: 40,
|
|
||||||
width: 50,
|
|
||||||
paddingRight: 0,
|
|
||||||
}}
|
|
||||||
onPress={async () => {
|
|
||||||
if (selectedItemsList.length > 0) {
|
|
||||||
let noteIds = [];
|
|
||||||
selectedItemsList.forEach((item) => {
|
|
||||||
noteIds.push(item.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
await db.trash.restore(...noteIds);
|
|
||||||
|
|
||||||
dispatch({type: Actions.TRASH});
|
|
||||||
dispatch({type: Actions.SELECTION_MODE, enabled: false});
|
|
||||||
dispatch({type: Actions.CLEAR_SELECTION});
|
|
||||||
ToastEvent.show('Restore complete', 'success');
|
|
||||||
}
|
|
||||||
}}>
|
|
||||||
<Icon
|
|
||||||
color={colors.heading}
|
|
||||||
name="delete-restore"
|
|
||||||
size={SIZE.xl - 3}
|
|
||||||
/>
|
|
||||||
</TouchableOpacity>
|
|
||||||
) : null}
|
|
||||||
</View>
|
|
||||||
</View>
|
</View>
|
||||||
|
|
||||||
{/* <TouchableOpacity
|
{Platform.OS !== 'android' ? (
|
||||||
onPress={() => {
|
<Heading>{selectedItemsList.length + ' Selected'}</Heading>
|
||||||
if (selectAll) {
|
) : null}
|
||||||
dispatch({type: ACTIONS.SELECT_ALL, selected: []});
|
|
||||||
} else {
|
|
||||||
dispatch({
|
|
||||||
type: ACTIONS.SELECT_ALL,
|
|
||||||
selected:
|
|
||||||
selection.type === 'notes' ? db.notes.all : selection.data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setSelectAll(!selectAll);
|
<View
|
||||||
}}
|
|
||||||
hitSlop={{top: 20, bottom: 20, left: 20, right: 40}}
|
|
||||||
style={{
|
style={{
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'center',
|
|
||||||
height: 40,
|
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
alignSelf: 'flex-start',
|
justifyContent: 'flex-start',
|
||||||
marginLeft:5,
|
alignItems: 'center',
|
||||||
marginBottom:5
|
position: 'absolute',
|
||||||
|
right: 12,
|
||||||
|
paddingTop: insets.top,
|
||||||
}}>
|
}}>
|
||||||
<Icon
|
{currentScreen === 'trash' || currentScreen === 'notebooks' ? null : (
|
||||||
style={{}}
|
<ActionIcon
|
||||||
color={selectAll ? colors.accent : colors.icon}
|
onPress={() => {
|
||||||
name={
|
dispatch({type: Actions.SELECTION_MODE, enabled: false});
|
||||||
selectAll ? 'check-circle-outline' : 'checkbox-blank-circle-outline'
|
dispatch({type: Actions.CLEAR_SELECTION});
|
||||||
}
|
eSendEvent(eOpenMoveNoteDialog);
|
||||||
size={SIZE.lg}
|
}}
|
||||||
/>
|
customStyle={{
|
||||||
<Text
|
marginLeft: 10,
|
||||||
style={{
|
}}
|
||||||
marginLeft: 10,
|
color={colors.heading}
|
||||||
}}>
|
name="plus"
|
||||||
Select All
|
size={SIZE.xl}
|
||||||
</Text>
|
/>
|
||||||
</TouchableOpacity> */}
|
)}
|
||||||
|
|
||||||
|
{currentScreen === 'trash' ? null : (
|
||||||
|
<ActionIcon
|
||||||
|
customStyle={{
|
||||||
|
marginLeft: 10,
|
||||||
|
}}
|
||||||
|
onPress={async () => {
|
||||||
|
eSendEvent(eOpenSimpleDialog, TEMPLATE_DELETE('item'));
|
||||||
|
return;
|
||||||
|
}}
|
||||||
|
color={colors.heading}
|
||||||
|
name="delete"
|
||||||
|
size={SIZE.xl}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{currentScreen === 'trash' ? (
|
||||||
|
<ActionIcon
|
||||||
|
customStyle={{
|
||||||
|
marginLeft: 10,
|
||||||
|
}}
|
||||||
|
color={colors.heading}
|
||||||
|
onPress={async () => {
|
||||||
|
if (selectedItemsList.length > 0) {
|
||||||
|
let noteIds = [];
|
||||||
|
selectedItemsList.forEach((item) => {
|
||||||
|
noteIds.push(item.id);
|
||||||
|
});
|
||||||
|
|
||||||
|
await db.trash.restore(...noteIds);
|
||||||
|
|
||||||
|
dispatch({type: Actions.TRASH});
|
||||||
|
dispatch({type: Actions.SELECTION_MODE, enabled: false});
|
||||||
|
dispatch({type: Actions.CLEAR_SELECTION});
|
||||||
|
ToastEvent.show('Restore complete', 'success');
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
name="delete-restore"
|
||||||
|
size={SIZE.xl - 3}
|
||||||
|
/>
|
||||||
|
) : null}
|
||||||
|
</View>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user