mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fs.notionPath, minify index.cjs
This commit is contained in:
parent
b770eb64f0
commit
21d4991f38
@ -48,7 +48,8 @@ export const webFrame = globalThis.__enhancerElectronApi?.webFrame;
|
||||
* @runtime client
|
||||
* @runtime menu
|
||||
*/
|
||||
export const sendMessage = globalThis.__enhancerElectronApi?.ipcRenderer?.sendMessage;
|
||||
export const sendMessage = (channel, data) =>
|
||||
globalThis.__enhancerElectronApi.ipcRenderer.sendMessage(channel, data);
|
||||
|
||||
/**
|
||||
* send a message to the webview's parent renderer process
|
||||
@ -61,14 +62,14 @@ export const sendMessage = globalThis.__enhancerElectronApi?.ipcRenderer?.sendMe
|
||||
* @runtime client
|
||||
* @runtime menu
|
||||
*/
|
||||
export const sendMessageToHost =
|
||||
globalThis.__enhancerElectronApi?.ipcRenderer?.sendMessageToHost;
|
||||
export const sendMessageToHost = (channel, data) =>
|
||||
globalThis.__enhancerElectronApi.ipcRenderer.sendMessageToHost(channel, data);
|
||||
|
||||
/**
|
||||
* receive a message from either the main process or
|
||||
* the webview's parent renderer process
|
||||
* @param {string} channel - the message identifier to listen for
|
||||
* @param {function} listener - the message handler, passed the args (event, data)
|
||||
* @param {function} callback - the message handler, passed the args (event, data)
|
||||
*
|
||||
* @env win32
|
||||
* @env linux
|
||||
@ -76,4 +77,5 @@ export const sendMessageToHost =
|
||||
* @runtime client
|
||||
* @runtime menu
|
||||
*/
|
||||
export const onMessage = globalThis.__enhancerElectronApi?.ipcRenderer?.onMessage;
|
||||
export const onMessage = (channel, callback) =>
|
||||
globalThis.__enhancerElectronApi.ipcRenderer.onMessage(channel, callback);
|
||||
|
11
api/fs.mjs
11
api/fs.mjs
@ -46,3 +46,14 @@ export const getText = fs.getText;
|
||||
* @returns {boolean} whether or not the file exists
|
||||
*/
|
||||
export const isFile = fs.isFile;
|
||||
|
||||
/**
|
||||
* get an absolute path to files within notion
|
||||
* @param {string} path - relative to the root notion/resources/app/ e.g. renderer/search.js
|
||||
*
|
||||
* @env win32
|
||||
* @env linux
|
||||
* @env darwin
|
||||
* @runtime electron
|
||||
*/
|
||||
export const notionPath = fs.notionPath;
|
||||
|
1049
api/index.cjs
1049
api/index.cjs
File diff suppressed because one or more lines are too long
@ -9,7 +9,7 @@
|
||||
/** @module notion-enhancer/api */
|
||||
|
||||
// compiles to .cjs for use in electron:
|
||||
// npx -y esbuild insert/api/index.mjs --bundle --format=cjs --outfile=insert/api/index.cjs
|
||||
// npx -y esbuild insert/api/index.mjs --minify --bundle --format=cjs --outfile=insert/api/index.cjs
|
||||
|
||||
/** environment-specific methods and constants */
|
||||
export * as env from './env.mjs';
|
||||
@ -22,7 +22,7 @@ export * as storage from './storage.mjs';
|
||||
export * as electron from './electron.mjs';
|
||||
|
||||
/** a basic wrapper around notion's unofficial api */
|
||||
// export * as notion from './notion.mjs';
|
||||
export * as notion from './notion.mjs';
|
||||
/** helpers for formatting, validating and parsing values */
|
||||
export * as fmt from './fmt.mjs';
|
||||
/** interactions with the enhancer's repository of mods */
|
||||
|
Loading…
Reference in New Issue
Block a user