2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-09-15 12:44:20 +05:30
|
|
|
import cheerio from "cheerio";
|
|
|
|
import fsRoot from "fs";
|
|
|
|
const fs = fsRoot.promises;
|
|
|
|
import path from "path";
|
|
|
|
import rollup from 'rollup';
|
|
|
|
import postcss from "postcss";
|
|
|
|
import postcssImport from "postcss-import";
|
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { dirname } from 'path';
|
2020-08-05 22:04:41 +05:30
|
|
|
// needed for legacy bundle
|
|
|
|
import babel from '@rollup/plugin-babel';
|
|
|
|
// needed to find the polyfill modules in the main-legacy.js bundle
|
|
|
|
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
|
|
|
// needed because some of the polyfills are written as commonjs modules
|
|
|
|
import commonjs from '@rollup/plugin-commonjs';
|
2019-09-15 12:44:20 +05:30
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
const PROJECT_ID = "hydrogen";
|
|
|
|
const PROJECT_SHORT_NAME = "Hydrogen";
|
|
|
|
const PROJECT_NAME = "Hydrogen Chat";
|
2019-09-15 12:44:20 +05:30
|
|
|
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
|
|
const __dirname = dirname(__filename);
|
|
|
|
const projectDir = path.join(__dirname, "../");
|
|
|
|
const targetDir = path.join(projectDir, "target");
|
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
const {debug, noOffline, legacy} = process.argv.reduce((params, param) => {
|
|
|
|
if (param.startsWith("--")) {
|
|
|
|
params[param.substr(2)] = true;
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
}, {
|
|
|
|
debug: false,
|
|
|
|
noOffline: false,
|
|
|
|
legacy: false
|
|
|
|
});
|
|
|
|
const offline = !noOffline;
|
2019-09-15 15:52:43 +05:30
|
|
|
|
2019-09-15 12:44:20 +05:30
|
|
|
async function build() {
|
2019-09-15 15:52:43 +05:30
|
|
|
// get version number
|
|
|
|
const version = JSON.parse(await fs.readFile(path.join(projectDir, "package.json"), "utf8")).version;
|
2019-09-15 12:44:20 +05:30
|
|
|
// clear target dir
|
|
|
|
await removeDirIfExists(targetDir);
|
|
|
|
await fs.mkdir(targetDir);
|
2020-08-05 22:04:41 +05:30
|
|
|
let bundleName = `${PROJECT_ID}.js`;
|
|
|
|
if (legacy) {
|
|
|
|
bundleName = `${PROJECT_ID}-legacy.js`;
|
|
|
|
}
|
|
|
|
await buildHtml(version, bundleName);
|
|
|
|
if (legacy) {
|
|
|
|
await buildJsLegacy(bundleName);
|
|
|
|
} else {
|
|
|
|
await buildJs(bundleName);
|
|
|
|
}
|
2019-09-15 18:02:12 +05:30
|
|
|
await buildCss();
|
2019-09-28 13:15:01 +05:30
|
|
|
if (offline) {
|
2020-08-05 22:04:41 +05:30
|
|
|
await buildOffline(version, bundleName);
|
2019-09-28 13:15:01 +05:30
|
|
|
}
|
2019-09-15 18:02:12 +05:30
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
console.log(`built ${PROJECT_ID}${legacy ? " legacy" : ""} ${version} successfully`);
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
async function buildHtml(version, bundleName) {
|
2019-09-15 12:44:20 +05:30
|
|
|
// transform html file
|
|
|
|
const devHtml = await fs.readFile(path.join(projectDir, "index.html"), "utf8");
|
|
|
|
const doc = cheerio.load(devHtml);
|
2020-08-05 22:04:41 +05:30
|
|
|
doc("link[rel=stylesheet]").attr("href", `${PROJECT_ID}.css`);
|
2019-09-15 18:02:12 +05:30
|
|
|
doc("script#main").replaceWith(
|
2020-08-05 22:04:41 +05:30
|
|
|
`<script type="text/javascript" src="${bundleName}"></script>` +
|
2019-09-15 18:02:12 +05:30
|
|
|
`<script type="text/javascript">main(document.body);</script>`);
|
|
|
|
removeOrEnableScript(doc("script#phone-debug-pre"), debug);
|
|
|
|
removeOrEnableScript(doc("script#phone-debug-post"), debug);
|
2019-10-12 23:53:37 +05:30
|
|
|
removeOrEnableScript(doc("script#service-worker"), offline);
|
2020-03-24 03:16:31 +05:30
|
|
|
|
|
|
|
const versionScript = doc("script#version");
|
|
|
|
versionScript.attr("type", "text/javascript");
|
|
|
|
let vSource = versionScript.contents().text();
|
|
|
|
vSource = vSource.replace(`"%%VERSION%%"`, `"${version}"`);
|
|
|
|
versionScript.text(vSource);
|
|
|
|
|
2019-09-28 13:15:01 +05:30
|
|
|
if (offline) {
|
|
|
|
doc("html").attr("manifest", "manifest.appcache");
|
|
|
|
doc("head").append(`<link rel="manifest" href="manifest.json">`);
|
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
await fs.writeFile(path.join(targetDir, "index.html"), doc.html(), "utf8");
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
async function buildJs(bundleName) {
|
2019-09-15 12:44:20 +05:30
|
|
|
// create js bundle
|
|
|
|
const rollupConfig = {
|
|
|
|
input: 'src/main.js',
|
|
|
|
output: {
|
2020-08-05 22:04:41 +05:30
|
|
|
file: path.join(targetDir, bundleName),
|
2019-09-15 12:44:20 +05:30
|
|
|
format: 'iife',
|
|
|
|
name: 'main'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const bundle = await rollup.rollup(rollupConfig);
|
|
|
|
await bundle.write(rollupConfig);
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
async function buildJsLegacy(bundleName) {
|
|
|
|
// compile down to whatever IE 11 needs
|
|
|
|
const babelPlugin = babel.babel({
|
|
|
|
babelHelpers: 'bundled',
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
useBuiltIns: "entry",
|
|
|
|
corejs: "3",
|
|
|
|
targets: "IE 11"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
});
|
|
|
|
// create js bundle
|
|
|
|
const rollupConfig = {
|
|
|
|
input: 'src/main-legacy.js',
|
|
|
|
output: {
|
|
|
|
file: path.join(targetDir, bundleName),
|
|
|
|
format: 'iife',
|
|
|
|
name: 'main'
|
|
|
|
},
|
|
|
|
plugins: [commonjs(), nodeResolve(), babelPlugin]
|
|
|
|
};
|
|
|
|
const bundle = await rollup.rollup(rollupConfig);
|
|
|
|
await bundle.write(rollupConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function buildOffline(version, bundleName) {
|
2019-09-15 18:02:12 +05:30
|
|
|
// write offline availability
|
2020-08-05 22:04:41 +05:30
|
|
|
const offlineFiles = [bundleName, `${PROJECT_ID}.css`, "index.html", "icon-192.png"];
|
2019-09-15 18:02:12 +05:30
|
|
|
|
|
|
|
// write appcache manifest
|
|
|
|
const manifestLines = [
|
|
|
|
`CACHE MANIFEST`,
|
|
|
|
`# v${version}`,
|
|
|
|
`NETWORK`,
|
|
|
|
`"*"`,
|
|
|
|
`CACHE`,
|
|
|
|
];
|
|
|
|
manifestLines.push(...offlineFiles);
|
|
|
|
const manifest = manifestLines.join("\n") + "\n";
|
|
|
|
await fs.writeFile(path.join(targetDir, "manifest.appcache"), manifest, "utf8");
|
|
|
|
// write service worker
|
|
|
|
let swSource = await fs.readFile(path.join(projectDir, "src/service-worker.template.js"), "utf8");
|
|
|
|
swSource = swSource.replace(`"%%VERSION%%"`, `"${version}"`);
|
|
|
|
swSource = swSource.replace(`"%%FILES%%"`, JSON.stringify(offlineFiles));
|
|
|
|
await fs.writeFile(path.join(targetDir, "sw.js"), swSource, "utf8");
|
|
|
|
// write web manifest
|
|
|
|
const webManifest = {
|
2020-08-05 22:04:41 +05:30
|
|
|
name:PROJECT_NAME,
|
|
|
|
short_name: PROJECT_SHORT_NAME,
|
2020-03-14 03:24:11 +05:30
|
|
|
display: "fullscreen",
|
2019-09-15 18:02:12 +05:30
|
|
|
start_url: "index.html",
|
|
|
|
icons: [{"src": "icon-192.png", "sizes": "192x192", "type": "image/png"}],
|
|
|
|
};
|
|
|
|
await fs.writeFile(path.join(targetDir, "manifest.json"), JSON.stringify(webManifest), "utf8");
|
|
|
|
// copy icon
|
|
|
|
let icon = await fs.readFile(path.join(projectDir, "icon.png"));
|
|
|
|
await fs.writeFile(path.join(targetDir, "icon-192.png"), icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function buildCss() {
|
2019-09-15 12:44:20 +05:30
|
|
|
// create css bundle
|
|
|
|
const cssMainFile = path.join(projectDir, "src/ui/web/css/main.css");
|
|
|
|
const preCss = await fs.readFile(cssMainFile, "utf8");
|
|
|
|
const cssBundler = postcss([postcssImport]);
|
2020-08-04 22:32:34 +05:30
|
|
|
const result = await cssBundler.process(preCss, {from: cssMainFile});
|
2020-08-05 22:04:41 +05:30
|
|
|
await fs.writeFile(path.join(targetDir, `${PROJECT_ID}.css`), result.css, "utf8");
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function removeOrEnableScript(scriptNode, enable) {
|
|
|
|
if (enable) {
|
|
|
|
scriptNode.attr("type", "text/javascript");
|
|
|
|
} else {
|
|
|
|
scriptNode.remove();
|
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
async function removeDirIfExists(targetDir) {
|
|
|
|
try {
|
|
|
|
const files = await fs.readdir(targetDir);
|
|
|
|
await Promise.all(files.map(filename => fs.unlink(path.join(targetDir, filename))));
|
|
|
|
await fs.rmdir(targetDir);
|
|
|
|
} catch (err) {
|
2019-09-15 15:52:43 +05:30
|
|
|
if (err.code !== "ENOENT") {
|
|
|
|
throw err;
|
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
build().catch(err => console.error(err));
|