Files
notesnook/apps/mobile/src/components/VaultDialog/index.js

253 lines
6.9 KiB
JavaScript
Raw Normal View History

2019-12-14 19:26:44 +05:00
import React, {useState} from 'react';
import {View, Text, TouchableOpacity, Modal} from 'react-native';
import {SIZE, ph, pv, opacity, WEIGHT} from '../../common/common';
2019-12-07 08:41:48 +05:00
import Icon from 'react-native-vector-icons/Feather';
import {FlatList, TextInput} from 'react-native-gesture-handler';
import {useForceUpdate} from '../../views/ListsEditor';
2019-12-11 01:10:04 +05:00
import {db} from '../../../App';
2019-12-14 19:26:44 +05:00
import {useAppContext} from '../../provider/useAppContext';
2019-12-07 08:41:48 +05:00
let refs = [];
export const VaultDialog = ({visible, close}) => {
2019-12-14 19:26:44 +05:00
const {colors} = useAppContext();
2019-12-07 08:41:48 +05:00
const forceUpdate = useForceUpdate();
const [hidden, setHidden] = useState(false);
return (
<Modal
visible={visible}
transparent={true}
onRequestClose={() => (refs = [])}>
<View
style={{
width: '100%',
height: '100%',
backgroundColor: 'rgba(255,255,255,0.3)',
justifyContent: 'center',
alignItems: 'center',
}}>
<View
style={{
width: '80%',
maxHeight: 350,
elevation: 5,
borderRadius: 5,
backgroundColor: colors.bg,
paddingHorizontal: ph,
paddingVertical: pv,
}}>
<View
style={{
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
}}>
<Icon name="shield" color={colors.accent} size={SIZE.lg} />
<Text
style={{
color: colors.accent,
fontFamily: WEIGHT.semibold,
marginLeft: 10,
fontSize: SIZE.lg,
marginTop: -5,
}}>
Lock Note
</Text>
</View>
<Text
style={{
color: colors.icon,
fontFamily: WEIGHT.regular,
textAlign: 'center',
fontSize: SIZE.sm - 1,
marginTop: 10,
marginBottom: hidden ? 20 : 0,
}}>
{hidden
? 'Set password for all your locked notes.'
: 'Do you want to lock this note?'}
</Text>
{!hidden ? null : (
<View>
<TextInput
style={{
padding: pv - 5,
borderWidth: 1.5,
2019-12-07 12:05:15 +05:00
borderColor: colors.nav,
2019-12-07 08:41:48 +05:00
paddingHorizontal: ph,
borderRadius: 5,
fontSize: SIZE.sm,
fontFamily: WEIGHT.regular,
}}
onChangeText={value => {}}
placeholder="Password"
placeholderTextColor={colors.icon}
/>
<TextInput
style={{
padding: pv - 5,
borderWidth: 1.5,
2019-12-07 12:05:15 +05:00
borderColor: colors.nav,
2019-12-07 08:41:48 +05:00
paddingHorizontal: ph,
borderRadius: 5,
fontSize: SIZE.sm,
fontFamily: WEIGHT.regular,
marginTop: 10,
}}
onChangeText={value => {}}
placeholder="Confirm password"
placeholderTextColor={colors.icon}
/>
<TextInput
style={{
padding: pv - 5,
borderWidth: 1.5,
2019-12-07 12:05:15 +05:00
borderColor: colors.nav,
2019-12-07 08:41:48 +05:00
paddingHorizontal: ph,
borderRadius: 5,
fontSize: SIZE.sm,
fontFamily: WEIGHT.regular,
marginTop: 10,
}}
onChangeText={value => {}}
placeholder="Hint"
placeholderTextColor={colors.icon}
/>
</View>
)}
<View
style={{
justifyContent: 'space-around',
alignItems: 'center',
flexDirection: 'row',
marginTop: 20,
}}>
<TouchableOpacity
activeOpacity={opacity}
style={{
paddingVertical: pv,
paddingHorizontal: ph,
borderRadius: 5,
width: '45%',
justifyContent: 'center',
alignItems: 'center',
borderColor: colors.accent,
backgroundColor: colors.accent,
borderWidth: 1,
}}>
<Text
style={{
fontFamily: WEIGHT.medium,
color: 'white',
fontSize: SIZE.sm,
}}>
Lock
</Text>
</TouchableOpacity>
<TouchableOpacity
activeOpacity={opacity}
onPress={() => {
close();
}}
style={{
paddingVertical: pv,
paddingHorizontal: ph,
borderRadius: 5,
width: '45%',
justifyContent: 'center',
alignItems: 'center',
2019-12-07 12:05:15 +05:00
backgroundColor: colors.nav,
2019-12-07 08:41:48 +05:00
}}>
<Text
style={{
fontFamily: WEIGHT.medium,
color: colors.icon,
fontSize: SIZE.sm,
}}>
Cancel
</Text>
</TouchableOpacity>
</View>
</View>
</View>
</Modal>
);
};
const TopicItem = ({
item,
index,
onFocus,
onSubmit,
onDelete,
onChange,
colors,
}) => {
const [focus, setFocus] = useState(true);
const topicRef = ref => (refs[index] = ref);
let text = item;
return (
<View
style={{
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
borderRadius: 5,
borderWidth: 1.5,
2019-12-07 12:05:15 +05:00
borderColor: colors.nav,
2019-12-07 08:41:48 +05:00
paddingHorizontal: ph,
marginTop: 10,
}}>
<TextInput
ref={topicRef}
onFocus={() => {
onFocus(index);
setFocus(true);
}}
onBlur={() => {
onSubmit(text, index, false);
setFocus(false);
}}
onChangeText={value => {
onChange(value, index);
text = value;
}}
onSubmit={() => onSubmit(text, index, true)}
blurOnSubmit
style={{
padding: pv - 5,
paddingHorizontal: 0,
fontSize: SIZE.sm,
fontFamily: WEIGHT.regular,
width: '90%',
maxWidth: '90%',
}}
placeholder="Add a topic"
placeholderTextColor={colors.icon}
/>
<TouchableOpacity
onPress={() => (!focus ? onDelete(index) : onSubmit(text, index, true))}
style={{
justifyContent: 'center',
alignItems: 'center',
}}>
<Icon
name={!focus ? 'minus' : 'plus'}
size={SIZE.lg}
color={colors.accent}
/>
</TouchableOpacity>
</View>
);
};