forked from serverless-nextjs/serverless-next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
77 lines (62 loc) · 2.38 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
"use strict";
const displayStackOutput = require("./lib/displayStackOutput");
const parseNextConfiguration = require("./lib/parseNextConfiguration");
const build = require("./lib/build");
const PluginBuildDir = require("./classes/PluginBuildDir");
const uploadStaticAssets = require("./lib/uploadStaticAssets");
const addCustomStackResources = require("./lib/addCustomStackResources");
class ServerlessNextJsPlugin {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.commands = {};
this.provider = this.serverless.getProvider("aws");
this.providerRequest = this.provider.request.bind(this.provider);
this.pluginBuildDir = new PluginBuildDir(this.nextConfigDir);
this.addCustomStackResources = addCustomStackResources.bind(this);
this.uploadStaticAssets = uploadStaticAssets.bind(this);
this.build = build.bind(this);
this.printStackOutput = this.printStackOutput.bind(this);
this.removePluginBuildDir = this.removePluginBuildDir.bind(this);
this.hooks = {
"before:offline:start": this.build,
"before:package:initialize": this.build,
"before:deploy:function:initialize": this.build,
"before:aws:package:finalize:mergeCustomProviderResources": this
.addCustomStackResources,
"after:package:createDeploymentArtifacts": this.removePluginBuildDir,
"after:aws:deploy:deploy:uploadArtifacts": this.uploadStaticAssets,
"after:aws:info:displayStackOutputs": this.printStackOutput
};
}
get nextConfigDir() {
return this.getPluginConfigValue("nextConfigDir");
}
get configuration() {
return parseNextConfiguration(this.nextConfigDir);
}
getPluginConfigValue(param) {
const defaults = {
routes: [],
nextConfigDir: "./",
uploadBuildAssets: true
};
const userConfig = this.serverless.service.custom["serverless-nextjs"][
param
];
return userConfig === undefined ? defaults[param] : userConfig;
}
getPluginConfigValues(...params) {
return params.map(p => this.getPluginConfigValue(p));
}
printStackOutput() {
const awsInfo = this.serverless.pluginManager.getPlugins().find(plugin => {
return plugin.constructor.name === "AwsInfo";
});
return displayStackOutput(awsInfo);
}
removePluginBuildDir() {
return this.pluginBuildDir.removeBuildDir();
}
}
module.exports = ServerlessNextJsPlugin;