2019-12-10 16:32:04 +05:00
|
|
|
import React, {useEffect, useState, createRef, useRef} from 'react';
|
|
|
|
|
import {
|
|
|
|
|
ScrollView,
|
|
|
|
|
View,
|
|
|
|
|
Text,
|
|
|
|
|
TouchableOpacity,
|
|
|
|
|
SafeAreaView,
|
|
|
|
|
Platform,
|
|
|
|
|
FlatList,
|
|
|
|
|
DeviceEventEmitter,
|
|
|
|
|
ActivityIndicator,
|
2019-12-14 16:00:16 +05:00
|
|
|
KeyboardAvoidingView,
|
2019-12-10 16:32:04 +05:00
|
|
|
} from 'react-native';
|
|
|
|
|
import NavigationService from '../../services/NavigationService';
|
|
|
|
|
import {
|
|
|
|
|
COLOR_SCHEME,
|
|
|
|
|
SIZE,
|
|
|
|
|
br,
|
|
|
|
|
ph,
|
|
|
|
|
pv,
|
|
|
|
|
opacity,
|
|
|
|
|
FONT,
|
|
|
|
|
WEIGHT,
|
|
|
|
|
COLOR_SCHEME_DARK,
|
|
|
|
|
setColorScheme,
|
|
|
|
|
COLOR_SCHEME_LIGHT,
|
|
|
|
|
clearThemeUpdateListener,
|
|
|
|
|
onThemeUpdate,
|
|
|
|
|
} from '../../common/common';
|
|
|
|
|
|
|
|
|
|
import Icon from 'react-native-vector-icons/Feather';
|
|
|
|
|
|
|
|
|
|
import {getElevation, w, h, Toast} from '../../utils/utils';
|
|
|
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
|
|
|
|
import {useForceUpdate} from '../../views/ListsEditor';
|
|
|
|
|
import {AnimatedSafeAreaView} from '../../views/Home';
|
|
|
|
|
import {TextInput} from 'react-native-gesture-handler';
|
2019-12-14 19:26:44 +05:00
|
|
|
import {useAppContext} from '../../provider/useAppContext';
|
2019-12-10 16:32:04 +05:00
|
|
|
|
|
|
|
|
let tagsInputRef;
|
|
|
|
|
|
|
|
|
|
export const EditorMenu = ({close = () => {}, hide, update = () => {}}) => {
|
2019-12-14 19:26:44 +05:00
|
|
|
const {colors} = useAppContext();
|
2019-12-10 16:32:04 +05:00
|
|
|
const forceUpdate = useForceUpdate();
|
|
|
|
|
const [tags, setTags] = useState([]);
|
|
|
|
|
const [selectedColor, setSelectedColor] = useState([]);
|
|
|
|
|
let tagToAdd = null;
|
|
|
|
|
let backPressCount = 0;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<AnimatedSafeAreaView
|
2019-12-10 22:03:39 +05:00
|
|
|
transition={['backgroundColor', 'opacity']}
|
2019-12-14 16:00:16 +05:00
|
|
|
duration={300}
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
|
|
|
|
height: '100%',
|
|
|
|
|
opacity: hide ? 0 : 1,
|
|
|
|
|
backgroundColor: colors.night ? colors.navbg : colors.navbg,
|
|
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<KeyboardAvoidingView
|
|
|
|
|
style={{height: '100%'}}
|
|
|
|
|
behavior={Platform.OS === 'ios' ? 'padding' : null}>
|
|
|
|
|
<ScrollView
|
|
|
|
|
contentContainerStyle={{
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
height: '100%',
|
|
|
|
|
}}>
|
|
|
|
|
<View>
|
|
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
height: 2,
|
|
|
|
|
width: '100%',
|
|
|
|
|
marginBottom: 5,
|
|
|
|
|
marginTop: Platform.OS == 'ios' ? h * 0.01 : h * 0.03,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<FlatList
|
|
|
|
|
data={[
|
|
|
|
|
{
|
|
|
|
|
name: 'Dark Mode',
|
|
|
|
|
icon: 'moon',
|
|
|
|
|
func: () => {
|
|
|
|
|
if (!colors.night) {
|
|
|
|
|
AsyncStorage.setItem(
|
|
|
|
|
'theme',
|
|
|
|
|
JSON.stringify(COLOR_SCHEME_DARK),
|
|
|
|
|
);
|
|
|
|
|
setColorScheme(COLOR_SCHEME_DARK);
|
|
|
|
|
} else {
|
|
|
|
|
AsyncStorage.setItem(
|
|
|
|
|
'theme',
|
|
|
|
|
JSON.stringify(COLOR_SCHEME_LIGHT),
|
|
|
|
|
);
|
|
|
|
|
setColorScheme(COLOR_SCHEME_LIGHT);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
switch: true,
|
|
|
|
|
on: colors.night ? true : false,
|
|
|
|
|
close: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Pinned',
|
|
|
|
|
icon: 'tag',
|
|
|
|
|
func: () => NavigationService.push('Home'),
|
|
|
|
|
close: true,
|
|
|
|
|
check: true,
|
|
|
|
|
on: true,
|
2019-12-10 16:32:04 +05:00
|
|
|
},
|
|
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
{
|
|
|
|
|
name: 'Add to Favorites',
|
|
|
|
|
icon: 'star',
|
|
|
|
|
func: () =>
|
|
|
|
|
NavigationService.push('Folders', {
|
|
|
|
|
title: 'Notebooks',
|
|
|
|
|
}),
|
|
|
|
|
close: true,
|
|
|
|
|
check: true,
|
|
|
|
|
on: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Share ',
|
|
|
|
|
icon: 'share',
|
|
|
|
|
func: () => NavigationService.push('Lists'),
|
|
|
|
|
close: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Move to Notebook',
|
|
|
|
|
icon: 'arrow-right',
|
|
|
|
|
func: () => NavigationService.push('Favorites'),
|
|
|
|
|
close: true,
|
|
|
|
|
},
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
{
|
|
|
|
|
name: 'Delete',
|
|
|
|
|
icon: 'trash',
|
|
|
|
|
func: () => NavigationService.push('Trash'),
|
|
|
|
|
close: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Locked',
|
|
|
|
|
icon: 'lock',
|
|
|
|
|
func: () => NavigationService.push('Settings'),
|
|
|
|
|
close: true,
|
|
|
|
|
check: true,
|
|
|
|
|
on: false,
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
keyExtractor={(item, index) => item.name}
|
|
|
|
|
renderItem={({item, index}) => (
|
|
|
|
|
<TouchableOpacity
|
|
|
|
|
activeOpacity={opacity}
|
|
|
|
|
onPress={() => {
|
|
|
|
|
item.close === false ? null : close();
|
|
|
|
|
item.func();
|
|
|
|
|
}}
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
width: '100%',
|
|
|
|
|
alignSelf: 'center',
|
2019-12-10 16:32:04 +05:00
|
|
|
flexDirection: 'row',
|
2019-12-14 16:00:16 +05:00
|
|
|
justifyContent: 'space-between',
|
2019-12-10 16:32:04 +05:00
|
|
|
alignItems: 'flex-end',
|
2019-12-14 16:00:16 +05:00
|
|
|
paddingHorizontal: '5%',
|
|
|
|
|
paddingVertical: pv + 5,
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<View
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
flexDirection: 'row',
|
2019-12-10 16:32:04 +05:00
|
|
|
alignItems: 'center',
|
|
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<Icon
|
|
|
|
|
style={{
|
|
|
|
|
width: 30,
|
|
|
|
|
}}
|
|
|
|
|
name={item.icon}
|
|
|
|
|
color={colors.icon}
|
|
|
|
|
size={SIZE.md}
|
|
|
|
|
/>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
2019-12-14 21:01:39 +05:00
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.sm,
|
2019-12-14 16:00:16 +05:00
|
|
|
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>
|
|
|
|
|
) : null}
|
|
|
|
|
</TouchableOpacity>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
<TouchableOpacity
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
width: '100%',
|
|
|
|
|
alignSelf: 'center',
|
2019-12-10 16:32:04 +05:00
|
|
|
flexDirection: 'row',
|
2019-12-14 16:00:16 +05:00
|
|
|
justifyContent: 'space-between',
|
2019-12-10 16:32:04 +05:00
|
|
|
alignItems: 'flex-end',
|
2019-12-14 16:00:16 +05:00
|
|
|
paddingHorizontal: '5%',
|
|
|
|
|
marginTop: 15,
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<View
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<Icon
|
|
|
|
|
style={{
|
|
|
|
|
width: 30,
|
|
|
|
|
}}
|
|
|
|
|
name="tag"
|
|
|
|
|
color={colors.icon}
|
|
|
|
|
size={SIZE.md}
|
|
|
|
|
/>
|
2019-12-10 16:32:04 +05:00
|
|
|
<Text
|
|
|
|
|
style={{
|
2019-12-14 21:01:39 +05:00
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.sm,
|
2019-12-14 16:00:16 +05:00
|
|
|
color: colors.pri,
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
Add Tags
|
2019-12-10 16:32:04 +05:00
|
|
|
</Text>
|
2019-12-14 16:00:16 +05:00
|
|
|
</View>
|
|
|
|
|
</TouchableOpacity>
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
<ScrollView
|
|
|
|
|
contentContainerStyle={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
marginHorizontal: '5%',
|
|
|
|
|
marginBottom: 0,
|
|
|
|
|
marginTop: 10,
|
|
|
|
|
borderRadius: 5,
|
|
|
|
|
backgroundColor: colors.nav,
|
|
|
|
|
}}>
|
|
|
|
|
{tags.map(item => (
|
|
|
|
|
<TouchableOpacity
|
|
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
margin: 5,
|
|
|
|
|
paddingHorizontal: 5,
|
|
|
|
|
paddingVertical: 2.5,
|
|
|
|
|
backgroundColor: colors.accent,
|
|
|
|
|
borderRadius: 5,
|
|
|
|
|
}}>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
2019-12-14 21:01:39 +05:00
|
|
|
fontFamily: WEIGHT.regular,
|
2019-12-14 16:00:16 +05:00
|
|
|
fontSize: SIZE.sm - 2,
|
|
|
|
|
color: 'white',
|
|
|
|
|
}}>
|
|
|
|
|
{item}
|
|
|
|
|
</Text>
|
|
|
|
|
</TouchableOpacity>
|
|
|
|
|
))}
|
|
|
|
|
<TextInput
|
|
|
|
|
style={{
|
|
|
|
|
backgroundColor: 'transparent',
|
|
|
|
|
minWidth: 100,
|
2019-12-14 21:01:39 +05:00
|
|
|
fontFamily: WEIGHT.regular,
|
2019-12-14 16:00:16 +05:00
|
|
|
color: colors.pri,
|
|
|
|
|
paddingHorizontal: 5,
|
|
|
|
|
paddingVertical: 2.5,
|
|
|
|
|
margin: 5,
|
|
|
|
|
}}
|
|
|
|
|
ref={ref => (tagsInputRef = ref)}
|
|
|
|
|
placeholderTextColor={colors.icon}
|
|
|
|
|
placeholder="#hashtag"
|
|
|
|
|
onChangeText={value => {
|
|
|
|
|
tagToAdd = value;
|
|
|
|
|
if (tagToAdd.length > 0) backPressCount = 0;
|
|
|
|
|
}}
|
|
|
|
|
onKeyPress={event => {
|
|
|
|
|
if (event.nativeEvent.key === 'Backspace') {
|
|
|
|
|
if (backPressCount === 0 && !tagToAdd) {
|
|
|
|
|
backPressCount = 1;
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (backPressCount === 1 && !tagToAdd) {
|
|
|
|
|
backPressCount = 0;
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
let tagInputValue = tags[tags.length - 1];
|
|
|
|
|
let allTags = tags;
|
|
|
|
|
if (allTags.length === 1) return;
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
allTags.splice(allTags.length - 1);
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
setTags(allTags);
|
|
|
|
|
tagsInputRef.setNativeProps({
|
|
|
|
|
text: tagInputValue,
|
|
|
|
|
});
|
|
|
|
|
forceUpdate();
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
tagsInputRef.focus();
|
|
|
|
|
}, 300);
|
|
|
|
|
}
|
2019-12-10 16:32:04 +05:00
|
|
|
}
|
2019-12-14 16:00:16 +05:00
|
|
|
}}
|
|
|
|
|
onSubmitEditing={() => {
|
|
|
|
|
if (!tagToAdd || tagToAdd === '#') return;
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
let tag = tagToAdd;
|
|
|
|
|
if (tag[0] !== '#') {
|
|
|
|
|
tag = '#' + tag;
|
|
|
|
|
}
|
|
|
|
|
if (tag.includes(' ')) {
|
|
|
|
|
tag = tag.replace(' ', '_');
|
|
|
|
|
}
|
|
|
|
|
let allTags = [...tags];
|
|
|
|
|
allTags.push(tag);
|
|
|
|
|
tagsInputRef.setNativeProps({
|
|
|
|
|
text: '#',
|
|
|
|
|
});
|
|
|
|
|
setTags(allTags);
|
|
|
|
|
tagToAdd = '';
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
tagsInputRef.focus();
|
|
|
|
|
}, 300);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</ScrollView>
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
<TouchableOpacity
|
|
|
|
|
onPress={() => {
|
|
|
|
|
close();
|
|
|
|
|
NavigationService.navigate('Tags');
|
|
|
|
|
}}
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
width: '100%',
|
|
|
|
|
alignSelf: 'center',
|
2019-12-10 16:32:04 +05:00
|
|
|
flexDirection: 'row',
|
2019-12-14 16:00:16 +05:00
|
|
|
justifyContent: 'space-between',
|
2019-12-10 16:32:04 +05:00
|
|
|
alignItems: 'flex-end',
|
2019-12-14 16:00:16 +05:00
|
|
|
paddingHorizontal: '5%',
|
|
|
|
|
marginTop: 15,
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<View
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
alignItems: 'center',
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<Icon
|
|
|
|
|
style={{
|
|
|
|
|
width: 30,
|
|
|
|
|
}}
|
|
|
|
|
name="tag"
|
|
|
|
|
color={colors.icon}
|
|
|
|
|
size={SIZE.md}
|
|
|
|
|
/>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
2019-12-14 21:01:39 +05:00
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.sm,
|
2019-12-14 16:00:16 +05:00
|
|
|
color: colors.pri,
|
|
|
|
|
}}>
|
2019-12-14 21:01:39 +05:00
|
|
|
Add to Color
|
2019-12-14 16:00:16 +05:00
|
|
|
</Text>
|
|
|
|
|
</View>
|
|
|
|
|
</TouchableOpacity>
|
2019-12-10 16:32:04 +05:00
|
|
|
|
2019-12-14 16:00:16 +05:00
|
|
|
<ScrollView
|
|
|
|
|
contentContainerStyle={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
paddingHorizontal: '5%',
|
|
|
|
|
marginBottom: 15,
|
|
|
|
|
marginTop: 10,
|
|
|
|
|
}}>
|
|
|
|
|
{[
|
|
|
|
|
'red',
|
|
|
|
|
'yellow',
|
|
|
|
|
'green',
|
|
|
|
|
'blue',
|
|
|
|
|
'purple',
|
|
|
|
|
'orange',
|
|
|
|
|
'gray',
|
|
|
|
|
].map(item => (
|
2019-12-10 16:32:04 +05:00
|
|
|
<TouchableOpacity
|
|
|
|
|
onPress={() => {
|
|
|
|
|
setSelectedColor(item);
|
|
|
|
|
}}
|
|
|
|
|
style={{
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
marginRight: 5,
|
|
|
|
|
marginBottom: 5,
|
|
|
|
|
borderWidth: 1.5,
|
|
|
|
|
borderRadius: 100,
|
|
|
|
|
padding: 3,
|
|
|
|
|
borderColor:
|
|
|
|
|
selectedColor === item ? colors.pri : colors.navbg,
|
|
|
|
|
}}>
|
|
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
width: 40,
|
|
|
|
|
height: 40,
|
|
|
|
|
backgroundColor: item,
|
|
|
|
|
borderRadius: 100,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
}}>
|
|
|
|
|
{selectedColor === item ? (
|
|
|
|
|
<Icon name="check" color="white" size={SIZE.md} />
|
|
|
|
|
) : null}
|
|
|
|
|
</View>
|
|
|
|
|
</TouchableOpacity>
|
2019-12-14 16:00:16 +05:00
|
|
|
))}
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</View>
|
|
|
|
|
<View
|
2019-12-10 16:32:04 +05:00
|
|
|
style={{
|
2019-12-14 16:00:16 +05:00
|
|
|
paddingHorizontal: '5%',
|
|
|
|
|
paddingVertical: pv + 5,
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
2019-12-10 16:32:04 +05:00
|
|
|
}}>
|
2019-12-14 16:00:16 +05:00
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
color: colors.icon,
|
|
|
|
|
fontFamily: WEIGHT.regular,
|
|
|
|
|
fontSize: SIZE.xs,
|
|
|
|
|
}}>
|
|
|
|
|
Last Synced: 5 secs ago.
|
|
|
|
|
</Text>
|
|
|
|
|
{}
|
|
|
|
|
<ActivityIndicator color={colors.accent} />
|
|
|
|
|
</View>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</KeyboardAvoidingView>
|
2019-12-10 16:32:04 +05:00
|
|
|
</AnimatedSafeAreaView>
|
|
|
|
|
);
|
|
|
|
|
};
|