fs.notionPath, minify index.cjs

This commit is contained in:
dragonwocky 2021-12-08 22:40:09 +11:00
parent b770eb64f0
commit 21d4991f38
4 changed files with 34 additions and 1042 deletions

View File

@ -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);

View File

@ -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;

File diff suppressed because one or more lines are too long

View File

@ -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 */