Blame view

bower_components/l20n/dist/bundle/testing/l20n.js 9.52 KB
0e9aeacd   root   localization l20n
1
2
  (function () { 'use strict';
  
0e9aeacd   root   localization l20n
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
    // match the opening angle bracket (<) in HTML tags, and HTML entities like
    // &amp;, &#0038;, &#x0026;.
    const reOverlay = /<|&#?\w+;/;
  
    const allowed = {
      elements: [
        'a', 'em', 'strong', 'small', 's', 'cite', 'q', 'dfn', 'abbr', 'data',
        'time', 'code', 'var', 'samp', 'kbd', 'sub', 'sup', 'i', 'b', 'u',
        'mark', 'ruby', 'rt', 'rp', 'bdi', 'bdo', 'span', 'br', 'wbr'
      ],
      attributes: {
        global: [ 'title', 'aria-label', 'aria-valuetext', 'aria-moz-hint' ],
        a: [ 'download' ],
        area: [ 'download', 'alt' ],
        // value is special-cased in isAttrAllowed
        input: [ 'alt', 'placeholder' ],
        menuitem: [ 'label' ],
        menu: [ 'label' ],
        optgroup: [ 'label' ],
        option: [ 'label' ],
        track: [ 'label' ],
        img: [ 'alt' ],
        textarea: [ 'placeholder' ],
        th: [ 'abbr']
      }
    };
  
    function overlayElement(element, translation) {
      const value = translation.value;
  
      if (typeof value === 'string') {
        if (!reOverlay.test(value)) {
          element.textContent = value;
        } else {
          // start with an inert template element and move its children into
          // `element` but such that `element`'s own children are not replaced
          const tmpl = element.ownerDocument.createElement('template');
          tmpl.innerHTML = value;
          // overlay the node with the DocumentFragment
          overlay(element, tmpl.content);
        }
      }
  
      for (let key in translation.attrs) {
        const attrName = camelCaseToDashed(key);
        if (isAttrAllowed({ name: attrName }, element)) {
          element.setAttribute(attrName, translation.attrs[key]);
        }
      }
    }
  
    // The goal of overlay is to move the children of `translationElement`
    // into `sourceElement` such that `sourceElement`'s own children are not
    // replaced, but onle have their text nodes and their attributes modified.
    //
    // We want to make it possible for localizers to apply text-level semantics to
    // the translations and make use of HTML entities. At the same time, we
    // don't trust translations so we need to filter unsafe elements and
    // attribtues out and we don't want to break the Web by replacing elements to
    // which third-party code might have created references (e.g. two-way
    // bindings in MVC frameworks).
    function overlay(sourceElement, translationElement) {
      const result = translationElement.ownerDocument.createDocumentFragment();
      let k, attr;
  
      // take one node from translationElement at a time and check it against
      // the allowed list or try to match it with a corresponding element
      // in the source
      let childElement;
      while ((childElement = translationElement.childNodes[0])) {
        translationElement.removeChild(childElement);
  
        if (childElement.nodeType === childElement.TEXT_NODE) {
          result.appendChild(childElement);
          continue;
        }
  
        const index = getIndexOfType(childElement);
        const sourceChild = getNthElementOfType(sourceElement, childElement, index);
        if (sourceChild) {
          // there is a corresponding element in the source, let's use it
          overlay(sourceChild, childElement);
          result.appendChild(sourceChild);
          continue;
        }
  
        if (isElementAllowed(childElement)) {
          const sanitizedChild = childElement.ownerDocument.createElement(
            childElement.nodeName);
          overlay(sanitizedChild, childElement);
          result.appendChild(sanitizedChild);
          continue;
        }
  
        // otherwise just take this child's textContent
        result.appendChild(
          translationElement.ownerDocument.createTextNode(
            childElement.textContent));
      }
  
      // clear `sourceElement` and append `result` which by this time contains
      // `sourceElement`'s original children, overlayed with translation
      sourceElement.textContent = '';
      sourceElement.appendChild(result);
  
      // if we're overlaying a nested element, translate the allowed
      // attributes; top-level attributes are handled in `translateElement`
      // XXX attributes previously set here for another language should be
      // cleared if a new language doesn't use them; https://bugzil.la/922577
      if (translationElement.attributes) {
        for (k = 0, attr; (attr = translationElement.attributes[k]); k++) {
          if (isAttrAllowed(attr, sourceElement)) {
            sourceElement.setAttribute(attr.name, attr.value);
          }
        }
      }
    }
  
    // XXX the allowed list should be amendable; https://bugzil.la/922573
    function isElementAllowed(element) {
      return allowed.elements.indexOf(element.tagName.toLowerCase()) !== -1;
    }
  
    function isAttrAllowed(attr, element) {
      const attrName = attr.name.toLowerCase();
      const tagName = element.tagName.toLowerCase();
      // is it a globally safe attribute?
      if (allowed.attributes.global.indexOf(attrName) !== -1) {
        return true;
      }
      // are there no allowed attributes for this element?
      if (!allowed.attributes[tagName]) {
        return false;
      }
      // is it allowed on this element?
      // XXX the allowed list should be amendable; https://bugzil.la/922573
      if (allowed.attributes[tagName].indexOf(attrName) !== -1) {
        return true;
      }
      // special case for value on inputs with type button, reset, submit
      if (tagName === 'input' && attrName === 'value') {
        const type = element.type.toLowerCase();
        if (type === 'submit' || type === 'button' || type === 'reset') {
          return true;
        }
      }
      return false;
    }
  
    // Get n-th immediate child of context that is of the same type as element.
    // XXX Use querySelector(':scope > ELEMENT:nth-of-type(index)'), when:
    // 1) :scope is widely supported in more browsers and 2) it works with
    // DocumentFragments.
    function getNthElementOfType(context, element, index) {
      /* jshint boss:true */
      let nthOfType = 0;
      for (let i = 0, child; child = context.children[i]; i++) {
        if (child.nodeType === child.ELEMENT_NODE &&
            child.tagName === element.tagName) {
          if (nthOfType === index) {
            return child;
          }
          nthOfType++;
        }
      }
      return null;
    }
  
    // Get the index of the element among siblings of the same type.
    function getIndexOfType(element) {
      let index = 0;
      let child;
      while ((child = element.previousElementSibling)) {
        if (child.tagName === element.tagName) {
          index++;
        }
      }
      return index;
    }
  
    function camelCaseToDashed(string) {
      // XXX workaround for https://bugzil.la/1141934
      if (string === 'ariaValueText') {
        return 'aria-valuetext';
      }
  
      return string
        .replace(/[A-Z]/g, function (match) {
          return '-' + match.toLowerCase();
        })
        .replace(/^-/, '');
    }
  
    const reHtml = /[&<>]/g;
    const htmlEntities = {
      '&': '&amp;',
      '<': '&lt;',
      '>': '&gt;',
    };
  
c5169e0e   Renato De Donato   a new hope
203
204
205
206
207
208
    function getResourceLinks(head) {
      return Array.prototype.map.call(
        head.querySelectorAll('link[rel="localization"]'),
        el => el.getAttribute('href'));
    }
  
0e9aeacd   root   localization l20n
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
    function setAttributes(element, id, args) {
      element.setAttribute('data-l10n-id', id);
      if (args) {
        element.setAttribute('data-l10n-args', JSON.stringify(args));
      }
    }
  
    function getAttributes(element) {
      return {
        id: element.getAttribute('data-l10n-id'),
        args: JSON.parse(element.getAttribute('data-l10n-args'))
      };
    }
  
    function getTranslatables(element) {
      const nodes = Array.from(element.querySelectorAll('[data-l10n-id]'));
  
      if (typeof element.hasAttribute === 'function' &&
          element.hasAttribute('data-l10n-id')) {
        nodes.push(element);
      }
  
      return nodes;
    }
  
c5169e0e   Renato De Donato   a new hope
234
    function translateMutations(view, langs, mutations) {
0e9aeacd   root   localization l20n
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
      const targets = new Set();
  
      for (let mutation of mutations) {
        switch (mutation.type) {
          case 'attributes':
            targets.add(mutation.target);
            break;
          case 'childList':
            for (let addedNode of mutation.addedNodes) {
              if (addedNode.nodeType === addedNode.ELEMENT_NODE) {
                if (addedNode.childElementCount) {
                  getTranslatables(addedNode).forEach(targets.add.bind(targets));
                } else {
                  if (addedNode.hasAttribute('data-l10n-id')) {
                    targets.add(addedNode);
                  }
                }
              }
            }
            break;
        }
      }
  
      if (targets.size === 0) {
        return;
      }
  
c5169e0e   Renato De Donato   a new hope
262
      translateElements(view, langs, Array.from(targets));
0e9aeacd   root   localization l20n
263
264
    }
  
c5169e0e   Renato De Donato   a new hope
265
266
    function translateFragment(view, langs, frag) {
      return translateElements(view, langs, getTranslatables(frag));
0e9aeacd   root   localization l20n
267
268
    }
  
c5169e0e   Renato De Donato   a new hope
269
    function getElementsTranslation(view, langs, elems) {
0e9aeacd   root   localization l20n
270
271
272
273
274
275
276
277
278
      const keys = elems.map(elem => {
        const id = elem.getAttribute('data-l10n-id');
        const args = elem.getAttribute('data-l10n-args');
        return args ? [
          id,
          JSON.parse(args.replace(reHtml, match => htmlEntities[match]))
        ] : id;
      });
  
c5169e0e   Renato De Donato   a new hope
279
      return view._resolveEntities(langs, keys);
0e9aeacd   root   localization l20n
280
281
    }
  
c5169e0e   Renato De Donato   a new hope
282
283
    function translateElements(view, langs, elements) {
      return getElementsTranslation(view, langs, elements).then(
0e9aeacd   root   localization l20n
284
285
286
287
        translations => applyTranslations(view, elements, translations));
    }
  
    function applyTranslations(view, elems, translations) {
c5169e0e   Renato De Donato   a new hope
288
      view._disconnect();
0e9aeacd   root   localization l20n
289
290
291
      for (let i = 0; i < elems.length; i++) {
        overlayElement(elems[i], translations[i]);
      }
c5169e0e   Renato De Donato   a new hope
292
      view._observe();
0e9aeacd   root   localization l20n
293
294
295
296
    }
  
  
    var dom = {
c5169e0e   Renato De Donato   a new hope
297
      getResourceLinks: getResourceLinks,
0e9aeacd   root   localization l20n
298
299
300
301
302
303
304
305
306
307
308
      setAttributes: setAttributes,
      getAttributes: getAttributes,
      translateMutations: translateMutations,
      translateFragment: translateFragment
    };
  
    window.L20n = {
      dom
    };
  
  })();