|
| 1 | +const vueCompiler = require('vue-template-compiler') |
| 2 | +const babel = require('babel-core') |
| 3 | +const vueNextCompiler = require('vue-template-es2015-compiler') |
| 4 | +var assign = require('object-assign') |
| 5 | +var sourceMap = require('source-map') |
| 6 | +const path = require('path') |
| 7 | +const compileTemplate = require('./template-compiler') |
| 8 | +var convert = require('convert-source-map') |
| 9 | +const splitRE = /\r?\n/g; |
| 10 | + |
| 11 | +function generateSourceMap (script, output, filePath, content, inputMap) { |
| 12 | + //console.log(output) |
| 13 | + // hot-reload source map busting |
| 14 | + console.log(path.basename(filePath)) |
| 15 | + console.log(filePath) |
| 16 | + var hashedFilename = path.basename(filePath) |
| 17 | + var map = new sourceMap.SourceMapGenerator() |
| 18 | + map.setSourceContent(hashedFilename, content) |
| 19 | + // check input source map from babel/coffee etc |
| 20 | + var inputMapConsumer = inputMap && new sourceMap.SourceMapConsumer(inputMap) |
| 21 | + var generatedOffset = (output ? output.split(splitRE).length : 0) + 1 |
| 22 | + script.split(splitRE).forEach(function (line, index) { |
| 23 | + var ln = index + 1 |
| 24 | + var originalLine = inputMapConsumer |
| 25 | + ? inputMapConsumer.originalPositionFor({ line: ln, column: 0 }).line |
| 26 | + : ln |
| 27 | + if (originalLine) { |
| 28 | + map.addMapping({ |
| 29 | + source: hashedFilename, |
| 30 | + generated: { |
| 31 | + line: ln + generatedOffset, |
| 32 | + column: 0 |
| 33 | + }, |
| 34 | + original: { |
| 35 | + line: originalLine, |
| 36 | + column: 0 |
| 37 | + } |
| 38 | + }) |
| 39 | + } |
| 40 | + }) |
| 41 | + map._hashedFilename = hashedFilename |
| 42 | + return map |
| 43 | +} |
| 44 | + |
| 45 | +function addTemplateMapping (content, parts, output, map, beforeLines) { |
| 46 | + var afterLines = output.split(splitRE).length |
| 47 | + var templateLine = content.slice(0, parts.template.start).split(splitRE).length |
| 48 | + for (; beforeLines < afterLines; beforeLines++) { |
| 49 | + map.addMapping({ |
| 50 | + source: map._hashedFilename, |
| 51 | + generated: { |
| 52 | + line: beforeLines, |
| 53 | + column: 0 |
| 54 | + }, |
| 55 | + original: { |
| 56 | + line: templateLine, |
| 57 | + column: 0 |
| 58 | + } |
| 59 | + }) |
| 60 | + } |
| 61 | +} |
| 62 | +module.exports = { |
| 63 | + process (src, path) { |
| 64 | + var parts = vueCompiler.parseComponent(src, { pad: true }) |
| 65 | + const renderFunctions = compileTemplate(parts.template.content) |
| 66 | + |
| 67 | + const result = babel.transform(parts.script.content, { |
| 68 | + sourceMaps: true, |
| 69 | + presets: ['es2015'], |
| 70 | + plugins: ['transform-runtime'] |
| 71 | + }) |
| 72 | + |
| 73 | + const script = result.code; |
| 74 | + const template = parts.template; |
| 75 | + |
| 76 | + const inputMap = result.map; |
| 77 | + const map = generateSourceMap(script, '', path, src, inputMap); |
| 78 | + let output = ';(function(){\n' + script + '\n})()\n' + |
| 79 | + 'if (module.exports.__esModule) module.exports = module.exports.default\n' + |
| 80 | + 'var __vue__options__ = (typeof module.exports === "function"' + |
| 81 | + '? module.exports.options' + |
| 82 | + ': module.exports)\n'; |
| 83 | + var beforeLines |
| 84 | + if (map) { |
| 85 | + beforeLines = output.split(splitRE).length |
| 86 | + } |
| 87 | + output += '__vue__options__.render = ' + renderFunctions.render + '\n' + |
| 88 | + '__vue__options__.staticRenderFns = ' + renderFunctions.staticRenderFns + '\n' |
| 89 | + if (map) { |
| 90 | + addTemplateMapping(script, parts, output, map, beforeLines) |
| 91 | + } |
| 92 | + |
| 93 | + if (map) { |
| 94 | + output += '\n' + convert.fromJSON(map.toString()).toComment() |
| 95 | + } |
| 96 | + // console.log(generateSourceMap(script, output, path, src, inputMap)) |
| 97 | + // console.log('inputMap', inputMap, '\n') |
| 98 | + // console.log('src', src, '\n') |
| 99 | + // console.log('path', path, '\n') |
| 100 | + |
| 101 | + //console.log('\n', output, '\n') |
| 102 | + //console.log(output) |
| 103 | + // console.log('script', script, '\n') |
| 104 | + return { |
| 105 | + code: output, |
| 106 | + map: map |
| 107 | + } |
| 108 | + } |
| 109 | +} |
0 commit comments