aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/basecamp/webview.js
blob: 16eced31d4d3eb5c99754368f28ed6d078589ce4 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const _path = _interopRequireDefault(require('path'));

function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : { default: obj };
}

module.exports = Ferdi => {
  const modal = document.createElement('div');

  const waitFor = (condition, callback) => {
    if (!condition()) {
      window.setTimeout(waitFor.bind(null, condition, callback), 100);
    } else {
      callback();
    }
  };
  function showModal(text) {
    show(modal);
    modal.querySelector('p').innerHTML = text;
  }

  function hideModal() {
    hide(modal);
    modal.querySelector('p').innerHTML = '';
  }

  // Replace window.alert to hide alerts in Ferdi
  const oldAlert = window.alert;
  window.alert = function () {
    // when Google Calendar displays an alert notify the user
    showModal.apply(oldAlert, arguments);
  };

  function show(element) {
    element.style.display = 'inherit';
  }

  function hide(element) {
    element.style.display = 'none';
  }

  modal.id = 'franz-modal';
  modal.innerHTML =
    '<div class="modal-content"><span class="close">&times;</span><p></p></div>';
  modal.querySelector('.close').addEventListener('click', hideModal);
  waitFor(
    () => document.body,
    () => document.body.appendChild(modal),
  );

  document.addEventListener('keydown', e => {
    if (e.key === 'Escape') {
      hideModal();
    }
  });

  Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'modal.css'));
};