Coder Social home page Coder Social logo

Comments (3)

petrocket avatar petrocket commented on July 30, 2024

oh man. does this mean i'm not a hipster? dag yo.

from brunch-with-hipsters.

elving avatar elving commented on July 30, 2024

The Hackerank app uses an old version of the Brunch with Hipsters skeleton. I had a custom View class that had a template property and a simple render method (https://github.com/elving/brunch-with-hipsters/blob/2755050ce1532aac510f3730244de8c24be0833b/app/lib/view.coffee).

I decided to remove it to keep things simple. To render a Handlebar template using a Backbone View you can do something like:

render: ->
    template = require 'templates/template_name'
    @$el.html template @model?.attributes

And yes, you are a hipster because you used the expresion "dag yo".

from brunch-with-hipsters.

petrocket avatar petrocket commented on July 30, 2024

Thank God I haven't lost my hipster status! It's working now, apparently the 'scaffolt generate view' command doesn't create an 'el' class member, but a 'className' member so when I was trying to render the 'el' member wasn't properly defined. I added el: '.myclass' to the class definition and it appears to be working - final code is now essentially:

module.exports = class MyView extends Backbone.View
    className: 'myview'
    el: '.myview'
    template: require 'views/templates/myview'

    initialize: ->
        @render()

    render: ->
        @$el.html @template @model?.attributes

from brunch-with-hipsters.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.