Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating Dynamic Classes in Jade/Pug

I'm trying to add a dynamic class to a jade template. Like so:

- var obj = {a: 1, b: 2, c: 3};
- var len = Object.keys(obj).length;

.abc-#{len}

But the compiler is taking exception to this:

  > 4| .abc-#{len}
------------^

Unexpected token `interpolation` expected `text`, `interpolated-code`, `code`, `:`, `slash`, `newline` or `eos`

I've tried everything I could think of. Been scouring https://pugjs.org/language/interpolation.html. Could really use a hand.

Thanks.

like image 725
NotoriousWebmaster Avatar asked Dec 16 '16 18:12

NotoriousWebmaster


2 Answers

You can use ES6 template literals as well. E.g.

div(class=`static_${dynamic_variable}` 

In your case:

div(class=`abc-${len}`)

Have fun.

like image 189
Ahmad Awais Avatar answered Nov 19 '22 19:11

Ahmad Awais


You can do this:

div(class="abc-"+len)

attributes are interrupted automatically, more about attributes

like image 31
TedMeftah Avatar answered Nov 19 '22 17:11

TedMeftah