I made a dust helper for this. I called it {@query}
and here is its signature:
{@query string="que=ry&str=ing"/}
It merges que=ry&str=ing
with actual req.query
parameters, thus in the previous example where we were on http://localhost:3000/search?q=foo&sort=asc
:
<a rel="next" href="?{@query string="page=2"/}">Next</a>
will output:
<a rel="next" href="?q=foo&sort=asc&page=2">Next</a>
--
The implementation is as followed (inside a middleware to have access to req.query
):
var dust = require('dustjs-linkedin');
var _ = require('underscore');
var qs = require('querystring');
app.use(function(req, res, next) {
//
// Query helper for dust
//
// Merge querystring parameters to the current req.query
//
// Suppose we are on localhost:3000/search?q=foo :
// - {@query string=""/} will output q=foo
// - {@query string="bar=baz"/} will output q=foo&bar=baz
// - {@query string="q=fooo&bar=baz"/} will output q=fooo&bar=baz (notice fooo takes precedence)
//
dust.helpers.query = function (chunk, ctx, bodies, params) {
var str = dust.helpers.tap(params.string, chunk, ctx);
// Parse string="" parameter
var o = qs.parse(str);
// Merge with req.query
o = _.extend({}, req.query, o);
return chunk.write(qs.stringify(o));
}
next();
});