forked from strarsis/svgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new plugin: add classes to SVG element
- Loading branch information
1 parent
d0c3355
commit 41abc27
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,5 @@ plugins: | |
- transformsWithOnePath | ||
- sortAttrs | ||
- removeTitle | ||
- removeDesc | ||
- removeDesc | ||
- addClassesToSVGElement |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
'use strict'; | ||
|
||
exports.type = 'full'; | ||
|
||
exports.active = true; | ||
|
||
/** | ||
* Add classnames to an outer <svg> element. | ||
* | ||
* @author April Arcus | ||
*/ | ||
exports.fn = function(data, params) { | ||
|
||
var classNames = params.classNames || [ params.className ] | ||
var svg = data.content[0] | ||
|
||
if (svg.isElem('svg')) { | ||
|
||
if (svg.hasAttr('class')) { | ||
svg.attr('class').value = | ||
svg.attr('class').value | ||
.split(' ') | ||
.concat(classNames) | ||
.join(' '); | ||
} else { | ||
svg.addAttr({ | ||
name: 'class', | ||
value: classNames.join(' '), | ||
prefix: '', | ||
local: 'class' | ||
}); | ||
} | ||
|
||
} | ||
|
||
return data; | ||
|
||
}; |