Skip to content

Commit 296ae9c

Browse files
committedFeb 1, 2020
Support rich text for Cut, Copy, and Paste items
Fixes #92
1 parent 1410532 commit 296ae9c

File tree

5 files changed

+32
-13
lines changed

5 files changed

+32
-13
lines changed
 

‎fixture.html

+3
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@ <h1>Fixture</h1>
2626
<br>
2727
<a href="https://github.com">Link</a>
2828
<webview id="webview" src="http://example.org">
29+
<br>
30+
<br>
31+
<b>Copy <span style="color: hotPink">rich</span> text</b>
2932
</body>
3033
</html>

‎index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ declare namespace contextMenu {
7272
interface ActionOptions {
7373
/**
7474
Apply a transformation to the content of the action.
75+
76+
If you use this on `cut`, `copy`, or `paste`, they will convert rich text to plain text.
7577
*/
7678
readonly transform?: (content: string) => string;
7779
}

‎index.js

+25-8
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,14 @@ const create = (win, options) => {
5757
enabled: can('Cut'),
5858
visible: props.isEditable,
5959
click(menuItem) {
60-
props.selectionText = menuItem.transform ? menuItem.transform(props.selectionText) : props.selectionText;
61-
electron.clipboard.writeText(props.selectionText);
62-
webContents(win).delete();
60+
const target = webContents(win);
61+
62+
if (!menuItem.transform && target) {
63+
target.cut();
64+
} else {
65+
props.selectionText = menuItem.transform ? menuItem.transform(props.selectionText) : props.selectionText;
66+
electron.clipboard.writeText(props.selectionText);
67+
}
6368
}
6469
}),
6570
copy: decorateMenuItem({
@@ -68,8 +73,14 @@ const create = (win, options) => {
6873
enabled: can('Copy'),
6974
visible: props.isEditable || hasText,
7075
click(menuItem) {
71-
props.selectionText = menuItem.transform ? menuItem.transform(props.selectionText) : props.selectionText;
72-
electron.clipboard.writeText(props.selectionText);
76+
const target = webContents(win);
77+
78+
if (!menuItem.transform && target) {
79+
target.copy();
80+
} else {
81+
props.selectionText = menuItem.transform ? menuItem.transform(props.selectionText) : props.selectionText;
82+
electron.clipboard.writeText(props.selectionText);
83+
}
7384
}
7485
}),
7586
paste: decorateMenuItem({
@@ -78,9 +89,15 @@ const create = (win, options) => {
7889
enabled: editFlags.canPaste,
7990
visible: props.isEditable,
8091
click(menuItem) {
81-
let clipboardContent = electron.clipboard.readText(props.selectionText);
82-
clipboardContent = menuItem.transform ? menuItem.transform(clipboardContent) : clipboardContent;
83-
webContents(win).insertText(clipboardContent);
92+
const target = webContents(win);
93+
94+
if (menuItem.transform) {
95+
let clipboardContent = electron.clipboard.readText(props.selectionText);
96+
clipboardContent = menuItem.transform ? menuItem.transform(clipboardContent) : clipboardContent;
97+
target.insertText(clipboardContent);
98+
} else {
99+
target.paste();
100+
}
84101
}
85102
}),
86103
saveImage: decorateMenuItem({

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Context menu for your Electron app",
55
"license": "MIT",
66
"repository": "sindresorhus/electron-context-menu",
7+
"funding": "https://github.com/sponsors/sindresorhus",
78
"author": {
89
"name": "Sindre Sorhus",
910
"email": "sindresorhus@gmail.com",

‎readme.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Electron doesn't have a built-in context menu. You're supposed to handle that yo
88

99
You can use this module directly in both the main and renderer process.
1010

11-
1211
## Install
1312

1413
```
@@ -17,7 +16,6 @@ $ npm install electron-context-menu
1716

1817
*Requires Electron 4 or later.*
1918

20-
2119
## Usage
2220

2321
```js
@@ -49,7 +47,6 @@ let mainWindow;
4947
})();
5048
```
5149

52-
5350
## API
5451

5552
### contextMenu(options?)
@@ -174,7 +171,7 @@ Type: `Function`
174171

175172
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.
176173

177-
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.
174+
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.
178175

179176
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.
180177

@@ -231,7 +228,6 @@ Example:
231228
}
232229
```
233230

234-
235231
## Related
236232

237233
- [electron-util](https://github.com/sindresorhus/electron-util) - Useful utilities for developing Electron apps and modules

0 commit comments

Comments
 (0)
Please sign in to comment.