fixed admin bug (on f5 was not populating fields); plugins - filter:admin.create_routes allows you to create path to custom admin page

v1.18.x
psychobunny 12 years ago
parent 4b5bae4f9b
commit 32990794ce

@ -16,9 +16,7 @@ jQuery('document').ready(function() {
}); });
socket.once('api:config.get', function(config) { socket.once('api:config.get', function(config) {
require(['forum/admin/settings'], function(Settings) { app.config = config;
Settings.config = config;
});
}); });
socket.emit('api:config.get'); socket.emit('api:config.get');

@ -1,18 +1,16 @@
define(function() { define(function() {
var Settings = {}; var Settings = {};
Settings.config = {};
Settings.init = function() { Settings.init = function() {
Settings.prepare(); Settings.prepare();
}; };
Settings.prepare = function() { Settings.prepare = function() {
// Come back in 500ms if the config isn't ready yet // Come back in 125ms if the config isn't ready yet
if (Settings.config === undefined) { if (!app.config) {
setTimeout(function() { setTimeout(function() {
Settings.prepare(); Settings.prepare();
}, 500); }, 125);
return; return;
} }
@ -25,21 +23,21 @@ define(function() {
key = fields[x].getAttribute('data-field'); key = fields[x].getAttribute('data-field');
inputType = fields[x].getAttribute('type'); inputType = fields[x].getAttribute('type');
if (fields[x].nodeName === 'INPUT') { if (fields[x].nodeName === 'INPUT') {
if (Settings.config[key]) { if (app.config[key]) {
switch (inputType) { switch (inputType) {
case 'text': case 'text':
case 'textarea': case 'textarea':
case 'number': case 'number':
fields[x].value = Settings.config[key]; fields[x].value = app.config[key];
break; break;
case 'checkbox': case 'checkbox':
fields[x].checked = Settings.config[key] === '1' ? true : false; fields[x].checked = app.config[key] === '1' ? true : false;
break; break;
} }
} }
} else if (fields[x].nodeName === 'TEXTAREA') { } else if (fields[x].nodeName === 'TEXTAREA') {
if (Settings.config[key]) fields[x].value = Settings.config[key]; if (app.config[key]) fields[x].value = app.config[key];
} }
} }

@ -104,7 +104,7 @@
<li class="nav-header">Plugins</li> <li class="nav-header">Plugins</li>
<!-- BEGIN plugins --> <!-- BEGIN plugins -->
<li> <li>
<a href='{relative_path}/admin/{plugins.route}'><i class="{plugins.icon}"></i> {plugins.name}</a> <a href='{relative_path}/admin{plugins.route}'><i class="{plugins.icon}"></i> {plugins.name}</a>
</li> </li>
<!-- END plugins --> <!-- END plugins -->
</ul> </ul>

@ -80,6 +80,30 @@ var user = require('./../user.js'),
}); });
}); });
var custom_routes = {
'routes': [],
'api_methods': []
};
plugins.ready(function() {
plugins.fireHook('filter:admin.create_routes', custom_routes, function(err, custom_routes) {
var routes = custom_routes.routes;
for (var route in routes) {
if (routes.hasOwnProperty(route)) {
app[routes[route].method || 'get']('/admin' + routes[route].route, function(req, res) {
routes[route].options(req, res, function(options) {
Admin.build_header(res, function (err, header) {
res.send(header + options.content + templates['admin/footer']);
});
});
});
}
}
});
});
app.namespace('/api/admin', function () { app.namespace('/api/admin', function () {
app.get('/index', function (req, res) { app.get('/index', function (req, res) {
res.json({ res.json({

Loading…
Cancel
Save