Koa-locals not working

767 Views Asked by At

I have this in app.js...

    var koa = require('koa');
    var locals = require('koa-locals');
    var jade = require('koa-jade');

    var app = koa();

    locals(app, {
        moment: require('moment'),
        _: require('lodash')
    });

    app.use(jade.middleware({
       viewPath: __dirname + '/views',
       debug: true,
       pretty: true,
       compileDebug: false,
       locals: this.locals
   }));

And you've guessed it, moment is undefined in a view.

What am I missing? And incidentally why does the documentation for koa-local have the weird require in the example...

var locals = require('../'); 
2

There are 2 best solutions below

0
On

Really i never used koa-locals, but currently you can use built in feature of koa state to pass data to your view.

this.state.utils = {
    moment: require('moment'),
    _: require('lodash')
};
0
On

At the time you're calling app.use(jade.middleware({, this.locals refers to the global object. You're not inside of a middleware closure, you're just using this (global) and locals (expectedly) has never been defined on the global object.

Maybe just pass the same object that you're giving to koa-locals to jade.middleware?

var koa = require('koa');
var locals = require('koa-locals');
var jade = require('koa-jade');

var app = koa();
var helpers = {
  moment: require('moment'),
  _: require('lodash')
};

locals(app, helpers);

app.use(jade.middleware({
   viewPath: __dirname + '/views',
   debug: true,
   pretty: true,
   compileDebug: false,
   locals: helpers
}));