Files
notesnook/apps/mobile/app/utils/functions.js

163 lines
4.8 KiB
JavaScript
Raw Normal View History

2022-08-30 16:13:11 +05:00
/* This file is part of the Notesnook project (https://notesnook.com/)
*
* Copyright (C) 2022 Streetwriters (Private) Limited
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { Linking } from "react-native";
import { history } from ".";
import { eSendEvent, ToastEvent } from "../services/event-manager";
import Navigation from "../services/navigation";
import SearchService from "../services/search";
import { useSelectionStore } from "../stores/use-selection-store";
import { useMenuStore } from "../stores/use-menu-store";
import { db } from "../common/database";
import { eClearEditor } from "./events";
2020-11-14 10:02:38 +05:00
export const deleteItems = async (item) => {
2021-06-15 13:52:07 +05:00
if (item && db.monographs.isPublished(item.id)) {
ToastEvent.show({
heading: "Can not delete note",
message: "Unpublish note to delete it",
type: "error",
context: "global"
2021-12-11 17:34:52 +05:00
});
2021-06-15 13:52:07 +05:00
return;
}
2020-12-31 19:54:08 +05:00
if (item && item.id && history.selectedItemsList.length === 0) {
2020-11-14 12:25:57 +05:00
history.selectedItemsList = [];
history.selectedItemsList.push(item);
}
2020-11-14 10:02:38 +05:00
let notes = history.selectedItemsList.filter((i) => i.type === "note");
let notebooks = history.selectedItemsList.filter(
(i) => i.type === "notebook"
);
let topics = history.selectedItemsList.filter((i) => i.type === "topic");
2021-12-11 17:34:52 +05:00
2020-12-16 12:29:36 +05:00
if (notes?.length > 0) {
2021-12-11 17:34:52 +05:00
let ids = notes
.map((i) => {
2021-12-11 17:34:52 +05:00
if (db.monographs.isPublished(i.id)) {
ToastEvent.show({
heading: "Some notes are published",
message: "Unpublish published notes to delete them",
type: "error",
context: "global"
2021-12-11 17:34:52 +05:00
});
return null;
}
return i.id;
})
.filter((n) => n !== null);
2021-06-15 13:52:07 +05:00
2020-12-31 14:18:38 +05:00
await db.notes.delete(...ids);
2021-12-31 09:05:44 +05:00
2022-04-24 16:30:49 +05:00
Navigation.queueRoutesForUpdate(
"TaggedNotes",
"ColoredNotes",
"TopicNotes",
"Favorites",
"Notes",
"Trash"
2022-04-24 16:30:49 +05:00
);
2020-12-16 12:29:36 +05:00
eSendEvent(eClearEditor);
}
if (topics?.length > 0) {
for (var i = 0; i < topics.length; i++) {
let it = topics[i];
await db.notebooks.notebook(it.notebookId).topics.delete(it.id);
2020-11-14 12:25:57 +05:00
}
2021-12-31 09:05:44 +05:00
2021-12-31 15:19:54 +05:00
// layoutmanager.withAnimation(150);
Navigation.queueRoutesForUpdate("Notebook", "Notebooks");
2021-06-05 21:10:20 +05:00
useMenuStore.getState().setMenuPins();
2021-02-20 15:03:02 +05:00
ToastEvent.show({
heading: "Topics deleted",
type: "success"
2021-02-20 15:03:02 +05:00
});
2020-12-16 12:29:36 +05:00
}
if (notebooks?.length > 0) {
let ids = notebooks.map((i) => i.id);
2020-12-31 14:18:38 +05:00
await db.notebooks.delete(...ids);
2021-12-31 09:05:44 +05:00
2021-12-31 15:19:54 +05:00
//layoutmanager.withAnimation(150);
2022-04-24 16:30:49 +05:00
Navigation.queueRoutesForUpdate(
"TaggedNotes",
"ColoredNotes",
"TopicNotes",
"Favorites",
"Notes",
"Notebooks",
"Trash"
2022-04-24 16:30:49 +05:00
);
2021-06-05 21:10:20 +05:00
useMenuStore.getState().setMenuPins();
2020-11-14 12:25:57 +05:00
}
2020-11-14 10:02:38 +05:00
let msgPart = history.selectedItemsList.length === 1 ? " item" : " items";
let message = history.selectedItemsList.length + msgPart + " moved to trash.";
2020-11-14 10:02:38 +05:00
2020-11-14 12:25:57 +05:00
let itemsCopy = [...history.selectedItemsList];
2021-01-01 15:29:10 +05:00
if (topics.length === 0 && (notes.length > 0 || notebooks.length > 0)) {
2021-02-20 15:03:02 +05:00
ToastEvent.show({
heading: message,
type: "success",
2021-02-20 15:03:02 +05:00
func: async () => {
2021-12-11 17:34:52 +05:00
let trash = db.trash.all;
2020-12-16 12:29:36 +05:00
let ids = [];
2020-11-14 12:25:57 +05:00
for (var i = 0; i < itemsCopy.length; i++) {
let it = itemsCopy[i];
let trashItem = trash.find((item) => item.id === it.id);
2020-12-16 12:29:36 +05:00
ids.push(trashItem.id);
2020-11-14 12:25:57 +05:00
}
2020-12-31 14:18:58 +05:00
await db.trash.restore(...ids);
2021-12-31 09:05:44 +05:00
2021-12-31 15:19:54 +05:00
//layoutmanager.withAnimation(150);
2022-04-24 16:30:49 +05:00
Navigation.queueRoutesForUpdate(
"TaggedNotes",
"ColoredNotes",
"TopicNotes",
"Favorites",
"Notes",
"Notebook",
"Notebooks",
"Trash"
2022-04-24 16:30:49 +05:00
);
2021-06-05 21:10:20 +05:00
useMenuStore.getState().setMenuPins();
useMenuStore.getState().setColorNotes();
2020-11-14 12:25:57 +05:00
ToastEvent.hide();
},
actionText: "Undo"
2021-02-20 15:03:02 +05:00
});
2020-11-14 12:25:57 +05:00
}
2021-06-07 11:53:27 +05:00
history.selectedItemsList = [];
Navigation.queueRoutesForUpdate("Trash");
2021-12-31 12:35:39 +05:00
useSelectionStore.getState().clearSelection(true);
2021-12-08 23:15:27 +05:00
useMenuStore.getState().setMenuPins();
2021-06-05 21:10:20 +05:00
useMenuStore.getState().setColorNotes();
console.log("running search again");
2022-03-23 12:23:51 +05:00
SearchService.updateAndSearch();
2021-01-01 15:29:10 +05:00
};
2021-02-10 10:09:48 +05:00
export const openLinkInBrowser = async (link) => {
2021-02-10 10:09:48 +05:00
try {
const url = link;
2022-04-15 23:17:33 +05:00
Linking.openURL(url);
2021-02-10 10:09:48 +05:00
} catch (error) {
console.log(error.message);
}
2021-02-16 16:11:10 +05:00
};