mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
add suggestions
This commit is contained in:
@@ -40,7 +40,7 @@ export const ActionSheetComponent = ({
|
||||
columnItems = [],
|
||||
}) => {
|
||||
const [state, dispatch] = useTracked();
|
||||
const {colors} = state;
|
||||
const {colors, tags} = state;
|
||||
const [focused, setFocused] = useState(false);
|
||||
const [note, setNote] = useState(
|
||||
item
|
||||
@@ -107,7 +107,7 @@ export const ActionSheetComponent = ({
|
||||
let tagInputValue = note.tags[note.tags.length - 1];
|
||||
let oldProps = {...note};
|
||||
if (oldProps.tags.length === 0) return;
|
||||
//oldProps.tags.splice(oldProps.tags.length - 1);
|
||||
|
||||
await db.notes
|
||||
.note(note.id)
|
||||
.untag(oldProps.tags[oldProps.tags.length - 1]);
|
||||
@@ -117,10 +117,6 @@ export const ActionSheetComponent = ({
|
||||
tagsInputRef.setNativeProps({
|
||||
text: tagInputValue,
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
//tagsInputRef.focus();
|
||||
}, 300);
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -218,7 +214,8 @@ export const ActionSheetComponent = ({
|
||||
name: 'Restore',
|
||||
icon: 'trash',
|
||||
func: () => {
|
||||
db.restoreItem(item.dateCreated);
|
||||
// TODO
|
||||
//db.restoreItem(item.dateCreated);
|
||||
ToastEvent.show(
|
||||
item.type === 'note' ? 'Note restored' : 'Notebook restored',
|
||||
'success',
|
||||
@@ -712,7 +709,9 @@ export const ActionSheetComponent = ({
|
||||
}}>
|
||||
Suggestions:{' '}
|
||||
</Text>
|
||||
{['Notes', 'Nook'].map(tag => (
|
||||
{tags
|
||||
.filter(o => o.count > 1)
|
||||
.map(tag => (
|
||||
<TouchableOpacity
|
||||
key={tag}
|
||||
onPress={async () => {}}
|
||||
@@ -739,7 +738,7 @@ export const ActionSheetComponent = ({
|
||||
}}>
|
||||
#
|
||||
</Text>
|
||||
{tag}
|
||||
{tag.title}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
))}
|
||||
|
||||
@@ -281,7 +281,6 @@ const Editor = ({navigation, noMenu}) => {
|
||||
post('clear');
|
||||
} else if (note.content.delta) {
|
||||
let delta = await db.notes.note(id).delta();
|
||||
console.log(delta);
|
||||
post(JSON.stringify(delta));
|
||||
} else {
|
||||
post(JSON.stringify({type: 'text', value: note.content.text}));
|
||||
|
||||
Reference in New Issue
Block a user