local file saving/reading
This commit is contained in:
@@ -1,24 +1,25 @@
|
||||
import { contextBridge, ipcRenderer } from 'electron'
|
||||
import { electronAPI } from '@electron-toolkit/preload'
|
||||
|
||||
// Custom APIs for renderer
|
||||
const api = {
|
||||
openNoteWindow: (noteId) => {
|
||||
ipcRenderer.send('open-note-window', noteId)
|
||||
},
|
||||
listNotes: () => ipcRenderer.invoke('notes:list'),
|
||||
createNote: (path, content) =>
|
||||
ipcRenderer.invoke('notes:create', { path, content }),
|
||||
createNoteDir: (path) => ipcRenderer.invoke('notes:createDir', path),
|
||||
readNote: (path) => ipcRenderer.invoke('notes:read', path),
|
||||
updateNote: (path, content) =>
|
||||
ipcRenderer.invoke('notes:update', { path, content }),
|
||||
}
|
||||
|
||||
// Use `contextBridge` APIs to expose Electron APIs to
|
||||
// renderer only if context isolation is enabled, otherwise
|
||||
// just add to the DOM global.
|
||||
if (process.contextIsolated) {
|
||||
try {
|
||||
contextBridge.exposeInMainWorld('electron', electronAPI)
|
||||
contextBridge.exposeInMainWorld('api', api)
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
}
|
||||
} else {
|
||||
window.electron = electronAPI
|
||||
window.api = api
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user