2020-04-04 10:36:08 +03:00
|
|
|
const path = require('path');
|
|
|
|
const express = require('express');
|
2021-04-25 23:03:55 +03:00
|
|
|
const reload = require('reload');
|
2020-04-04 10:36:08 +03:00
|
|
|
const app = express();
|
|
|
|
|
|
|
|
const BUILDDIR = process.argv[2] || './build';
|
|
|
|
const PORT = process.argv[3] || 3000;
|
|
|
|
|
2021-04-29 00:33:53 +03:00
|
|
|
|
2020-04-04 10:36:08 +03:00
|
|
|
//ROUTE - other files
|
2021-07-07 00:24:20 +03:00
|
|
|
app.use('/pixel-editor', express.static(path.join(__dirname, BUILDDIR)));
|
|
|
|
|
2020-04-04 10:36:08 +03:00
|
|
|
|
2021-04-29 00:36:41 +03:00
|
|
|
// "reload" module allows us to trigger webpage reload automatically on file changes, but inside pixel editor it also
|
|
|
|
// makes browser steal focus from any other window in order to ask user about unsaved changes. It might be quite
|
|
|
|
// intrusive so we decided to give option to choose preferred workflow.
|
|
|
|
if (process.env.RELOAD === "yes") {
|
|
|
|
reload(app).then(() => {
|
|
|
|
//start server
|
|
|
|
app.server = app.listen(PORT, () => {
|
|
|
|
console.log(`Web server listening on port ${PORT} (with reload module)`);
|
|
|
|
})
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
app.listen(PORT, () => {
|
|
|
|
console.log(`Web server listening on port ${PORT}`);
|
2021-04-25 23:03:55 +03:00
|
|
|
})
|
2021-04-29 00:36:41 +03:00
|
|
|
}
|
2021-07-07 00:24:20 +03:00
|
|
|
|
|
|
|
// Better to show landing page rather than 404 on editor page reload
|
|
|
|
app.get('/', (req, res) => {
|
|
|
|
res.redirect('/pixel-editor');
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
//ROUTE - match / or any route with just numbers letters and dashes, and return index.htm (all other routes should have been handled already)
|
|
|
|
app.get(['/pixel-editor', /^\/pixel-editor\/[\/a-z0-9-]+$/gi ], (req, res) => {
|
|
|
|
res.sendFile(path.join(__dirname, BUILDDIR, 'index.htm'), {}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
console.log('error sending file', err);
|
|
|
|
} else {
|
|
|
|
console.log("Server: Successfully served index.html", req.originalUrl);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Better to show landing page rather than 404 on editor page reload
|
|
|
|
app.get('/pixel-editor/app', (req, res) => {
|
|
|
|
res.redirect('/');
|
|
|
|
})
|
|
|
|
|