-
Notifications
You must be signed in to change notification settings - Fork 4
/
gulpfile.js
111 lines (99 loc) · 2.34 KB
/
gulpfile.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
100
101
102
103
104
105
106
107
108
109
110
111
const { src, dest, watch, series } = require('gulp');
const includer = require('./index');
// const http = require('http');
const getApiData = url => new Promise((resolve, reject) => {
// http.get(url, resp => {
// let data = '';
// resp.on('data', chunk => data += chunk)
// resp.on('end', () => resolve(JSON.parse(data)))
// })
resolve({ heading : 'This is async heading copy', bodyCopy : 'this is async body copy' })
})
const paths = {
html: './test/html/**/*.html',
htmlBuild: './test/html-built',
}
function genericHtmlIncluder(path) {
const jsonInput = { heading : 'hello world' };
const rawJsonPlugins = { getApiData };
src(path)
.pipe(includer({ jsonInput, rawJsonPlugins }))
.pipe(dest(paths.htmlBuild))
}
exports.nested = function(cb) {
genericHtmlIncluder([
'./test/html/nestedTags.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.simple = function(cb) {
genericHtmlIncluder([
'./test/html/simple.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.clipping = function(cb) {
genericHtmlIncluder([
'./test/html/clipping.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.complex = function(cb) {
genericHtmlIncluder([
'./test/html/complex.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.if = function(cb) {
genericHtmlIncluder([
'./test/html/if.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.each = function(cb) {
genericHtmlIncluder([
'./test/html/each.html',
'./test/html/wrappers/*.html',
'./test/html/components/*.html'
])
cb();
}
exports.rawJsonFunction = function(cb) {
genericHtmlIncluder([
'./test/html/raw-json-function.html',
'./test/html/components/*.html',
])
cb();
}
exports.rawJsonAsyncFunction = function(cb) {
genericHtmlIncluder([
'./test/html/raw-json-async-function.html',
'./test/html/components/*.html',
])
cb();
}
exports.default = function(cb) {
let options = {
jsonInput: {
message : 'test message',
heading : 'hello world',
},
rawJsonPlugins : {
getApiData,
},
};
src(paths.html)
.pipe(includer(options))
.pipe(dest(paths.htmlBuild))
cb();
}