Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 9x 9x 9x 9x 9x 9x 12x 1x 11x 9x 9x 29x 9x 125x 76x 15x 61x 61x 61x 61x 28x 33x 33x 35x 12x 23x 23x 5x 5x 5x 5x 5x 5x 18x 18x 18x 17x 17x 4x 4x 13x 13x 13x 17x 15x 2x 2x 1x 2x 1x 1x 1x | import path from 'path' import { ConstantTypes, createSimpleExpression, ExpressionNode, NodeTransform, NodeTypes, SimpleExpressionNode, SourceLocation, TransformContext } from '@vue/compiler-core' import { isRelativeUrl, parseUrl, isExternalUrl, isDataUrl } from './templateUtils' import { isArray } from '@vue/shared' export interface AssetURLTagConfig { [name: string]: string[] } export interface AssetURLOptions { /** * If base is provided, instead of transforming relative asset urls into * imports, they will be directly rewritten to absolute urls. */ base?: string | null /** * If true, also processes absolute urls. */ includeAbsolute?: boolean tags?: AssetURLTagConfig } export const defaultAssetUrlOptions: Required<AssetURLOptions> = { base: null, includeAbsolute: false, tags: { video: ['src', 'poster'], source: ['src'], img: ['src'], image: ['xlink:href', 'href'], use: ['xlink:href', 'href'] } } export const normalizeOptions = ( options: AssetURLOptions | AssetURLTagConfig ): Required<AssetURLOptions> => { if (Object.keys(options).some(key => isArray((options as any)[key]))) { // legacy option format which directly passes in tags config return { ...defaultAssetUrlOptions, tags: options as any } } return { ...defaultAssetUrlOptions, ...options } } export const createAssetUrlTransformWithOptions = ( options: Required<AssetURLOptions> ): NodeTransform => { return (node, context) => (transformAssetUrl as Function)(node, context, options) } /** * A `@vue/compiler-core` plugin that transforms relative asset urls into * either imports or absolute urls. * * ``` js * // Before * createVNode('img', { src: './logo.png' }) * * // After * import _imports_0 from './logo.png' * createVNode('img', { src: _imports_0 }) * ``` */ export const transformAssetUrl: NodeTransform = ( node, context, options: AssetURLOptions = defaultAssetUrlOptions ) => { if (node.type === NodeTypes.ELEMENT) { if (!node.props.length) { return } const tags = options.tags || defaultAssetUrlOptions.tags const attrs = tags[node.tag] const wildCardAttrs = tags['*'] if (!attrs && !wildCardAttrs) { return } const assetAttrs = (attrs || []).concat(wildCardAttrs || []) node.props.forEach((attr, index) => { if ( attr.type !== NodeTypes.ATTRIBUTE || !assetAttrs.includes(attr.name) || !attr.value || isExternalUrl(attr.value.content) || isDataUrl(attr.value.content) || attr.value.content[0] === '#' || (!options.includeAbsolute && !isRelativeUrl(attr.value.content)) ) { return } const url = parseUrl(attr.value.content) if (options.base && attr.value.content[0] === '.') { // explicit base - directly rewrite relative urls into absolute url // to avoid generating extra imports // Allow for full hostnames provided in options.base const base = parseUrl(options.base) const protocol = base.protocol || '' const host = base.host ? protocol + '//' + base.host : '' const basePath = base.path || '/' // when packaged in the browser, path will be using the posix- // only version provided by rollup-plugin-node-builtins. attr.value.content = host + (path.posix || path).join(basePath, url.path + (url.hash || '')) return } // otherwise, transform the url into an import. // this assumes a bundler will resolve the import into the correct // absolute url (e.g. webpack file-loader) const exp = getImportsExpressionExp(url.path, url.hash, attr.loc, context) node.props[index] = { type: NodeTypes.DIRECTIVE, name: 'bind', arg: createSimpleExpression(attr.name, true, attr.loc), exp, modifiers: [], loc: attr.loc } }) } } function getImportsExpressionExp( path: string | null, hash: string | null, loc: SourceLocation, context: TransformContext ): ExpressionNode { if (path) { let name: string let exp: SimpleExpressionNode const existingIndex = context.imports.findIndex(i => i.path === path) if (existingIndex > -1) { name = `_imports_${existingIndex}` exp = context.imports[existingIndex].exp as SimpleExpressionNode } else { name = `_imports_${context.imports.length}` exp = createSimpleExpression( name, false, loc, ConstantTypes.CAN_STRINGIFY ) context.imports.push({ exp, path }) } if (!hash) { return exp } const hashExp = `${name} + '${hash}'` const existingHoistIndex = context.hoists.findIndex(h => { return ( h && h.type === NodeTypes.SIMPLE_EXPRESSION && !h.isStatic && h.content === hashExp ) }) if (existingHoistIndex > -1) { return createSimpleExpression( `_hoisted_${existingHoistIndex + 1}`, false, loc, ConstantTypes.CAN_STRINGIFY ) } return context.hoist( createSimpleExpression(hashExp, false, loc, ConstantTypes.CAN_STRINGIFY) ) } else { return createSimpleExpression(`''`, false, loc, ConstantTypes.CAN_STRINGIFY) } } |