-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
102 lines (85 loc) · 2.37 KB
/
server.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
var express = require('express');
var bodyParser = require('body-parser')
var exphbs = require('express-handlebars');
var app = express();
var lokidb = require('./db');
var { testemplate } = require('./temp');
lokidb.initDbIfNotExist();
app.engine('handlebars', exphbs({
defaultLayout: 'main',
helpers: require('./handlebars-helpers') //only need this
}));
app.set('view engine', 'handlebars');
app.get('/', function (req, res) {
res.render('home', {
helpers: {
section: function (name, options) {
if (!this._sections) this._sections = {};
this._sections[name] = options.fn(this);
return null;
}
}
});
});
app.get('/editor/:title', function (req, res) {
const title = req.params.title;
const initJson = lokidb.fetch(req.params.title);
res.render('editor', {
helpers: {
section: function (name, options) {
if (!this._sections) this._sections = {};
this._sections[name] = options.fn(this);
return null;
}
},
title: title,
initJson: JSON.stringify(initJson, null, 4),
});
});
app.get('/story', function(req, res) {
res.render('story', {helpers: {
section: function (name, options) {
if (!this._sections) this._sections = {};
this._sections[name] = options.fn(this);
return null;
}},
pages: testemplate.pages,
template: testemplate,
});
});
app.get('/preview/:title', function (req, res) {
if (req.params && req.params.title) {
const template = lokidb.fetch(req.params.title);
res.render('story', {
helpers: {
section: function (name, options) {
if (!this._sections) this._sections = {};
this._sections[name] = options.fn(this);
return null;
}
},
pages: template.pages,
template: template,
});
} else {
res.send('404');
}
});
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());
app.use(express.json());
app.use(express.urlencoded()); // to support URL-encoded bodies
app.post('/save', function (req, res){
const data = JSON.parse(req.body.value);
lokidb.update(data);
res.send({success: true});
})
app.post('/writeChanges', function(req, res) {
lokidb.saveToDisk();
res.send({success: true});
})
app.use('/assets', express.static('assets'))
app.use('/ace-builds', express.static('node_modules/ace-builds'));
app.listen(3000);