summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/behaviors/gl_emoji.js
blob: 9034563d9b31f164d4cad042723016acd8b92fab (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import 'document-register-element';
import isEmojiUnicodeSupported from '../emoji/support';
import { initEmojiMap, getEmojiInfo, emojiFallbackImageSrc, emojiImageTag } from '../emoji';

class GlEmoji extends HTMLElement {
  constructor() {
    super();

    let emojiUnicode = this.textContent.trim();
    const { fallbackSpriteClass, fallbackSrc, forceFallback } = this.dataset;
    let { name, unicodeVersion } = this.dataset;

    initEmojiMap()
      .then(() => {
        if (!unicodeVersion) {
          const emojiInfo = getEmojiInfo(name);

          if (emojiInfo) {
            if (name !== emojiInfo.name) {
              ({ name } = emojiInfo);
              this.dataset.name = emojiInfo.name;
            }
            unicodeVersion = emojiInfo.u;
            this.dataset.uni = unicodeVersion;

            if (forceFallback === 'true' && !fallbackSpriteClass) {
              this.innerHTML = emojiImageTag(name, emojiFallbackImageSrc(name));
            } else {
              emojiUnicode = emojiInfo.e;
              this.innerHTML = emojiInfo.e;
            }

            this.title = emojiInfo.d;
          }
        }

        const isEmojiUnicode =
          this.childNodes &&
          Array.prototype.every.call(this.childNodes, childNode => childNode.nodeType === 3);
        const hasImageFallback = fallbackSrc && fallbackSrc.length > 0;
        const hasCssSpriteFalback = fallbackSpriteClass && fallbackSpriteClass.length > 0;

        if (
          emojiUnicode &&
          isEmojiUnicode &&
          !isEmojiUnicodeSupported(emojiUnicode, unicodeVersion)
        ) {
          // CSS sprite fallback takes precedence over image fallback
          if (hasCssSpriteFalback) {
            if (!gon.emoji_sprites_css_added && gon.emoji_sprites_css_path) {
              const emojiSpriteLinkTag = document.createElement('link');
              emojiSpriteLinkTag.setAttribute('rel', 'stylesheet');
              emojiSpriteLinkTag.setAttribute('href', gon.emoji_sprites_css_path);
              document.head.appendChild(emojiSpriteLinkTag);
              gon.emoji_sprites_css_added = true;
            }
            // IE 11 doesn't like adding multiple at once :(
            this.classList.add('emoji-icon');
            this.classList.add(fallbackSpriteClass);
          } else if (hasImageFallback) {
            this.innerHTML = emojiImageTag(name, fallbackSrc);
          } else {
            const src = emojiFallbackImageSrc(name);
            this.innerHTML = emojiImageTag(name, src);
          }
        }
      })
      .catch(error => {
        // Only reject is already handled in initEmojiMap
        throw error;
      });
  }
}

export default function installGlEmojiElement() {
  if (!customElements.get('gl-emoji')) {
    customElements.define('gl-emoji', GlEmoji);
  }
}