Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm using a mixin to display a series of entries in my web app. I want each one to have a relative time stamp that says how long ago it was posted.

mixin listTitles(titles)
  each title in titles
     article.leaf
      article
    a.headline(href=title.URL)= title.title
  footer
    p.postData 
     | Posted 
     span#date=title.time
     a(href='someSource') The New York Times <br>
    a.commentButton(href=title.URL)
    a.sourceButton(href='#')
mixin listTitles(titles)

title.time contains the time of submission in javascript time (unix time in ms). I would like to compare that to the current time and display the time since the post was submitted.

share|improve this question

1 Answer

up vote 0 down vote accepted

You can use JS anywhere inside Jade template by placing - in beginning of a line.

mixin listTitles(titles)
  - var now = Date.now();
  each title in titles
    p Posted #{now - title.time} millis ago.

I assume that by “no javascript” you mean that this logic should be implemented in template itself and not js-file that calls render().

share|improve this answer
By no javascript I meant that I wanted the logic to be in script.js and not in the template. Do you know if there are performance drawbacks to doing it the way you suggested? Because I was going to have it convert the time to minutes, hours and days and concatenate it. – user1816679 Jan 19 at 15:59
@user1816679 Of course you can: calculate it and pass to render function in same way you passing titles. (See app.locals and res.locals in Express.) Jade compiles to JS function, so I don't think there will be major improvement. Do you need it anyway? IMHO it's about code's structure. Caching templates, using self: false and compileDebug: false for Jade options is far better perfomance investment (see Google on those). – elmigranto Jan 20 at 22:23
moment.js has some handy time ago methods momentjs.com eg. moment("20130218", "YYYYMMDD").fromNow(); – Mike Causer Feb 19 at 15:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.