2020-01-09 20:14:51 +05:00
|
|
|
import React, {useState} from 'react';
|
|
|
|
|
import {
|
|
|
|
|
View,
|
|
|
|
|
Text,
|
|
|
|
|
TouchableOpacity,
|
|
|
|
|
Dimensions,
|
|
|
|
|
TextInput,
|
|
|
|
|
FlatList,
|
2020-01-10 18:44:41 +05:00
|
|
|
Platform,
|
2020-01-09 20:14:51 +05:00
|
|
|
} from 'react-native';
|
2020-01-10 18:44:41 +05:00
|
|
|
import {
|
|
|
|
|
SIZE,
|
|
|
|
|
pv,
|
|
|
|
|
WEIGHT,
|
|
|
|
|
opacity,
|
|
|
|
|
COLOR_SCHEME_DARK,
|
|
|
|
|
COLOR_SCHEME_LIGHT,
|
|
|
|
|
} from '../../common/common';
|
2020-01-09 20:14:51 +05:00
|
|
|
import Icon from 'react-native-vector-icons/Feather';
|
|
|
|
|
import NavigationService from '../../services/NavigationService';
|
|
|
|
|
import {db} from '../../../App';
|
|
|
|
|
import {useAppContext} from '../../provider/useAppContext';
|
2020-01-10 18:44:41 +05:00
|
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
2020-01-09 20:14:51 +05:00
|
|
|
|
|
|
|
|
const w = Dimensions.get('window').width;
|
|
|
|
|
const h = Dimensions.get('window').height;
|
|
|
|
|
|
|
|
|
|
let tagsInputRef;
|
|
|
|
|
export const ActionSheetComponent = ({
|
|
|
|
|
close = () => {},
|
|
|
|
|
item = {},
|
|
|
|
|
setWillRefresh = value => {},
|
2020-01-10 18:44:41 +05:00
|
|
|
hasColors = false,
|
|
|
|
|
hasTags = false,
|
|
|
|
|
rowItems = [],
|
|
|
|
|
columnItems = [],
|
2020-01-09 20:14:51 +05:00
|
|
|
}) => {
|
2020-01-10 18:44:41 +05:00
|
|
|
const {colors, changeColorScheme} = useAppContext();
|
2020-01-09 20:14:51 +05:00
|
|
|
const [focused, setFocused] = useState(false);
|
|
|
|
|
const [note, setNote] = useState(item ? item : {});
|
|
|
|
|
|
|
|
|
|
let tagToAdd = null;
|
|
|
|
|
let backPressCount = 0;
|
|
|
|
|
|
|
|
|
|
const _onSubmit = () => {
|
|
|
|
|
if (!tagToAdd || tagToAdd === '#') return;
|
|
|
|
|
|
|
|
|
|
let tag = tagToAdd;
|
|
|
|
|
if (tag[0] !== '#') {
|
|
|
|
|
tag = '#' + tag;
|
|
|
|
|
}
|
|
|
|
|
if (tag.includes(' ')) {
|
|
|
|
|
tag = tag.replace(' ', '_');
|
|
|
|
|
}
|
|
|
|
|
let oldProps = {...note};
|
|
|
|
|
|
|
|
|
|
if (oldProps.tags.includes(tag)) {
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
oldProps.tags.push(tag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tagsInputRef.setNativeProps({
|
|
|
|
|
text: '#',
|
|
|
|
|
});
|
|
|
|
|
db.addNote({
|
|
|
|
|
dateCreated: note.dateCreated,
|
|
|
|
|
content: note.content,
|
|
|
|
|
title: note.title,
|
|
|
|
|
tags: oldProps.tags,
|
|
|
|
|
});
|
|
|
|
|
setNote({...db.getNote(note.dateCreated)});
|
|
|
|
|
tagToAdd = '';
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
//tagsInputRef.focus();
|
|
|
|
|
}, 300);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const _onKeyPress = event => {
|
|
|
|
|
if (event.nativeEvent.key === 'Backspace') {
|
|
|
|
|
if (backPressCount === 0 && !tagToAdd) {
|
|
|
|
|
backPressCount = 1;
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (backPressCount === 1 && !tagToAdd) {
|
|
|
|
|
backPressCount = 0;
|
|
|
|
|
|
|
|
|
|
let tagInputValue = note.tags[note.tags.length - 1];
|
|
|
|
|
let oldProps = {...note};
|
|
|
|
|
if (oldProps.tags.length === 1) return;
|
|
|
|
|
|
|
|
|
|
oldProps.tags.splice(oldProps.tags.length - 1);
|
|
|
|
|
|
|
|
|
|
db.addNote({
|
|
|
|
|
dateCreated: note.dateCreated,
|
|
|
|
|
content: note.content,
|
|
|
|
|
title: note.title,
|
|
|
|
|
tags: oldProps.tags,
|
|
|
|
|
});
|
|
|
|
|
setNote({...db.getNote(note.dateCreated)});
|
|
|
|
|
|
|
|
|
|
tagsInputRef.setNativeProps({
|
|
|
|
|
text: tagInputValue,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
tagsInputRef.focus();
|
|
|
|
|
}, 300);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-10 18:44:41 +05:00
|
|
|
const localRefresh = type => {
|
|
|
|
|
let toAdd;
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'note': {
|
|
|
|
|
toAdd = db.getNote(note.dateCreated);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'notebook': {
|
|
|
|
|
toAdd = db.getNotebook(note.dateCreated);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'topic': {
|
|
|
|
|
toAdd = db.getTopic(topic.notebookId, topic.title);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
setNote({...toAdd});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const rowItemsData = [
|
|
|
|
|
{
|
|
|
|
|
name: 'Add to',
|
|
|
|
|
icon: 'book',
|
|
|
|
|
func: () => {
|
|
|
|
|
close();
|
|
|
|
|
NavigationService.push('Folders', {
|
|
|
|
|
note: note,
|
|
|
|
|
title: 'Choose a notebook',
|
|
|
|
|
isMove: true,
|
|
|
|
|
hideMore: true,
|
|
|
|
|
canGoBack: true,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Share',
|
|
|
|
|
icon: 'share-2',
|
|
|
|
|
func: () => {
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Export',
|
|
|
|
|
icon: 'external-link',
|
|
|
|
|
func: () => {
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => close('delete'),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Edit Notebook',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => {
|
|
|
|
|
close('topic');
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Edit Topic',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => {
|
|
|
|
|
close('topic');
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Restore',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => {
|
|
|
|
|
db.restoreItem(item.dateCreated);
|
|
|
|
|
ToastEvent.show(
|
|
|
|
|
item.type == 'note' ? 'Note restored' : 'Notebook restored',
|
|
|
|
|
'success',
|
|
|
|
|
1000,
|
|
|
|
|
() => {},
|
|
|
|
|
'',
|
|
|
|
|
);
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Remove',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => {
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
columnItemsData = [
|
|
|
|
|
{
|
|
|
|
|
name: 'Dark Mode',
|
|
|
|
|
icon: 'moon',
|
|
|
|
|
func: () => {
|
|
|
|
|
if (!colors.night) {
|
|
|
|
|
AsyncStorage.setItem('theme', JSON.stringify(COLOR_SCHEME_DARK));
|
|
|
|
|
changeColorScheme(COLOR_SCHEME_DARK);
|
|
|
|
|
} else {
|
|
|
|
|
AsyncStorage.setItem('theme', JSON.stringify(COLOR_SCHEME_LIGHT));
|
|
|
|
|
changeColorScheme(COLOR_SCHEME_LIGHT);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
switch: true,
|
|
|
|
|
on: colors.night ? true : false,
|
|
|
|
|
close: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Pin',
|
|
|
|
|
icon: 'tag',
|
|
|
|
|
func: () => {
|
|
|
|
|
db.pinItem(note.type, note.dateCreated);
|
|
|
|
|
localRefresh(item.type);
|
|
|
|
|
setWillRefresh(true);
|
|
|
|
|
},
|
|
|
|
|
close: false,
|
|
|
|
|
check: true,
|
|
|
|
|
on: note.pinned,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Favorite',
|
|
|
|
|
icon: 'star',
|
|
|
|
|
func: () => {
|
|
|
|
|
db.favoriteItem(note.type, note.dateCreated);
|
|
|
|
|
localRefresh(item.type);
|
|
|
|
|
setWillRefresh(true);
|
|
|
|
|
},
|
|
|
|
|
close: false,
|
|
|
|
|
check: true,
|
|
|
|
|
on: note.favorite,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Add to Vault',
|
|
|
|
|
icon: 'lock',
|
|
|
|
|
func: () => {
|
|
|
|
|
note.locked ? close('unlock') : close('lock');
|
|
|
|
|
},
|
|
|
|
|
close: true,
|
|
|
|
|
check: true,
|
|
|
|
|
on: note.locked,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
2020-01-09 20:14:51 +05:00
|
|
|
return (
|
2020-01-10 18:44:41 +05:00
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
paddingBottom: 15,
|
|
|
|
|
backgroundColor: colors.bg,
|
|
|
|
|
}}>
|
2020-01-09 20:14:51 +05:00
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
width: w - 24,
|
2020-01-10 18:44:41 +05:00
|
|
|
justifyContent: 'space-between',
|
2020-01-09 20:14:51 +05:00
|
|
|
alignItems: 'center',
|
|
|
|
|
marginHorizontal: 12,
|
|
|
|
|
paddingVertical: 10,
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
|
borderBottomColor: colors.nav,
|
|
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
{rowItemsData.map(rowItem =>
|
|
|
|
|
rowItems.includes(rowItem.name) ? (
|
2020-01-09 20:14:51 +05:00
|
|
|
<TouchableOpacity
|
2020-01-10 18:44:41 +05:00
|
|
|
onPress={rowItem.func}
|
2020-01-11 13:42:10 +05:00
|
|
|
key={rowItem.name}
|
2020-01-09 20:14:51 +05:00
|
|
|
style={{
|
|
|
|
|
alignItems: 'center',
|
2020-01-10 18:44:41 +05:00
|
|
|
width: (w - 24) / rowItems.length,
|
2020-01-09 20:14:51 +05:00
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
<Icon
|
2020-01-09 20:14:51 +05:00
|
|
|
style={{
|
2020-01-10 18:44:41 +05:00
|
|
|
width: 50,
|
|
|
|
|
height: 40,
|
2020-01-09 20:14:51 +05:00
|
|
|
borderRadius: 100,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
2020-01-10 18:44:41 +05:00
|
|
|
textAlign: 'center',
|
|
|
|
|
textAlignVertical: 'center',
|
|
|
|
|
}}
|
|
|
|
|
name={rowItem.icon}
|
|
|
|
|
size={SIZE.lg}
|
|
|
|
|
color={colors.accent}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.xs + 1,
|
|
|
|
|
color: colors.pri,
|
2020-01-09 20:14:51 +05:00
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
{rowItem.name}
|
|
|
|
|
</Text>
|
2020-01-09 20:14:51 +05:00
|
|
|
</TouchableOpacity>
|
2020-01-10 18:44:41 +05:00
|
|
|
) : null,
|
2020-01-09 20:14:51 +05:00
|
|
|
)}
|
|
|
|
|
</View>
|
|
|
|
|
|
2020-01-10 18:44:41 +05:00
|
|
|
{hasColors ? (
|
|
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
paddingHorizontal: 12,
|
|
|
|
|
width: '100%',
|
|
|
|
|
marginVertical: 10,
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
}}>
|
|
|
|
|
{['red', 'yellow', 'green', 'blue', 'purple', 'orange', 'gray'].map(
|
|
|
|
|
color => (
|
|
|
|
|
<TouchableOpacity
|
2020-01-11 13:42:10 +05:00
|
|
|
key={color}
|
2020-01-10 18:44:41 +05:00
|
|
|
onPress={() => {
|
|
|
|
|
let noteColors = note.colors;
|
2020-01-09 20:14:51 +05:00
|
|
|
|
2020-01-10 18:44:41 +05:00
|
|
|
if (noteColors.includes(color)) {
|
|
|
|
|
noteColors.splice(color, 1);
|
|
|
|
|
} else {
|
|
|
|
|
noteColors.push(color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
db.addNote({
|
|
|
|
|
dateCreated: note.dateCreated,
|
|
|
|
|
colors: noteColors,
|
|
|
|
|
content: note.content,
|
|
|
|
|
title: note.title,
|
|
|
|
|
});
|
|
|
|
|
localRefresh(item.type);
|
|
|
|
|
setWillRefresh(true);
|
|
|
|
|
}}
|
2020-01-09 20:14:51 +05:00
|
|
|
style={{
|
2020-01-10 18:44:41 +05:00
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderColor: colors.nav,
|
2020-01-09 20:14:51 +05:00
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
width: (w - 12) / 10,
|
|
|
|
|
height: (w - 12) / 10,
|
|
|
|
|
backgroundColor: color,
|
|
|
|
|
borderRadius: 100,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
}}>
|
|
|
|
|
{note.colors.includes(color) ? (
|
|
|
|
|
<Icon name="check" color="white" size={SIZE.lg} />
|
|
|
|
|
) : null}
|
|
|
|
|
</View>
|
|
|
|
|
</TouchableOpacity>
|
|
|
|
|
),
|
|
|
|
|
)}
|
|
|
|
|
</View>
|
|
|
|
|
) : null}
|
2020-01-09 20:14:51 +05:00
|
|
|
|
2020-01-10 18:44:41 +05:00
|
|
|
{hasTags ? (
|
|
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
marginHorizontal: 12,
|
|
|
|
|
marginBottom: 0,
|
|
|
|
|
borderRadius: 5,
|
|
|
|
|
borderWidth: 1.5,
|
|
|
|
|
borderColor: focused ? colors.accent : colors.nav,
|
|
|
|
|
paddingVertical: 5,
|
|
|
|
|
}}>
|
|
|
|
|
{note.tags.map(tag => (
|
|
|
|
|
<TouchableOpacity
|
2020-01-11 13:42:10 +05:00
|
|
|
key={tag}
|
2020-01-10 18:44:41 +05:00
|
|
|
onPress={() => {
|
|
|
|
|
let oldProps = {...note};
|
2020-01-09 20:14:51 +05:00
|
|
|
|
2020-01-10 18:44:41 +05:00
|
|
|
oldProps.tags.splice(oldProps.tags.indexOf(tag), 1);
|
|
|
|
|
db.addNote({
|
|
|
|
|
dateCreated: note.dateCreated,
|
|
|
|
|
content: note.content,
|
|
|
|
|
title: note.title,
|
|
|
|
|
tags: oldProps.tags,
|
|
|
|
|
});
|
|
|
|
|
localRefresh(item.type);
|
|
|
|
|
setWillRefresh(true);
|
|
|
|
|
}}
|
2020-01-09 20:14:51 +05:00
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
2020-01-10 18:44:41 +05:00
|
|
|
justifyContent: 'flex-start',
|
2020-01-09 20:14:51 +05:00
|
|
|
alignItems: 'center',
|
2020-01-10 18:44:41 +05:00
|
|
|
margin: 1,
|
|
|
|
|
paddingHorizontal: 5,
|
|
|
|
|
paddingVertical: 2.5,
|
2020-01-09 20:14:51 +05:00
|
|
|
}}>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.sm,
|
|
|
|
|
color: colors.pri,
|
|
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
color: colors.accent,
|
|
|
|
|
}}>
|
|
|
|
|
{tag.slice(0, 1)}
|
|
|
|
|
</Text>
|
|
|
|
|
{tag.slice(1)}
|
2020-01-09 20:14:51 +05:00
|
|
|
</Text>
|
2020-01-10 18:44:41 +05:00
|
|
|
</TouchableOpacity>
|
|
|
|
|
))}
|
|
|
|
|
<TextInput
|
|
|
|
|
style={{
|
|
|
|
|
backgroundColor: 'transparent',
|
|
|
|
|
minWidth: 100,
|
|
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
color: colors.pri,
|
|
|
|
|
paddingHorizontal: 5,
|
|
|
|
|
paddingVertical: 1.5,
|
|
|
|
|
margin: 1,
|
|
|
|
|
}}
|
|
|
|
|
blurOnSubmit={false}
|
|
|
|
|
ref={ref => (tagsInputRef = ref)}
|
|
|
|
|
placeholderTextColor={colors.icon}
|
|
|
|
|
onFocus={() => {
|
|
|
|
|
setFocused(true);
|
|
|
|
|
}}
|
|
|
|
|
selectionColor={colors.accent}
|
|
|
|
|
onBlur={() => {
|
|
|
|
|
setFocused(false);
|
|
|
|
|
}}
|
|
|
|
|
placeholder="#hashtag"
|
|
|
|
|
onChangeText={value => {
|
|
|
|
|
tagToAdd = value;
|
|
|
|
|
if (tagToAdd.length > 0) backPressCount = 0;
|
|
|
|
|
}}
|
|
|
|
|
onSubmitEditing={_onSubmit}
|
|
|
|
|
onKeyPress={_onKeyPress}
|
|
|
|
|
/>
|
|
|
|
|
</View>
|
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
|
|
{columnItems.length > 0 ? (
|
|
|
|
|
<View>
|
|
|
|
|
{columnItemsData.map(item =>
|
|
|
|
|
columnItems.includes(item.name) ? (
|
2020-01-09 20:14:51 +05:00
|
|
|
<TouchableOpacity
|
2020-01-11 13:42:10 +05:00
|
|
|
key={item.name}
|
2020-01-10 18:44:41 +05:00
|
|
|
activeOpacity={opacity}
|
|
|
|
|
onPress={() => {
|
|
|
|
|
item.func();
|
|
|
|
|
}}
|
2020-01-09 20:14:51 +05:00
|
|
|
style={{
|
2020-01-10 18:44:41 +05:00
|
|
|
width: '100%',
|
|
|
|
|
alignSelf: 'center',
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'flex-end',
|
|
|
|
|
paddingHorizontal: 12,
|
|
|
|
|
paddingVertical: pv + 5,
|
2020-01-09 20:14:51 +05:00
|
|
|
}}>
|
2020-01-10 18:44:41 +05:00
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
}}>
|
|
|
|
|
<Icon
|
|
|
|
|
style={{
|
|
|
|
|
width: 30,
|
|
|
|
|
}}
|
|
|
|
|
name={item.icon}
|
|
|
|
|
color={colors.pri}
|
|
|
|
|
size={SIZE.md}
|
|
|
|
|
/>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.sm,
|
|
|
|
|
color: colors.pri,
|
|
|
|
|
}}>
|
|
|
|
|
{item.name}
|
|
|
|
|
</Text>
|
|
|
|
|
</View>
|
|
|
|
|
{item.switch ? (
|
|
|
|
|
<Icon
|
|
|
|
|
size={SIZE.lg + 2}
|
|
|
|
|
color={item.on ? colors.accent : colors.icon}
|
|
|
|
|
name={item.on ? 'toggle-right' : 'toggle-left'}
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
undefined
|
|
|
|
|
)}
|
|
|
|
|
{item.check ? (
|
|
|
|
|
<TouchableOpacity
|
|
|
|
|
style={{
|
|
|
|
|
borderWidth: 2,
|
|
|
|
|
borderColor: item.on ? colors.accent : colors.icon,
|
|
|
|
|
width: 23,
|
|
|
|
|
height: 23,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderRadius: 100,
|
|
|
|
|
paddingTop: 3,
|
|
|
|
|
}}>
|
|
|
|
|
{item.on ? (
|
|
|
|
|
<Icon
|
|
|
|
|
size={SIZE.sm - 2}
|
|
|
|
|
color={colors.accent}
|
|
|
|
|
name="check"
|
|
|
|
|
/>
|
|
|
|
|
) : null}
|
|
|
|
|
</TouchableOpacity>
|
2020-01-09 20:14:51 +05:00
|
|
|
) : null}
|
|
|
|
|
</TouchableOpacity>
|
2020-01-10 18:44:41 +05:00
|
|
|
) : null,
|
|
|
|
|
)}
|
|
|
|
|
</View>
|
|
|
|
|
) : null}
|
2020-01-09 20:14:51 +05:00
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
};
|