diff --git a/src/public/app/services/branches.js b/src/public/app/services/branches.js index c96c46cd3..ef04344b9 100644 --- a/src/public/app/services/branches.js +++ b/src/public/app/services/branches.js @@ -11,7 +11,7 @@ async function moveBeforeBranch(branchIdsToMove, beforeBranchId) { branchIdsToMove = filterSearchBranches(branchIdsToMove); if (beforeBranchId === 'root') { - alert('Cannot move notes before root note.'); + toastService.showError('Cannot move notes before root note.'); return; } @@ -19,7 +19,7 @@ async function moveBeforeBranch(branchIdsToMove, beforeBranchId) { const resp = await server.put(`branches/${branchIdToMove}/move-before/${beforeBranchId}`); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); return; } } @@ -32,7 +32,7 @@ async function moveAfterBranch(branchIdsToMove, afterBranchId) { const afterNote = await froca.getBranch(afterBranchId).getNote(); if (afterNote.noteId === 'root' || afterNote.noteId === hoistedNoteService.getHoistedNoteId()) { - alert('Cannot move notes after root note.'); + toastService.showError('Cannot move notes after root note.'); return; } @@ -42,7 +42,7 @@ async function moveAfterBranch(branchIdsToMove, afterBranchId) { const resp = await server.put(`branches/${branchIdToMove}/move-after/${afterBranchId}`); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); return; } } @@ -62,7 +62,7 @@ async function moveToParentNote(branchIdsToMove, newParentBranchId) { const resp = await server.put(`branches/${branchIdToMove}/move-to/${newParentBranchId}`); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); return; } } @@ -127,7 +127,7 @@ async function moveNodeUpInHierarchy(node) { const resp = await server.put('branches/' + node.data.branchId + '/move-after/' + node.getParent().data.branchId); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); return; } @@ -203,7 +203,7 @@ async function cloneNoteToBranch(childNoteId, parentBranchId, prefix) { }); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); } } @@ -213,7 +213,7 @@ async function cloneNoteToNote(childNoteId, parentNoteId, prefix) { }); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); } } @@ -222,7 +222,7 @@ async function cloneNoteAfter(noteId, afterBranchId) { const resp = await server.put('notes/' + noteId + '/clone-after/' + afterBranchId); if (!resp.success) { - alert(resp.message); + toastService.showError(resp.message); } } diff --git a/src/public/app/services/entrypoints.js b/src/public/app/services/entrypoints.js index 44033f766..116877976 100644 --- a/src/public/app/services/entrypoints.js +++ b/src/public/app/services/entrypoints.js @@ -179,7 +179,7 @@ export default class Entrypoints extends Component { const resp = await server.post("sql/execute/" + note.noteId); if (!resp.success) { - alert("Error occurred while executing SQL query: " + resp.message); + toastService.showError("Error occurred while executing SQL query: " + resp.message); } await appContext.triggerEvent('sqlQueryResults', {ntxId: ntxId, results: resp.results}); diff --git a/src/public/app/services/ws.js b/src/public/app/services/ws.js index 512096a02..113d1f0ad 100644 --- a/src/public/app/services/ws.js +++ b/src/public/app/services/ws.js @@ -175,7 +175,7 @@ async function consumeFrontendUpdateData() { else { console.log("nonProcessedEntityChanges causing the timeout", nonProcessedEntityChanges); - alert(`Encountered error "${e.message}", check out the console.`); + toastService.showError(`Encountered error "${e.message}", check out the console.`); } } diff --git a/src/public/app/widgets/buttons/calendar.js b/src/public/app/widgets/buttons/calendar.js index d7a396a8e..3c60ec132 100644 --- a/src/public/app/widgets/buttons/calendar.js +++ b/src/public/app/widgets/buttons/calendar.js @@ -4,6 +4,7 @@ import dateNoteService from "../../services/date_notes.js"; import server from "../../services/server.js"; import appContext from "../../services/app_context.js"; import RightDropdownButtonWidget from "./right_dropdown_button.js"; +import toastService from "../../services/toast.js"; const DROPDOWN_TPL = `