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

114 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-11-17 16:02:19 +05:00
import React, {useState} from 'react';
import {
View,
Text,
TouchableOpacity,
ScrollView,
Dimensions,
FlatList,
2019-11-28 21:40:37 +05:00
TouchableWithoutFeedback,
2019-11-17 16:02:19 +05:00
} from 'react-native';
import {
COLOR_SCHEME,
SIZE,
br,
ph,
pv,
opacity,
FONT,
WEIGHT,
} from '../../common/common';
import Icon from 'react-native-vector-icons/Ionicons';
import {Reminder} from '../Reminder';
2019-11-28 21:40:37 +05:00
import {getElevation, timeSince} from '../../utils/utils';
import NavigationService from '../../services/NavigationService';
2019-11-17 16:02:19 +05:00
const w = Dimensions.get('window').width;
const h = Dimensions.get('window').height;
const NoteItem = props => {
const [colors, setColors] = useState(COLOR_SCHEME);
const item = props.item;
return (
<View
style={{
marginHorizontal: w * 0.05,
backgroundColor: '#f0f0f0',
marginVertical: h * 0.015,
borderRadius: br,
justifyContent: 'center',
alignItems: 'center',
2019-11-28 21:40:37 +05:00
flexDirection: 'row',
2019-11-17 16:02:19 +05:00
padding: pv,
}}>
2019-11-28 21:40:37 +05:00
<TouchableOpacity
activeOpacity={1}
onPress={() => {
NavigationService.navigate('Editor', {
note: item,
});
}}
2019-11-17 16:02:19 +05:00
style={{
2019-11-28 21:40:37 +05:00
width: '95%',
2019-11-17 16:02:19 +05:00
}}>
2019-11-28 21:40:37 +05:00
<>
<Text
numberOfLines={1}
style={{
color: colors.pri,
fontSize: SIZE.md,
fontFamily: WEIGHT.bold,
maxWidth: '100%',
marginBottom: 5,
}}>
{item.title.replace('\n', '')}
</Text>
<View
style={{
justifyContent: 'flex-start',
alignItems: 'flex-start',
width: '100%',
}}>
<Text
style={{
fontSize: SIZE.xs + 1,
color: colors.icon,
fontFamily: WEIGHT.regular,
width: '100%',
maxWidth: '100%',
paddingRight: ph,
}}>
{item.headline}
</Text>
2019-11-17 17:48:56 +05:00
2019-11-28 21:40:37 +05:00
<Text
style={{
color: colors.accent,
fontSize: SIZE.xxs,
textAlignVertical: 'center',
fontFamily: WEIGHT.regular,
}}>
{timeSince(item.dateCreated) + ' '}
</Text>
</View>
</>
</TouchableOpacity>
<TouchableOpacity
2019-11-17 17:48:56 +05:00
style={{
2019-11-28 21:40:37 +05:00
width: '5%',
justifyContent: 'center',
minHeight: 70,
alignItems: 'center',
2019-11-17 17:48:56 +05:00
}}>
2019-11-28 21:40:37 +05:00
<Icon name="md-more" size={SIZE.lg} color={colors.icon} />
</TouchableOpacity>
2019-11-17 16:02:19 +05:00
</View>
);
};
export default NoteItem;