forked from nambo/gulp-js-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
99 lines (77 loc) · 2.32 KB
/
index.js
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
'use strict'
const gutil = require('gulp-util')
const through = require('through2')
const fs = require('fs')
function clean_path(path) {
path = path.replace(/\\/g, '/');
let prev_folder_count = path.match(/..\//g).length;
let folder_array = path.split("/");
for (let i = 0; prev_folder_count > i; i++)
folder_array.forEach(function (element, index, array) {
if (element == '..') {
array.splice(index, 1);
array.splice(index - 1, 1);
}
});
// path = path.replace(/.\//g, '');
return folder_array.join('/');
}
module.exports = function (options) {
options = options || {};
let importStack = []
const importJS = (path) => {
if (!path) {
return ''
}
let fileReg;
if (options.es6import) {
fileReg = /\n* *import\s["'](.*\.js)["']/gi
} else {
fileReg = /\n* *@import\s["'](.*\.js)["']/gi
}
if (!fs.existsSync(path)) {
throw new Error('file ' + path + ' no exist')
}
let content = fs.readFileSync(path, {
encoding: 'utf8'
})
content = content.replace(fileReg, (match, fileName) => {
let importPath = path.replace(/[^\\^\/]*\.js$/, fileName)
if (options.importStack) {
if (importStack.includes(clean_path(importPath))) {
!options.hideConsole && console.log('file: ' + importPath + 'was imported do not import it again')
return ''
}
}
importStack.push(clean_path(importPath))
!options.hideConsole && console.log('import "' + fileName + '" --> "' + path + '"')
let importContent = importJS(importPath) || ''
return importContent
})
return content
}
return through.obj(function (file, enc, cb) {
if (file.isNull()) {
cb(null, file)
return
}
if (file.isStream()) {
cb(new gutil.PluginError('gulp-js-import', 'Streaming not supported'))
return
}
let content
try {
content = importJS(file.path)
// reset stack when everysingle file has finished
if (!options.isSeveralFiles)
importStack = [];
} catch (e) {
cb(new gutil.PluginError('gulp-js-import', e.message))
return
}
file.contents = new Buffer(content)
file.path = gutil.replaceExtension(file.path, '.js')
!options.hideConsole && console.log('ImportJS finished.')
cb(null, file)
})
}