aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/helpers.js
blob: 69d4f313203436df906438266d25803f11cb3f58 (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
window.createImage = (attrs = {}) => {
  const container = document.createElement('div');
  const image = document.createElement('img');

  if (!attrs.src) {
    attrs.src = '/base/docs/images/picture.jpg';
  }

  Object.keys(attrs).forEach((attr) => {
    image[attr] = attrs[attr];
  });

  container.appendChild(image);
  document.body.appendChild(container);

  return image;
};

window.createEvent = (type, data) => {
  let event;

  if (typeof Event === 'function' && typeof CustomEvent === 'function') {
    if (typeof data === 'undefined') {
      event = new Event(type, {
        bubbles: true,
        cancelable: true,
      });
    } else {
      event = new CustomEvent(type, {
        detail: data,
        bubbles: true,
        cancelable: true,
      });
    }
  } else if (typeof data === 'undefined') {
    event = document.createEvent('Event');
    event.initEvent(type, true, true);
  } else {
    event = document.createEvent('CustomEvent');
    event.initCustomEvent(type, true, true, data);
  }

  event.buttons = 1;

  return event;
};