-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(removeXlink): new plugin to map xlink:href to href
Co-authored-by: Seth Falco <[email protected]>
- Loading branch information
Showing
14 changed files
with
334 additions
and
11 deletions.
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
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
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,35 @@ | ||
--- | ||
title: Remove XLink | ||
svgo: | ||
pluginId: removeXlink | ||
--- | ||
|
||
Removes XLink namespace prefixes and converts references to XLink attributes to the native SVG equivalent. | ||
|
||
Performs the following operations: | ||
|
||
* Converts `*:href` to [`href`](https://developer.mozilla.org/docs/Web/SVG/Attribute/href). | ||
* Converts `*:show` to [`target`](https://developer.mozilla.org/docs/Web/SVG/Attribute/target). | ||
* Converts `*:title` to [`<title>`](https://developer.mozilla.org/docs/Web/SVG/Element/title). | ||
* Drops all other references to the XLink namespace. | ||
* Removes XLink namespace declarations. | ||
|
||
It's recommended to use this plugin if you intend to inline SVGs into an HTML document. HTML does not support explicit namespaces, so namespace prefixes are ignored by the browser anyway. | ||
|
||
:::danger | ||
|
||
This replaces XLink with features that are only supported in the SVGO 2 spec, and so breaks compatibility with the SVG 1.1. | ||
|
||
::: | ||
|
||
## Usage | ||
|
||
<PluginUsage/> | ||
|
||
## Demo | ||
|
||
<PluginDemo/> | ||
|
||
## Implementation | ||
|
||
* https://github.com/svg/svgo/blob/main/plugins/removeXlink.js |
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"packageManager": "[email protected]", | ||
"name": "svgo", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "Nodejs-based tool for optimizing SVG vector graphics files", | ||
"license": "MIT", | ||
"keywords": [ | ||
|
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
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
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
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,187 @@ | ||
'use strict'; | ||
|
||
const { elems } = require('./_collections'); | ||
|
||
/** | ||
* @typedef {import('../lib/types').XastElement} XastElement | ||
*/ | ||
|
||
exports.name = 'removeXlink'; | ||
exports.description = | ||
'remove xlink namespace and replaces attributes with the SVG 2 equivalent where applicable'; | ||
|
||
/** URI indicating the Xlink namespace. */ | ||
const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink'; | ||
|
||
/** | ||
* Map of `xlink:show` values to the SVG 2 `target` attribute values. | ||
* | ||
* @type {Record<string, string>} | ||
* @see https://developer.mozilla.org/docs/Web/SVG/Attribute/xlink:show#usage_notes | ||
*/ | ||
const SHOW_TO_TARGET = { | ||
new: '_blank', | ||
replace: '_self', | ||
}; | ||
|
||
/** | ||
* @param {XastElement} node | ||
* @param {string[]} prefixes | ||
* @param {string} attr | ||
* @returns {string[]} | ||
*/ | ||
const findPrefixedAttrs = (node, prefixes, attr) => { | ||
return prefixes | ||
.map((prefix) => `${prefix}:${attr}`) | ||
.filter((attr) => node.attributes[attr] != null); | ||
}; | ||
|
||
/** | ||
* Removes XLink namespace prefixes and converts references to XLink attributes | ||
* to the native SVG equivalent. | ||
* | ||
* The XLink namespace is deprecated in SVG 2. | ||
* | ||
* @type {import('../lib/types').Plugin<void>} | ||
* @see https://developer.mozilla.org/docs/Web/SVG/Attribute/xlink:href | ||
*/ | ||
exports.fn = () => { | ||
/** | ||
* XLink namespace prefixes that are currently in the stack. | ||
* | ||
* @type {string[]} | ||
*/ | ||
const xlinkPrefixes = []; | ||
|
||
/** | ||
* Namespace prefixes that exist in {@link xlinkPrefixes} but were overriden | ||
* in a child element to point to another namespace, and so is not treated as | ||
* an XLink attribute. | ||
* | ||
* @type {string[]} | ||
*/ | ||
const overriddenPrefixes = []; | ||
|
||
return { | ||
element: { | ||
enter: (node) => { | ||
for (const [key, value] of Object.entries(node.attributes)) { | ||
if (key.startsWith('xmlns:')) { | ||
const prefix = key.split(':', 2)[1]; | ||
|
||
if (value === XLINK_NAMESPACE) { | ||
xlinkPrefixes.push(prefix); | ||
continue; | ||
} | ||
|
||
if (xlinkPrefixes.includes(prefix)) { | ||
overriddenPrefixes.push(prefix); | ||
} | ||
} | ||
} | ||
|
||
if ( | ||
overriddenPrefixes.some((prefix) => xlinkPrefixes.includes(prefix)) | ||
) { | ||
return; | ||
} | ||
|
||
const hrefAttrs = findPrefixedAttrs(node, xlinkPrefixes, 'href'); | ||
for (let i = hrefAttrs.length - 1; i >= 0; i--) { | ||
const attr = hrefAttrs[i]; | ||
const value = node.attributes[attr]; | ||
|
||
if (node.attributes.href != null) { | ||
delete node.attributes[attr]; | ||
continue; | ||
} | ||
|
||
node.attributes.href = value; | ||
delete node.attributes[attr]; | ||
} | ||
|
||
const showAttrs = findPrefixedAttrs(node, xlinkPrefixes, 'show'); | ||
let showHandled = node.attributes.target != null; | ||
for (let i = showAttrs.length - 1; i >= 0; i--) { | ||
const attr = showAttrs[i]; | ||
const value = node.attributes[attr]; | ||
const mapping = SHOW_TO_TARGET[value]; | ||
|
||
if (showHandled || mapping == null) { | ||
delete node.attributes[attr]; | ||
continue; | ||
} | ||
|
||
if (mapping !== elems.a.defaults?.target) { | ||
node.attributes.target = mapping; | ||
} | ||
|
||
delete node.attributes[attr]; | ||
showHandled = true; | ||
} | ||
|
||
const titleAttrs = findPrefixedAttrs(node, xlinkPrefixes, 'title'); | ||
for (let i = titleAttrs.length - 1; i >= 0; i--) { | ||
const attr = titleAttrs[i]; | ||
const value = node.attributes[attr]; | ||
const hasTitle = node.children.filter( | ||
(child) => child.type === 'element' && child.name === 'title' | ||
); | ||
|
||
if (hasTitle.length > 0) { | ||
delete node.attributes[attr]; | ||
continue; | ||
} | ||
|
||
/** @type {XastElement} */ | ||
const titleTag = { | ||
type: 'element', | ||
name: 'title', | ||
attributes: {}, | ||
children: [ | ||
{ | ||
type: 'text', | ||
value, | ||
}, | ||
], | ||
}; | ||
|
||
Object.defineProperty(titleTag, 'parentNode', { | ||
writable: true, | ||
value: node, | ||
}); | ||
|
||
node.children.unshift(titleTag); | ||
delete node.attributes[attr]; | ||
} | ||
}, | ||
exit: (node) => { | ||
for (const [key, value] of Object.entries(node.attributes)) { | ||
const [prefix, attr] = key.split(':', 2); | ||
|
||
if ( | ||
xlinkPrefixes.includes(prefix) && | ||
!overriddenPrefixes.includes(prefix) | ||
) { | ||
delete node.attributes[key]; | ||
continue; | ||
} | ||
|
||
if (key.startsWith('xmlns:')) { | ||
if (value === XLINK_NAMESPACE) { | ||
const index = xlinkPrefixes.indexOf(attr); | ||
xlinkPrefixes.splice(index, 1); | ||
delete node.attributes[key]; | ||
continue; | ||
} | ||
|
||
if (overriddenPrefixes.includes(prefix)) { | ||
const index = overriddenPrefixes.indexOf(attr); | ||
overriddenPrefixes.splice(index, 1); | ||
} | ||
} | ||
} | ||
}, | ||
}, | ||
}; | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.