-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathucn-webpack-plugin.js
56 lines (47 loc) · 2.1 KB
/
ucn-webpack-plugin.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
const fetch = require('node-fetch')
const VirtualModulesPlugin = require('webpack-virtual-modules')
class UCNModulePlugin {
static defaultOptions = {
baseURL: 'http://localhost:65000/remote'
}
// Any options should be passed in the constructor of your plugin,
// (this is a public API of your plugin).
constructor( options = {} ){
// Applying user-specified options over the default options
// and making merged options further available to the plugin methods.
// You should probably validate all the options here as well.
this.options = { ...UCNModulePlugin.defaultOptions, ...options }
}
apply( compiler ) {
const
pluginName = UCNModulePlugin.name,
virtualModules = new VirtualModulesPlugin()
// Applying a webpack compiler to the virtual module
virtualModules.apply( compiler )
// Adding a webpack hook to create new virtual module with swaggerJsDoc() at compile time
// Consult Swagger UI documentation for the settings passed to swaggerJsDoc()
compiler.hooks.normalModuleFactory.tap( pluginName, factory => {
factory.hooks.beforeResolve.tap( pluginName, data => {
let { request } = data
const regex = /@ucn\//
// Allow & parse only UCN import URLs
if( !regex.test( request ) ) return
const resource = request.replace( regex, '')
fetch(`${this.options.baseURL}/${resource}`)
.then( res => res.text() )
.then( content => {
// Adding new asset to the compilation, so it would be automatically
// generated by the webpack in the output directory.
// compilation.emitAsset( this.options.outputFile, new RawSource( content ) )
// Write new data to the virtual file at compile time
virtualModules.writeModule(`node_modules/@ucn/${resource}.js`, content )
} )
.catch( error => {
console.log(`Error compiling <${resource}>: ${error.message}`)
// compilation.errors.push( error )
} )
})
})
}
}
module.exports = UCNModulePlugin