Skip to content

Commit 697bf40

Browse files
committed
add admin panel
1 parent 9c1a85d commit 697bf40

11 files changed

+456
-15
lines changed

admin.js

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
var express = require('express');
2+
var admin = express();
3+
//var itemsapi = require('./config/itemsapi');
4+
5+
6+
//var ItemsAPI = require('itemsapi-node');
7+
//var ITEMSAPI_URL = 'http://localhost:4000/api/v1';
8+
9+
//var config = require('./index').get();
10+
//var Promise = require('bluebird')
11+
//var _ = require('lodash')
12+
13+
//var client = new ItemsAPI(ITEMSAPI_URL, 'movies');
14+
15+
/*client({
16+
name: 'movies',
17+
backend: 'http://localhost:4000/api/v1'
18+
}).search({
19+
query: 'test'
20+
})*/
21+
22+
//var client = new ItemsAPI();
23+
24+
/*module.exports = function(options) {
25+
var itemsapi = new ItemsAPI()
26+
options = options || {}
27+
28+
itemsapi.setParams({
29+
name: options.collection || options.name,
30+
backendUrl: options.backend || options.backendUrl || ITEMSAPI_URL
31+
})
32+
33+
return itemsapi
34+
}*/
35+
36+
37+
38+
var Promise = require('bluebird');
39+
var bodyParser = require('body-parser');
40+
41+
var cookieParser = require('cookie-parser');
42+
var moment = require('moment')
43+
44+
admin.use('/lte/plugins', express.static('bower_components/AdminLTE/plugins'));
45+
admin.use('/lte/bootstrap', express.static('bower_components/AdminLTE/bootstrap'));
46+
admin.use('/lte/dist', express.static('bower_components/AdminLTE/dist'));
47+
admin.use('/codemirror', express.static('bower_components/codemirror'));
48+
49+
//var mongoose = require('mongoose');
50+
//var mongoose = require('./config/mongoose');
51+
//var passport = require('passport');
52+
//var LocalStrategy = require('passport-local').Strategy;
53+
//var config = require('./config/index').get();
54+
//var session = require('express-session');
55+
//var fixtures = require('node-mongoose-fixtures');
56+
//var urlHelper = require('./src/helpers/url');
57+
//var uiHelper = require('./src/helpers/ui');
58+
59+
var nunjucks = require('nunjucks');
60+
61+
var nunenv = new nunjucks.Environment(
62+
new nunjucks.FileSystemLoader('admin/views', {
63+
autoescape: true,
64+
watch: true,
65+
noCache: true,
66+
})
67+
)
68+
69+
nunenv.express(admin)
70+
71+
admin.set('view engine', 'html.twig');
72+
admin.set('view cache', false);
73+
admin.engine('html.twig', nunenv.render);
74+
75+
admin.use(bodyParser.json({
76+
limit: '50mb'
77+
}));
78+
79+
admin.use(bodyParser.urlencoded({ extended: false, limit: '50mb' }));
80+
admin.use(cookieParser());
81+
82+
/**
83+
* dashboard
84+
*/
85+
admin.get(['/', '/dashboard'], function (req, res) {
86+
return res.render('dashboard')
87+
})
88+
89+
/**
90+
* collections get edit
91+
*/
92+
admin.get(['/collections/edit', '/collections/edit/:id'], function (req, res) {
93+
if (req.params.id) {
94+
req.client.setName(req.params.id)
95+
}
96+
97+
console.log(req.client);
98+
99+
Promise.all([req.client.getCollection(), req.client.getMapping()])
100+
.spread(function(collection, mapping) {
101+
res.render('collections/edit', {
102+
collection: JSON.stringify(collection, null, 4),
103+
mapping: JSON.stringify(mapping, null, 4)
104+
});
105+
})
106+
})
107+
108+
/**
109+
* collections post edit
110+
*/
111+
admin.post(['/collections/edit', '/collections/edit/:id'], function (req, res) {
112+
113+
if (req.params.id) {
114+
req.client.setName(req.params.id)
115+
}
116+
117+
var json = JSON.parse(req.body.row)
118+
console.log(json);
119+
req.client.updateCollection(json)
120+
.then(function(result) {
121+
console.log(result);
122+
var url = req.params.id ?
123+
'/admin/collections/edit/' + req.params.id :
124+
'/admin/collections/edit'
125+
res.redirect(url);
126+
})
127+
})
128+
129+
module.exports = admin;
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{% extends "layout.html.twig" %}
2+
3+
{% macro form2(form, options = {}) %}
4+
<form class="form-horizontal" action="{{ options.action }}" method="POST">
5+
<div class="box-body">
6+
<textarea id="codemirror" name="row" style="width: 100%; height: 800px;">
7+
{{ collection }}
8+
</textarea>
9+
<div class="box-footer">
10+
<button type="submit" class="btn btn-info pull-right" style="margin-left: 5px;">Save</button>
11+
</div>
12+
</div>
13+
</form>
14+
{% endmacro %}
15+
16+
17+
{% block content %}
18+
<section class="content">
19+
20+
<!-- Horizontal Form -->
21+
<div class="row">
22+
<div class="col-md-6">
23+
<!-- Horizontal Form -->
24+
<div class="box box-info">
25+
<div class="box-header with-border">
26+
<h3 class="box-title">Edit collection</h3>
27+
</div>
28+
29+
{{ form2(form, {}) }}
30+
</div>
31+
</div>
32+
33+
<div class="col-md-6">
34+
<!-- Horizontal Form -->
35+
<div class="box box-info">
36+
<div class="box-header with-border">
37+
<h3 class="box-title">Show collection</h3>
38+
</div>
39+
<div class="box-body">
40+
{#<p class="lead">Lead to emphasize importance</p>#}
41+
<pre>
42+
{{ collection }}
43+
</pre>
44+
</div>
45+
46+
47+
<div class="box-header with-border">
48+
<h3 class="box-title">Show mapping</h3>
49+
</div>
50+
<div class="box-body">
51+
{#<p class="lead">Lead to emphasize importance</p>#}
52+
<pre>
53+
{{ mapping }}
54+
</pre>
55+
</div>
56+
57+
</div>
58+
</div>
59+
</div>
60+
61+
</section>
62+
{% endblock %}

admin/views/dashboard.html.twig

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{% extends "layout.html.twig" %}
2+
/
3+
{% block content %}
4+
<section class="content">
5+
6+
{#<div class="row">
7+
<div class="col-md-6">
8+
<div class="box box-default">
9+
<div class="box-header with-border">
10+
<i class="fa"></i>
11+
<h3 class="box-title">Dashboard</h3>
12+
</div>
13+
<div class="box-body">
14+
<div class="alert alert-success alert-dismissible">
15+
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
16+
<h4><i class="icon fa fa-check"></i> Welcome to ItemsApps!</h4>
17+
Thank you for joining!
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
</div>#}
23+
24+
<div class="row">
25+
<div class="col-md-6">
26+
27+
<div class="box box-warning">
28+
<div class="box-header with-border">
29+
<h3 class="box-title">Add data</h3>
30+
</div>
31+
<!-- /.box-header -->
32+
<div class="box-body">
33+
<form role="form" method="POST">
34+
<div class="form-group">
35+
<label>Project title</label>
36+
<input type="text" name="title" class="form-control" placeholder="Title...">
37+
</div>
38+
39+
<div class="form-group">
40+
<label>URL (json)</label>
41+
<input type="text" name="url" class="form-control" placeholder="URL...">
42+
</div>
43+
44+
<div class="form-group">
45+
<label>URL (google spreadsheet)</label>
46+
<input type="text" name="excel" class="form-control" placeholder="URL...">
47+
</div>
48+
49+
<!-- textarea -->
50+
<div class="form-group">
51+
<label>Items (json)</label>
52+
<textarea name="data" class="form-control" rows="3" placeholder="Raw data"></textarea>
53+
</div>
54+
55+
<div class="box-footer">
56+
<button type="submit" class="btn btn-info pull-right" style="margin-left: 5px;">Save</button>
57+
</div>
58+
59+
</form>
60+
</div>
61+
<!-- /.box-body -->
62+
</div>
63+
64+
</div>
65+
</div>
66+
67+
68+
69+
</section>
70+
{% endblock %}

0 commit comments

Comments
 (0)