chushihua
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
// vue compiler module for transforming `<tag>:<attribute>` to `require`
|
||||
|
||||
const urlToRequire = require('../url-to-require')
|
||||
|
||||
const defaultOptions = {
|
||||
video: ['src', 'poster'],
|
||||
source: 'src',
|
||||
img: 'src',
|
||||
image: 'xlink:href'
|
||||
}
|
||||
|
||||
module.exports = userOptions => {
|
||||
const options = userOptions
|
||||
? Object.assign({}, defaultOptions, userOptions)
|
||||
: defaultOptions
|
||||
|
||||
return {
|
||||
postTransformNode: node => {
|
||||
transform(node, options)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function transform (node, options) {
|
||||
for (const tag in options) {
|
||||
if ((tag === '*' || node.tag === tag) && node.attrs) {
|
||||
const attributes = options[tag]
|
||||
if (typeof attributes === 'string') {
|
||||
node.attrs.some(attr => rewrite(attr, attributes))
|
||||
} else if (Array.isArray(attributes)) {
|
||||
attributes.forEach(item => node.attrs.some(attr => rewrite(attr, item)))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function rewrite (attr, name) {
|
||||
if (attr.name === name) {
|
||||
const value = attr.value
|
||||
// only transform static URLs
|
||||
if (value.charAt(0) === '"' && value.charAt(value.length - 1) === '"') {
|
||||
attr.value = urlToRequire(value.slice(1, -1))
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
// vue compiler module for transforming `img:srcset` to a number of `require`s
|
||||
|
||||
const urlToRequire = require('../url-to-require')
|
||||
|
||||
module.exports = () => ({
|
||||
postTransformNode: node => {
|
||||
transform(node)
|
||||
}
|
||||
})
|
||||
|
||||
function transform (node) {
|
||||
const tags = ['img', 'source']
|
||||
|
||||
if (tags.indexOf(node.tag) !== -1 && node.attrs) {
|
||||
node.attrs.forEach(attr => {
|
||||
if (attr.name === 'srcset') {
|
||||
// same logic as in transform-require.js
|
||||
const value = attr.value
|
||||
const isStatic = value.charAt(0) === '"' && value.charAt(value.length - 1) === '"'
|
||||
if (!isStatic) {
|
||||
return
|
||||
}
|
||||
|
||||
// http://w3c.github.io/html/semantics-embedded-content.html#ref-for-image-candidate-string-5
|
||||
const escapedSpaceCharacters = /( |\\t|\\n|\\f|\\r)+/g
|
||||
|
||||
const imageCandidates = value.substr(1, value.length - 2).split(',').map(s => {
|
||||
// The attribute value arrives here with all whitespace, except normal spaces, represented by escape sequences
|
||||
const [url, descriptor] = s.replace(escapedSpaceCharacters, ' ').trim().split(' ', 2)
|
||||
return { require: urlToRequire(url), descriptor: descriptor }
|
||||
})
|
||||
|
||||
// "require(url1)"
|
||||
// "require(url1) 1x"
|
||||
// "require(url1), require(url2)"
|
||||
// "require(url1), require(url2) 2x"
|
||||
// "require(url1) 1x, require(url2)"
|
||||
// "require(url1) 1x, require(url2) 2x"
|
||||
const code = imageCandidates.map(
|
||||
({ require, descriptor }) => `${require} + "${descriptor ? ' ' + descriptor : ''}, " + `
|
||||
).join('').slice(0, -6).concat('"').replace(/ \+ ""$/, '')
|
||||
|
||||
attr.value = code
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user