REST in Place =========== _______ / \ | R.I.P.| | | | | ------------- REST in Place is an AJAX Inplace-Editor that talks to RESTful controllers. It requires absolutely no additional server-side code if your controller fulfills the following REST preconditions: - It uses the HTTP PUT method to update a record - It delivers an object in XML form for requests with "Accept: application/xml" headers The editor works by PUTting the updated value to the server and GETting the updated record afterwards to display the updated value. That way any authentication methods or otherwise funky workflows in your controllers are used for the inplace-editors requests. URL: BLOG: Instructions ============ First, install REST in Place with script/plugin install http://svn.varwig.org/rails/plugins/rest_in_place/ To use it, include either rest_in_place.js or jquery.rest_in_place.js in your template (_after_ loading the framework's JavaScript ). rest_in_place.js is the version for the Prototype framework, jquery.rest_in_place.js uses the [jQuery][] framework. For REST in Place to work with Rails request forgery protection, place the following lines into your applications layout: To make a piece of Text inplace-editable, wrap it into an element (a span usually) with class "rest_in_place". The editor needs 3 pieces of information to work: a URL, an object name and the attribute name. These are provided as follows: - put attributes into the element, like this: <%= @user.name %> - if any of these attributes is missing, DOM parents of the element are searched for them. That means you can write something like:
Name: <%= @user.name %>
eMail: <%= @user.email %>
- You can completely omit the url, to use the current document's url. With proper RESTful controllers this should always work, the explicit url-attribute is for cases when you want to edit a resource that is displayed as part of a non-RESTful webpage. - Rails provides the dom_id helper that constructs a dom id out of an ActiveRecord for you. So, your HTML page may look like this:
"> Name: <%= @user.name %>
eMail: <%= @user.email %>
REST in Place recognizes dom_ids of this form and derives the object parameter from them, so that (with the current documents url used) you really only need to provide the attributes name in most cases. !! -------- !! Note that a manually defined (in the element or in one of the parents) !! object always overrides dom_id recognition. !! -------- [jQuery]: http://www.jquery.com/ Example ======= Your routes.rb: map.resources :users Your app/controllers/users_controller.rb: class UsersController < ApplicationController def show @user = User.find params[:id] respond_to do |type| type.html type.xml {render :xml => @user.to_xml} end end def update @user = User.find params[:id] @user.update_attributes!(params[:user]) redirect_to @user, :status => :see_other end end Your app/views/users/show.html.erb: <%= javascript_include_tag "jquery-1.2.1" , "jquery.rest_in_place" %>
ID: <%= @user.id %>
Name: <%= @user.name %>
Why jQuery? =========== Why did I write this with jQuery instead of Prototype? (Note: The very first version only had the jQuery version included) Frankly I never even worked with prototype and have just recently gotten into Javascript using jQuery. jQuery is superior to Protoype and will hopefully replace Prototye someday or at least get [integrated into Rails][jRails] as nicely as Prototype so people can chose which framework they want to use. Note: Immediately after releasing the initial version I tried porting the plugin to Prototype. I was successful but Prototype really isn't as much fun to use as jQuery. Also, REST in Place at this stage is primarily a proof of concept. [jRails]: http://ennerchi.com/projects/jrails Non-Rails ========= REST in Place was written for Ruby on Rails but is usable with any kind of RESTful web api. Just include the rest_in_place.js in your webpage and follow the instructions. Participation ============= I'd love to get comments, bug reports (or better, patches) about REST in Place. I haven't set up a trac yet, so please use the project page at my blog to contact me about REST in Place: Copyright (c) 2008 [Jan Varwig], released under the MIT license