aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/plugin.js
blob: e2daf09dd17be3bdf349d8dca83b3de41c990570 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { ipcRenderer } from 'electron';
import path from 'path';

import RecipeWebview from './lib/RecipeWebview';

import Spellchecker from './spellchecker.js';
import './notifications.js';

const spellchecker = new Spellchecker();

ipcRenderer.on('initializeRecipe', (e, data) => {
  const modulePath = path.join(data.recipe.path, 'webview.js');
  // Delete module from cache
  delete require.cache[require.resolve(modulePath)];
  try {
    // eslint-disable-next-line
    require(modulePath)(new RecipeWebview(), data);
  } catch (err) {
    console.error(err);
  }
});

ipcRenderer.on('settings-update', (e, data) => {
  if (data.enableSpellchecking) {
    if (!spellchecker.isEnabled) {
      spellchecker.enable();

      // TODO: this does not work yet, needs more testing
      // if (data.spellcheckingLanguage !== 'auto') {
      //   console.log('set spellchecking language to', data.spellcheckingLanguage);
      //   spellchecker.switchLanguage(data.spellcheckingLanguage);
      // }
    }
  }
});

document.addEventListener('DOMContentLoaded', () => {
  ipcRenderer.sendToHost('hello');
}, false);