aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-10 00:53:13 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-10 00:53:13 +0000
commit2807ccc69a54805e3914bcc21716f9bafbebef39 (patch)
treee8f6a1863b6f59f710c7a97b04edebbba005a656 /actionpack/lib/action_view/helpers
parentddf385a55445f22221d64c9ead43470e2c56af2e (diff)
downloadrails-2807ccc69a54805e3914bcc21716f9bafbebef39.tar.gz
rails-2807ccc69a54805e3914bcc21716f9bafbebef39.tar.bz2
rails-2807ccc69a54805e3914bcc21716f9bafbebef39.zip
Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn (closes #9513) [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7442 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/java_script_macros_helper.rb78
1 files changed, 1 insertions, 77 deletions
diff --git a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb
index d346f0367c..2109478909 100644
--- a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb
+++ b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb
@@ -6,83 +6,7 @@ module ActionView
# larger units. These macros also rely on counterparts in the controller that provide them with their backing. The in-place
# editing relies on ActionController::Base.in_place_edit_for and the autocompletion relies on
# ActionController::Base.auto_complete_for.
- module JavaScriptMacrosHelper
- # DEPRECATION WARNING: This method will become a separate plugin when Rails 2.0 ships.
- #
- # Makes an HTML element specified by the DOM ID +field_id+ become an in-place
- # editor of a property.
- #
- # A form is automatically created and displayed when the user clicks the element,
- # something like this:
- # <form id="myElement-in-place-edit-form" target="specified url">
- # <input name="value" text="The content of myElement"/>
- # <input type="submit" value="ok"/>
- # <a onclick="javascript to cancel the editing">cancel</a>
- # </form>
- #
- # The form is serialized and sent to the server using an AJAX call, the action on
- # the server should process the value and return the updated value in the body of
- # the reponse. The element will automatically be updated with the changed value
- # (as returned from the server).
- #
- # Required +options+ are:
- # <tt>:url</tt>:: Specifies the url where the updated value should
- # be sent after the user presses "ok".
- #
- # Addtional +options+ are:
- # <tt>:rows</tt>:: Number of rows (more than 1 will use a TEXTAREA)
- # <tt>:cols</tt>:: Number of characters the text input should span (works for both INPUT and TEXTAREA)
- # <tt>:size</tt>:: Synonym for :cols when using a single line text input.
- # <tt>:cancel_text</tt>:: The text on the cancel link. (default: "cancel")
- # <tt>:save_text</tt>:: The text on the save link. (default: "ok")
- # <tt>:loading_text</tt>:: The text to display while the data is being loaded from the server (default: "Loading...")
- # <tt>:saving_text</tt>:: The text to display when submitting to the server (default: "Saving...")
- # <tt>:external_control</tt>:: The id of an external control used to enter edit mode.
- # <tt>:load_text_url</tt>:: URL where initial value of editor (content) is retrieved.
- # <tt>:options</tt>:: Pass through options to the AJAX call (see prototype's Ajax.Updater)
- # <tt>:with</tt>:: JavaScript snippet that should return what is to be sent
- # in the AJAX call, +form+ is an implicit parameter
- # <tt>:script</tt>:: Instructs the in-place editor to evaluate the remote JavaScript response (default: false)
- # <tt>:click_to_edit_text</tt>::The text shown during mouseover the editable text (default: "Click to edit")
- def in_place_editor(field_id, options = {})
- function = "new Ajax.InPlaceEditor("
- function << "'#{field_id}', "
- function << "'#{url_for(options[:url])}'"
-
- js_options = {}
- js_options['cancelText'] = %('#{options[:cancel_text]}') if options[:cancel_text]
- js_options['okText'] = %('#{options[:save_text]}') if options[:save_text]
- js_options['loadingText'] = %('#{options[:loading_text]}') if options[:loading_text]
- js_options['savingText'] = %('#{options[:saving_text]}') if options[:saving_text]
- js_options['rows'] = options[:rows] if options[:rows]
- js_options['cols'] = options[:cols] if options[:cols]
- js_options['size'] = options[:size] if options[:size]
- js_options['externalControl'] = "'#{options[:external_control]}'" if options[:external_control]
- js_options['loadTextURL'] = "'#{url_for(options[:load_text_url])}'" if options[:load_text_url]
- js_options['ajaxOptions'] = options[:options] if options[:options]
- js_options['evalScripts'] = options[:script] if options[:script]
- js_options['callback'] = "function(form) { return #{options[:with]} }" if options[:with]
- js_options['clickToEditText'] = %('#{options[:click_to_edit_text]}') if options[:click_to_edit_text]
- function << (', ' + options_for_javascript(js_options)) unless js_options.empty?
-
- function << ')'
-
- javascript_tag(function)
- end
-
- # DEPRECATION WARNING: This method will become a separate plugin when Rails 2.0 ships.
- #
- # Renders the value of the specified object and method with in-place editing capabilities.
- #
- # See the RDoc on ActionController::InPlaceEditing to learn more about this.
- def in_place_editor_field(object, method, tag_options = {}, in_place_editor_options = {})
- tag = ::ActionView::Helpers::InstanceTag.new(object, method, self)
- tag_options = {:tag => "span", :id => "#{object}_#{method}_#{tag.object.id}_in_place_editor", :class => "in_place_editor_field"}.merge!(tag_options)
- in_place_editor_options[:url] = in_place_editor_options[:url] || url_for({ :action => "set_#{object}_#{method}", :id => tag.object.id })
- tag.to_content_tag(tag_options.delete(:tag), tag_options) +
- in_place_editor(tag_options[:id], in_place_editor_options)
- end
-
+ module JavaScriptMacrosHelper
# DEPRECATION WARNING: This method will become a separate plugin when Rails 2.0 ships.
#
# Adds AJAX autocomplete functionality to the text input field with the