GithubHelp home page GithubHelp logo

Gon + RABL + Backbone? about gon HOT 8 CLOSED

gazay avatar gazay commented on June 28, 2024
Gon + RABL + Backbone?

from gon.

Comments (8)

gazay avatar gazay commented on June 28, 2024

Sorry, but I don't know. Didn't use backbone at all yet)) If you'll do this or find the example - tell me please, I'm interesting in it too

from gon.

yujingz avatar yujingz commented on June 28, 2024

Hi @netwire88 , I know it's kind late but if you still need that, I can help.

from gon.

gazay avatar gazay commented on June 28, 2024

Hello, @hzyh64160! Maybe if you can write some instructions or example for it - it will be great and I'll put it in wiki

from gon.

yujingz avatar yujingz commented on June 28, 2024

Hi @gazay I will be more than happy to write some examples about this! I will do it this weekend and post it here.

from gon.

gazay avatar gazay commented on June 28, 2024

@hzyh64160 thank you!

from gon.

yujingz avatar yujingz commented on June 28, 2024

Correct me if I said anything inappropriate :)

Using Gon + RABL + Backbone.js

Why

Backbone.js relieved rails' controller by rending templates in javascript. Rails then become more backend oriented providing data interface in JSON.

RABL enables the user to format JSON easily.

Gon is an elegant preload data solution in this combination. It saves an ajax call by preloading the data into the page(you don't have to get data from backbone model/collection any more in most cases).

Work flow

Original:

  1. HTTP request => 2. Rails routes => 3. Rails controller logic code and render the view => 4. trigger backbone => 5. Render backbone template and send ajax call to get data -> 6. Update html code generated by template when ajax returns data

Using gon.rabl

  1. HTTP request => 2. Rails routes => 3. Rails controller logic code, render the view, and generates json according to rabl template => 4. Trigger backbone => 5. Render template directly with gon data

Preloading data into pages will save a request with server and quicken the page load processing.

Example

pages_controller.rb

def show
  @user = User.find(params[:id])
  gon.rabl
end

show.json.rabl

@object user
attributes :username, :gender

node(:followers_count) { |user| user.followers.count }  # Just an example here, it's better to have a count filed in model

sample_router.coffee

class Sample.Routers.SampleRouter extends Backbone.Router
  routes:
    "users/:id/show" : "showUser"

  showUser: ->
    user = new Sample.Models.User(gon.user)
    userView = new Sample.Views.User(model: user)
    $("body").html(userView.render().el)

Warning

Rabl allows you to exclude the root by setting.

# config.include_json_root = false
config.include_child_root = false

Here I just disabled the child root because if you disabled the json root, everything you put to Gon will be like

gon.username = "john doe"; gon.gender = "male"...

instead of

gon.user = { username: "john doe", gender: "male" }

from gon.

yujingz avatar yujingz commented on June 28, 2024

I really enjoyed this combination and hope this can be helpful.

from gon.

gazay avatar gazay commented on June 28, 2024

Thank you! Already added to wiki https://github.com/gazay/gon/wiki/Usage-gon.rabl-with-Backbone.js

from gon.

Related Issues (20)

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.