jinlin
2024-09-06 3ecb68c427a627ad8e90d8c555655e7724be2d96
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
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
203
204
205
206
207
208
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
234
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
/*
 * SVG Icon Loader 2.0
 *
 * jQuery Plugin for loading SVG icons from a single file
 *
 * Copyright (c) 2009 Alexis Deveria
 * http://a.deveria.com
 *
 * Apache 2 License
 
How to use:
 
1. Create the SVG master file that includes all icons:
 
The master SVG icon-containing file is an SVG file that contains 
<g> elements. Each <g> element should contain the markup of an SVG
icon. The <g> element has an ID that should 
correspond with the ID of the HTML element used on the page that should contain 
or optionally be replaced by the icon. Additionally, one empty element should be
added at the end with id "svg_eof".
 
2. Optionally create fallback raster images for each SVG icon.
 
3. Include the jQuery and the SVG Icon Loader scripts on your page.
 
4. Run $.svgIcons() when the document is ready:
 
$.svgIcons( file [string], options [object literal]);
 
File is the location of a local SVG or SVGz file.
 
All options are optional and can include:
 
- 'w (number)': The icon widths
 
- 'h (number)': The icon heights
 
- 'fallback (object literal)': List of raster images with each
  key being the SVG icon ID to replace, and the value the image file name.
  
- 'fallback_path (string)': The path to use for all images
  listed under "fallback"
  
- 'replace (boolean)': If set to true, HTML elements will be replaced by,
  rather than include the SVG icon.
 
- 'placement (object literal)': List with selectors for keys and SVG icon ids
  as values. This provides a custom method of adding icons.
 
- 'resize (object literal)': List with selectors for keys and numbers
  as values. This allows an easy way to resize specific icons.
  
- 'callback (function)': A function to call when all icons have been loaded. 
  Includes an object literal as its argument with as keys all icon IDs and the 
  icon as a jQuery object as its value.
 
- 'id_match (boolean)': Automatically attempt to match SVG icon ids with
  corresponding HTML id (default: true)
  
- 'no_img (boolean)': Prevent attempting to convert the icon into an <img>
  element (may be faster, help for browser consistency)
 
- 'svgz (boolean)': Indicate that the file is an SVGZ file, and thus not to
  parse as XML. SVGZ files add compression benefits, but getting data from
  them fails in Firefox 2 and older.
 
5. To access an icon at a later point without using the callback, use this:
  $.getSvgIcon(id (string));
 
This will return the icon (as jQuery object) with a given ID.
  
6. To resize icons at a later point without using the callback, use this:
  $.resizeSvgIcons(resizeOptions) (use the same way as the "resize" parameter)
 
 
Example usage #1:
 
$(function() {
  $.svgIcons('my_icon_set.svg'); // The SVG file that contains all icons
  // No options have been set, so all icons will automatically be inserted 
  // into HTML elements that match the same IDs. 
});
 
Example usage #2:
 
$(function() {
  $.svgIcons('my_icon_set.svg', { // The SVG file that contains all icons
    callback: function(icons) { // Custom callback function that sets click
                  // events for each icon
      $.each(icons, function(id, icon) {
        icon.click(function() {
          alert('You clicked on the icon with id ' + id);
        });
      });
    }
  }); //The SVG file that contains all icons
});
 
Example usage #3:
 
$(function() {
  $.svgIcons('my_icon_set.svgz', { // The SVGZ file that contains all icons
    w: 32,  // All icons will be 32px wide
    h: 32,  // All icons will be 32px high
    fallback_path: 'icons/',  // All fallback files can be found here
    fallback: {
      '#open_icon': 'open.png',  // The "open.png" will be appended to the
                     // HTML element with ID "open_icon"
      '#close_icon': 'close.png',
      '#save_icon': 'save.png'
    },
    placement: {'.open_icon','open'}, // The "open" icon will be added
                      // to all elements with class "open_icon"
    resize: function() {
      '#save_icon .svg_icon': 64  // The "save" icon will be resized to 64 x 64px
    },
    
    callback: function(icons) { // Sets background color for "close" icon 
      icons['close'].css('background','red');
    },
    
    svgz: true // Indicates that an SVGZ file is being used
    
  })
});
 
*/
 
 
(function($) {
  var svg_icons = {}, fixIDs;
 
  $.svgIcons = function(file, opts) {
    var svgns = "http://www.w3.org/2000/svg",
      xlinkns = "http://www.w3.org/1999/xlink",
      icon_w = opts.w?opts.w : 24,
      icon_h = opts.h?opts.h : 24,
      elems, svgdoc, testImg,
      icons_made = false, data_loaded = false, load_attempts = 0,
      ua = navigator.userAgent, isOpera = !!window.opera, isSafari = (ua.indexOf('Safari/') > -1 && ua.indexOf('Chrome/')==-1),
      data_pre = 'data:image/svg+xml;charset=utf-8;base64,';
      
      if(opts.svgz) {
        var data_el = $('<object data="' + file + '" type=image/svg+xml>').appendTo('body').hide();
        try {
          svgdoc = data_el[0].contentDocument;
          data_el.load(getIcons);
          getIcons(0, true); // Opera will not run "load" event if file is already cached
        } catch(err1) {
          useFallback();
        }
      } else {
        var parser = new DOMParser();
        $.ajax({
          url: file,
          dataType: 'string',
          success: function(data) {
            if(!data) {
              $(useFallback);
              return;
            }
            svgdoc = parser.parseFromString(data, "text/xml");
            $(function() {
              getIcons('ajax');
            });
          },
          error: function(err) {
            // TODO: Fix Opera widget icon bug
            if(window.opera) {
              $(function() {
                useFallback();
              });
            } else {
              if(err.responseText) {
                svgdoc = parser.parseFromString(err.responseText, "text/xml");
                if(!svgdoc.childNodes.length) {
                  $(useFallback);                 
                }
                $(function() {
                  getIcons('ajax');
                });             
              } else {
                $(useFallback);
              }
            }
          }
        });
      }
      
    function getIcons(evt, no_wait) {
      if(evt !== 'ajax') {
        if(data_loaded) return;
        // Webkit sometimes says svgdoc is undefined, other times
        // it fails to load all nodes. Thus we must make sure the "eof" 
        // element is loaded.
        svgdoc = data_el[0].contentDocument; // Needed again for Webkit
        var isReady = (svgdoc && svgdoc.getElementById('svg_eof'));
        if(!isReady && !(no_wait && isReady)) {
          load_attempts++;
          if(load_attempts < 50) {
            setTimeout(getIcons, 20);
          } else {
            useFallback();
            data_loaded = true;
          }
          return;
        }
        data_loaded = true;
      }
      
      elems = $(svgdoc.firstChild).children(); //.getElementsByTagName('foreignContent');
      
      if(!opts.no_img) {
        var testSrc = data_pre + 'PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNzUiIGhlaWdodD0iMjc1Ij48L3N2Zz4%3D';
        
        testImg = $(new Image()).attr({
          src: testSrc,
          width: 0,
          height: 0
        }).appendTo('body')
        .load(function () {
          // Safari 4 crashes, Opera and Chrome don't
          makeIcons(true);
        }).error(function () {
          makeIcons();
        });
      } else {
        setTimeout(function() {
          if(!icons_made) makeIcons();
        },500);
      }
    }
    
    var setIcon = function(target, icon, id, setID) {
      if(isOpera) icon.css('visibility','hidden');
      if(opts.replace) {
        if(setID) icon.attr('id',id);
        var cl = target.attr('class');
        if(cl) icon.attr('class','svg_icon '+cl);
        target.replaceWith(icon);
      } else {
        
        target.append(icon);
      }
      if(isOpera) {
        setTimeout(function() {
          icon.removeAttr('style');
        },1);
      }
    }
    
    var addIcon = function(icon, id) {
      if(opts.id_match === undefined || opts.id_match !== false) {
        setIcon(holder, icon, id, true);
      }
      svg_icons[id] = icon;
    }
    
    function makeIcons(toImage, fallback) {
      if(icons_made) return;
      if(opts.no_img) toImage = false;
      var holder;
      
      if(toImage) {
        var temp_holder = $(document.createElement('div'));
        temp_holder.hide().appendTo('body');
      } 
      if(fallback) {
        var path = opts.fallback_path?opts.fallback_path:'';
        $.each(fallback, function(id, imgsrc) {
          holder = $('#' + id);
          var icon = $(new Image())
            .attr({
              'class':'svg_icon',
              src: path + imgsrc,
              'width': icon_w,
              'height': icon_h,
              'alt': 'icon'
            });
          
          addIcon(icon, id);
        });
      } else {
        var len = elems.length;
        for(var i = 0; i < len; i++) {
          var elem = elems[i];
          var id = elem.id;
          if(id === 'svg_eof') break;
          holder = $('#' + id);
          var svg = elem.getElementsByTagNameNS(svgns, 'svg')[0];
          var svgroot = document.createElementNS(svgns, "svg");
          svgroot.setAttributeNS(svgns, 'viewBox', [0,0,icon_w,icon_h].join(' '));
          // Make flexible by converting width/height to viewBox
          var w = svg.getAttribute('width');
          var h = svg.getAttribute('height');
          svg.removeAttribute('width');
          svg.removeAttribute('height');
          
          var vb = svg.getAttribute('viewBox');
          if(!vb) {
            svg.setAttribute('viewBox', [0,0,w,h].join(' '));
          }
          
          // Not using jQuery to be a bit faster
          svgroot.setAttribute('xmlns', svgns);
          svgroot.setAttribute('width', icon_w);
          svgroot.setAttribute('height', icon_h);
          svgroot.setAttribute("xmlns:xlink", xlinkns);
          svgroot.setAttribute("class", 'svg_icon');
 
          // Without cloning, Firefox will make another GET request.
          // With cloning, causes issue in Opera/Win/Non-EN
          if(!isOpera) svg = svg.cloneNode(true);
          
          svgroot.appendChild(svg);
      
          if(toImage) {
            // Without cloning, Safari will crash
            // With cloning, causes issue in Opera/Win/Non-EN
            var svgcontent = isOpera?svgroot:svgroot.cloneNode(true);
            temp_holder.empty().append(svgroot);
            var str = data_pre + encode64(temp_holder.html());
            var icon = $(new Image())
              .attr({'class':'svg_icon', src:str});
          } else {
            var icon = fixIDs($(svgroot), i);
          }
          addIcon(icon, id);
        }
 
      }
      
      if(opts.placement) {
        $.each(opts.placement, function(sel, id) {
          if(!svg_icons[id]) return;
          $(sel).each(function(i) {
            var copy = svg_icons[id].clone();
            if(i > 0 && !toImage) copy = fixIDs(copy, i, true);
            setIcon($(this), copy, id);
          })
        });
      }
      if(!fallback) {
        if(toImage) temp_holder.remove();
        if(data_el) data_el.remove();
        if(testImg) testImg.remove();
      }
      if(opts.resize) $.resizeSvgIcons(opts.resize);
      icons_made = true;
 
      if(opts.callback) opts.callback(svg_icons);
    }
    
    fixIDs = function(svg_el, svg_num, force) {
      var defs = svg_el.find('defs');
      if(!defs.length) return svg_el;
      
      if(isOpera) {
        var id_elems = defs.find('*').filter(function() {
          return !!this.id;
        });
      } else {
        var id_elems = defs.find('[id]');
      }
      
      var all_elems = svg_el[0].getElementsByTagName('*'), len = all_elems.length;
      
      id_elems.each(function(i) {
        var id = this.id;
        var no_dupes = ($(svgdoc).find('#' + id).length <= 1);
        if(isOpera) no_dupes = false; // Opera didn't clone svg_el, so not reliable
        // if(!force && no_dupes) return;
        var new_id = 'x' + id + svg_num + i;
        this.id = new_id;
        
        var old_val = 'url(#' + id + ')';
        var new_val = 'url(#' + new_id + ')';
 
        for(var i = 0; i < len; i++) {
          var elem = all_elems[i];
          if(elem.getAttribute('fill') === old_val) {
            elem.setAttribute('fill', new_val);
          }
          if(elem.getAttribute('stroke') === old_val) {
            elem.setAttribute('stroke', new_val);
          }
          if(elem.getAttribute('filter') === old_val) {
            elem.setAttribute('filter', new_val);
          }
        }
      });
      return svg_el;
    }
    
    function useFallback() {
      if(file.indexOf('.svgz') != -1) {
        var reg_file = file.replace('.svgz','.svg');
        if(window.console) {
          console.log('.svgz failed, trying with .svg');
        }
        $.svgIcons(reg_file, opts);
      } else if(opts.fallback) {
        makeIcons(false, opts.fallback);
      }
    }
        
    function encode64(input) {
      // base64 strings are 4/3 larger than the original string
      if(window.btoa) return window.btoa(input);
      var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
      var output = new Array( Math.floor( (input.length + 2) / 3 ) * 4 );
      var chr1, chr2, chr3;
      var enc1, enc2, enc3, enc4;
      var i = 0, p = 0;
    
      do {
        chr1 = input.charCodeAt(i++);
        chr2 = input.charCodeAt(i++);
        chr3 = input.charCodeAt(i++);
    
        enc1 = chr1 >> 2;
        enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
        enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
        enc4 = chr3 & 63;
    
        if (isNaN(chr2)) {
          enc3 = enc4 = 64;
        } else if (isNaN(chr3)) {
          enc4 = 64;
        }
    
        output[p++] = _keyStr.charAt(enc1);
        output[p++] = _keyStr.charAt(enc2);
        output[p++] = _keyStr.charAt(enc3);
        output[p++] = _keyStr.charAt(enc4);
      } while (i < input.length);
    
      return output.join('');
    }
  }
  
  $.getSvgIcon = function(id, uniqueClone) { 
    var icon = svg_icons[id];
    if(uniqueClone && icon) {
      icon = fixIDs(icon, 0, true).clone(true);
    }
    return icon; 
  }
  
  $.resizeSvgIcons = function(obj) {
    // FF2 and older don't detect .svg_icon, so we change it detect svg elems instead
    var change_sel = !$('.svg_icon:first').length;
    $.each(obj, function(sel, size) {
      var arr = $.isArray(size);
      var w = arr?size[0]:size,
        h = arr?size[1]:size;
      if(change_sel) {
        sel = sel.replace(/\.svg_icon/g,'svg');
      }
      $(sel).each(function() {
        this.setAttribute('width', w);
        this.setAttribute('height', h);
        if(window.opera && window.widget) {
          this.parentNode.style.width = w + 'px';
          this.parentNode.style.height = h + 'px';
        }
      });
    });
  }
  
})(jQuery);