aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-14 15:58:46 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-14 15:58:46 +0100
commit413bf160f1922eb56a3ea84eb1e13b04f2628662 (patch)
treecfe77ec858dd97d5d1f85ebecf90e7a38b90c68a /src
parentremove unecessary console logs (diff)
downloadferdium-app-413bf160f1922eb56a3ea84eb1e13b04f2628662.tar.gz
ferdium-app-413bf160f1922eb56a3ea84eb1e13b04f2628662.tar.zst
ferdium-app-413bf160f1922eb56a3ea84eb1e13b04f2628662.zip
Remove IME handlers
Diffstat (limited to 'src')
-rw-r--r--src/helpers/webview-ime-focus-helpers.js38
-rw-r--r--src/webview/ime.js10
-rw-r--r--src/webview/plugin.js1
3 files changed, 0 insertions, 49 deletions
diff --git a/src/helpers/webview-ime-focus-helpers.js b/src/helpers/webview-ime-focus-helpers.js
deleted file mode 100644
index 2593a5f26..000000000
--- a/src/helpers/webview-ime-focus-helpers.js
+++ /dev/null
@@ -1,38 +0,0 @@
1module.exports.releaseDocumentFocus = () => {
2 const element = document.createElement('span');
3 document.body.appendChild(element);
4
5 const range = document.createRange();
6 range.setStart(element, 0);
7
8 const selection = window.getSelection();
9 selection.removeAllRanges();
10 selection.addRange(range);
11 selection.removeAllRanges();
12
13 document.body.removeChild(element);
14};
15
16module.exports.claimDocumentFocus = () => {
17 const { activeElement } = document;
18 const selection = window.getSelection();
19
20 let selectionStart;
21 let selectionEnd;
22 let range;
23
24 if (activeElement) ({ selectionStart, selectionEnd } = activeElement);
25 if (selection.rangeCount) range = selection.getRangeAt(0);
26
27 const restoreOriginalSelection = () => {
28 if (selectionStart >= 0 && selectionEnd >= 0) {
29 activeElement.selectionStart = selectionStart;
30 activeElement.selectionEnd = selectionEnd;
31 } else if (range) {
32 selection.addRange(range);
33 }
34 };
35
36 exports.releaseDocumentFocus();
37 window.requestAnimationFrame(restoreOriginalSelection);
38};
diff --git a/src/webview/ime.js b/src/webview/ime.js
deleted file mode 100644
index 43df6267c..000000000
--- a/src/webview/ime.js
+++ /dev/null
@@ -1,10 +0,0 @@
1const { ipcRenderer } = require('electron');
2const { claimDocumentFocus } = require('../helpers/webview-ime-focus-helpers');
3
4ipcRenderer.on('claim-document-focus', claimDocumentFocus);
5
6window.addEventListener('DOMContentLoaded', () => {
7 if (document.querySelector('[autofocus]')) {
8 ipcRenderer.sendToHost('autofocus');
9 }
10});
diff --git a/src/webview/plugin.js b/src/webview/plugin.js
index c877132b1..e2daf09dd 100644
--- a/src/webview/plugin.js
+++ b/src/webview/plugin.js
@@ -5,7 +5,6 @@ import RecipeWebview from './lib/RecipeWebview';
5 5
6import Spellchecker from './spellchecker.js'; 6import Spellchecker from './spellchecker.js';
7import './notifications.js'; 7import './notifications.js';
8import './ime.js';
9 8
10const spellchecker = new Spellchecker(); 9const spellchecker = new Spellchecker();
11 10