Skip to content

Commit c2d5551

Browse files
author
Alan Smith
authoredJul 12, 2020
Pass dictionary suggestions to the menu option function (#111)
1 parent 3764cb5 commit c2d5551

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed
 

‎index.d.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,12 @@ declare namespace contextMenu {
228228
/**
229229
This option lets you manually pick what menu items to include. It's meant for advanced needs. The default menu with the other options should be enough for most use-cases, and it ensures correct behavior, for example, correct order of menu items. So prefer the `append` and `prepend` option instead of `menu` whenever possible.
230230
231-
The function passed to this option is expected to return an array of [`MenuItem` constructor options](https://electronjs.org/docs/api/menu-item/). The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed.
231+
The function passed to this option is expected to return an array of [`MenuItem` constructor options](https://electronjs.org/docs/api/menu-item/).
232+
233+
The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed. If you use `transform` on `cut`, `copy`, or `paste`, they will convert rich text to plain text.
234+
The second argument is [this `params` object](https://electronjs.org/docs/api/web-contents/#event-context-menu).
235+
The third argument is the [BrowserWindow](https://electronjs.org/docs/api/browser-window/) the context menu was requested for.
236+
The last argument is an Array of menu items for dictionary suggestions. This should be used if you wish to implement spellcheck in your custom menu.
232237
233238
Even though you include an action, it will still only be shown/enabled when appropriate. For example, the `saveImage` action is only shown when right-clicking an image.
234239
@@ -251,7 +256,8 @@ declare namespace contextMenu {
251256
readonly menu?: (
252257
defaultActions: Actions,
253258
params: ContextMenuParams,
254-
browserWindow: BrowserWindow | WebviewTag | WebContents
259+
browserWindow: BrowserWindow | WebviewTag | WebContents,
260+
dictionarySuggestions: MenuItemConstructorOptions[] // eslint-disable-line @typescript-eslint/prefer-readonly-parameter-types
255261
) => MenuItemConstructorOptions[];
256262
}
257263
}

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ const create = (win, options) => {
245245
];
246246

247247
if (options.menu) {
248-
menuTemplate = options.menu(defaultActions, props, win);
248+
menuTemplate = options.menu(defaultActions, props, win, dictionarySuggestions);
249249
}
250250

251251
if (options.prepend) {

‎readme.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Type: `Function`
200200

201201
This option lets you manually pick what menu items to include. It's meant for advanced needs. The default menu with the other options should be enough for most use-cases, and it ensures correct behavior, for example, correct order of menu items. So prefer the `append` and `prepend` option instead of `menu` whenever possible.
202202

203-
The function passed to this option is expected to return [`MenuItem[]`](https://electronjs.org/docs/api/menu-item/). The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed. If you use `transform` on `cut`, `copy`, or `paste`, they will convert rich text to plain text.
203+
The function passed to this option is expected to return [`MenuItem[]`](https://electronjs.org/docs/api/menu-item/). The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed. If you use `transform` on `cut`, `copy`, or `paste`, they will convert rich text to plain text. The second argument is [this `params` object](https://electronjs.org/docs/api/web-contents/#event-context-menu). The third argument is the [BrowserWindow](https://electronjs.org/docs/api/browser-window/) the context menu was requested for. The last argument is an Array of menu items for dictionary suggestions. This should be used if you wish to implement spellcheck in your custom menu.
204204

205205
Even though you include an action, it will still only be shown/enabled when appropriate. For example, the `saveImage` action is only shown when right-clicking an image.
206206

@@ -240,7 +240,9 @@ Example for actions:
240240

241241
```js
242242
{
243-
menu: actions => [
243+
menu: (actions, props, browserWindow, dictionarySuggestions) => [
244+
...dictionarySuggestions,
245+
actions.separator(),
244246
actions.copyLink({
245247
transform: content => `modified_link_${content}`
246248
}),

0 commit comments

Comments
 (0)
Please sign in to comment.