Blame view

node_modules/svgo/plugins/sortAttrs.js 1.5 KB
aaac7fed   liuqimichale   add
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
  'use strict';
  
  exports.type = 'perItem';
  
  exports.active = false;
  
  exports.description = 'sorts element attributes (disabled by default)';
  
  exports.params = {
  	order: [
  		'id',
  		'width', 'height',
  		'x', 'x1', 'x2',
  		'y', 'y1', 'y2',
  		'cx', 'cy', 'r',
  		'fill', 'stroke', 'marker',
  		'd', 'points'
  	]
  };
  
  /**
   * Sort element attributes for epic readability.
   *
   * @param {Object} item current iteration item
   * @param {Object} params plugin params
   *
   * @author Nikolay Frantsev
   */
  exports.fn = function(item, params) {
  
  	var attrs = [],
  		sorted = {},
  		orderlen = params.order.length + 1;
  
  	if (item.elem) {
  
  		item.eachAttr(function(attr) {
  			attrs.push(attr);
  		});
  
  		attrs.sort(function(a, b) {
  			if (a.prefix != b.prefix) {
  				// xmlns attributes implicitly have the prefix xmlns
  				if (a.prefix == 'xmlns')
  					return -1;
  				if (b.prefix == 'xmlns')
  					return 1;
  				return a.prefix < b.prefix ? -1 : 1;
  			}
  
  			var aindex = orderlen;
  			var bindex = orderlen;
  
  			for (var i = 0; i < params.order.length; i++) {
  				if (a.name == params.order[i]) {
  					aindex = i;
  				} else if (a.name.indexOf(params.order[i] + '-') === 0) {
  					aindex = i + .5;
  				}
  				if (b.name == params.order[i]) {
  					bindex = i;
  				} else if (b.name.indexOf(params.order[i] + '-') === 0) {
  					bindex = i + .5;
  				}
  			}
  
  			if (aindex != bindex) {
  				return aindex - bindex;
  			}
  			return a.name < b.name ? -1 : 1;
  		});
  
  		attrs.forEach(function (attr) {
  			sorted[attr.name] = attr;
  		});
  
  		item.attrs = sorted;
  
  	}
  
  };