dynamic_fields_for_rails 0.6.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +0 -1
  3. data/Rakefile +2 -0
  4. data/app/helpers/dynamic_fields_for_helper.rb +14 -9
  5. data/lib/dynamic_fields_for_rails/version.rb +3 -1
  6. data/lib/dynamic_fields_for_rails.rb +7 -3
  7. metadata +9 -168
  8. data/.gitignore +0 -18
  9. data/.travis.yml +0 -5
  10. data/Gemfile +0 -4
  11. data/dynamic_fields_for_rails.gemspec +0 -27
  12. data/test/config/active_record.rb +0 -10
  13. data/test/dummy/Rakefile +0 -7
  14. data/test/dummy/app/controllers/application_controller.rb +0 -3
  15. data/test/dummy/app/helpers/application_helper.rb +0 -2
  16. data/test/dummy/app/models/child.rb +0 -2
  17. data/test/dummy/app/models/parent.rb +0 -4
  18. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  19. data/test/dummy/app/views/parents/_child_fields.html.erb +0 -0
  20. data/test/dummy/app/views/parents/form.html.erb +0 -1
  21. data/test/dummy/config/application.rb +0 -41
  22. data/test/dummy/config/boot.rb +0 -10
  23. data/test/dummy/config/database.yml +0 -22
  24. data/test/dummy/config/environment.rb +0 -5
  25. data/test/dummy/config/environments/development.rb +0 -24
  26. data/test/dummy/config/environments/production.rb +0 -50
  27. data/test/dummy/config/environments/test.rb +0 -33
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  29. data/test/dummy/config/initializers/inflections.rb +0 -10
  30. data/test/dummy/config/initializers/mime_types.rb +0 -5
  31. data/test/dummy/config/initializers/secret_token.rb +0 -8
  32. data/test/dummy/config/initializers/session_store.rb +0 -8
  33. data/test/dummy/config/locales/en.yml +0 -5
  34. data/test/dummy/config/routes.rb +0 -59
  35. data/test/dummy/config.ru +0 -4
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/migrate/20130423140255_create_parents.rb +0 -5
  38. data/test/dummy/db/migrate/20130423140307_create_children.rb +0 -8
  39. data/test/dummy/db/schema.rb +0 -25
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +0 -8
  42. data/test/dummy/log/production.log +0 -0
  43. data/test/dummy/log/server.log +0 -0
  44. data/test/dummy/log/test.log +0 -1353
  45. data/test/dummy/public/404.html +0 -26
  46. data/test/dummy/public/422.html +0 -26
  47. data/test/dummy/public/500.html +0 -26
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/public/javascripts/application.js +0 -2
  50. data/test/dummy/public/javascripts/controls.js +0 -965
  51. data/test/dummy/public/javascripts/dragdrop.js +0 -974
  52. data/test/dummy/public/javascripts/effects.js +0 -1123
  53. data/test/dummy/public/javascripts/prototype.js +0 -6001
  54. data/test/dummy/public/javascripts/rails.js +0 -202
  55. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  56. data/test/dummy/script/rails +0 -6
  57. data/test/dynamic_fields_for_helper_test.rb +0 -7
  58. data/test/link_to_add_fields_test.rb +0 -34
  59. data/test/link_to_delete_fields_test.rb +0 -40
  60. data/test/test_helper.rb +0 -17
@@ -1,202 +0,0 @@
1
- (function() {
2
- Ajax.Responders.register({
3
- onCreate: function(request) {
4
- var token = $$('meta[name=csrf-token]')[0];
5
- if (token) {
6
- if (!request.options.requestHeaders) request.options.requestHeaders = {};
7
- request.options.requestHeaders['X-CSRF-Token'] = token.readAttribute('content');
8
- }
9
- }
10
- });
11
-
12
- // Technique from Juriy Zaytsev
13
- // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
14
- function isEventSupported(eventName) {
15
- var el = document.createElement('div');
16
- eventName = 'on' + eventName;
17
- var isSupported = (eventName in el);
18
- if (!isSupported) {
19
- el.setAttribute(eventName, 'return;');
20
- isSupported = typeof el[eventName] == 'function';
21
- }
22
- el = null;
23
- return isSupported;
24
- }
25
-
26
- function isForm(element) {
27
- return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM';
28
- }
29
-
30
- function isInput(element) {
31
- if (Object.isElement(element)) {
32
- var name = element.nodeName.toUpperCase();
33
- return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA';
34
- }
35
- else return false;
36
- }
37
-
38
- var submitBubbles = isEventSupported('submit'),
39
- changeBubbles = isEventSupported('change');
40
-
41
- if (!submitBubbles || !changeBubbles) {
42
- // augment the Event.Handler class to observe custom events when needed
43
- Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
44
- function(init, element, eventName, selector, callback) {
45
- init(element, eventName, selector, callback);
46
- // is the handler being attached to an element that doesn't support this event?
47
- if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
48
- (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
49
- // "submit" => "emulated:submit"
50
- this.eventName = 'emulated:' + this.eventName;
51
- }
52
- }
53
- );
54
- }
55
-
56
- if (!submitBubbles) {
57
- // discover forms on the page by observing focus events which always bubble
58
- document.on('focusin', 'form', function(focusEvent, form) {
59
- // special handler for the real "submit" event (one-time operation)
60
- if (!form.retrieve('emulated:submit')) {
61
- form.on('submit', function(submitEvent) {
62
- var emulated = form.fire('emulated:submit', submitEvent, true);
63
- // if custom event received preventDefault, cancel the real one too
64
- if (emulated.returnValue === false) submitEvent.preventDefault();
65
- });
66
- form.store('emulated:submit', true);
67
- }
68
- });
69
- }
70
-
71
- if (!changeBubbles) {
72
- // discover form inputs on the page
73
- document.on('focusin', 'input, select, textarea', function(focusEvent, input) {
74
- // special handler for real "change" events
75
- if (!input.retrieve('emulated:change')) {
76
- input.on('change', function(changeEvent) {
77
- input.fire('emulated:change', changeEvent, true);
78
- });
79
- input.store('emulated:change', true);
80
- }
81
- });
82
- }
83
-
84
- function handleRemote(element) {
85
- var method, url, params;
86
-
87
- var event = element.fire("ajax:before");
88
- if (event.stopped) return false;
89
-
90
- if (element.tagName.toLowerCase() === 'form') {
91
- method = element.readAttribute('method') || 'post';
92
- url = element.readAttribute('action');
93
- // serialize the form with respect to the submit button that was pressed
94
- params = element.serialize({ submit: element.retrieve('rails:submit-button') });
95
- // clear the pressed submit button information
96
- element.store('rails:submit-button', null);
97
- } else {
98
- method = element.readAttribute('data-method') || 'get';
99
- url = element.readAttribute('href');
100
- params = {};
101
- }
102
-
103
- new Ajax.Request(url, {
104
- method: method,
105
- parameters: params,
106
- evalScripts: true,
107
-
108
- onCreate: function(response) { element.fire("ajax:create", response); },
109
- onComplete: function(response) { element.fire("ajax:complete", response); },
110
- onSuccess: function(response) { element.fire("ajax:success", response); },
111
- onFailure: function(response) { element.fire("ajax:failure", response); }
112
- });
113
-
114
- element.fire("ajax:after");
115
- }
116
-
117
- function insertHiddenField(form, name, value) {
118
- form.insert(new Element('input', { type: 'hidden', name: name, value: value }));
119
- }
120
-
121
- function handleMethod(element) {
122
- var method = element.readAttribute('data-method'),
123
- url = element.readAttribute('href'),
124
- csrf_param = $$('meta[name=csrf-param]')[0],
125
- csrf_token = $$('meta[name=csrf-token]')[0];
126
-
127
- var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
128
- $(element.parentNode).insert(form);
129
-
130
- if (method !== 'post') {
131
- insertHiddenField(form, '_method', method);
132
- }
133
-
134
- if (csrf_param) {
135
- insertHiddenField(form, csrf_param.readAttribute('content'), csrf_token.readAttribute('content'));
136
- }
137
-
138
- form.submit();
139
- }
140
-
141
- function disableFormElements(form) {
142
- form.select('input[type=submit][data-disable-with]').each(function(input) {
143
- input.store('rails:original-value', input.getValue());
144
- input.setValue(input.readAttribute('data-disable-with')).disable();
145
- });
146
- }
147
-
148
- function enableFormElements(form) {
149
- form.select('input[type=submit][data-disable-with]').each(function(input) {
150
- input.setValue(input.retrieve('rails:original-value')).enable();
151
- });
152
- }
153
-
154
- function allowAction(element) {
155
- var message = element.readAttribute('data-confirm');
156
- return !message || confirm(message);
157
- }
158
-
159
- document.on('click', 'a[data-confirm], a[data-remote], a[data-method]', function(event, link) {
160
- if (!allowAction(link)) {
161
- event.stop();
162
- return false;
163
- }
164
-
165
- if (link.readAttribute('data-remote')) {
166
- handleRemote(link);
167
- event.stop();
168
- } else if (link.readAttribute('data-method')) {
169
- handleMethod(link);
170
- event.stop();
171
- }
172
- });
173
-
174
- document.on("click", "form input[type=submit], form button[type=submit], form button:not([type])", function(event, button) {
175
- // register the pressed submit button
176
- event.findElement('form').store('rails:submit-button', button.name || false);
177
- });
178
-
179
- document.on("submit", function(event) {
180
- var form = event.findElement();
181
-
182
- if (!allowAction(form)) {
183
- event.stop();
184
- return false;
185
- }
186
-
187
- if (form.readAttribute('data-remote')) {
188
- handleRemote(form);
189
- event.stop();
190
- } else {
191
- disableFormElements(form);
192
- }
193
- });
194
-
195
- document.on('ajax:create', 'form', function(event, form) {
196
- if (form == event.findElement()) disableFormElements(form);
197
- });
198
-
199
- document.on('ajax:complete', 'form', function(event, form) {
200
- if (form == event.findElement()) enableFormElements(form);
201
- });
202
- })();
File without changes
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
-
4
- APP_PATH = File.expand_path('../../config/application', __FILE__)
5
- require File.expand_path('../../config/boot', __FILE__)
6
- require 'rails/commands'
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class DynamicFieldsForHelperTest < ActiveSupport::TestCase
4
- test "truth" do
5
- assert_kind_of Module, DynamicFieldsForHelper
6
- end
7
- end
@@ -1,34 +0,0 @@
1
- require "test_helper"
2
-
3
- class LinkToAddFieldsTest < ActionView::TestCase
4
- tests ActionView::Helpers::FormHelper
5
-
6
- include DynamicFieldsForHelper
7
-
8
- def form_for(*)
9
- @output_buffer = super
10
- end
11
-
12
- def setup
13
- @parent = Parent.create
14
- @parent.children.build
15
- end
16
-
17
- test "generates a add fields link" do
18
- form_for(@parent, url: '/') do |form|
19
- link_to_add_fields(form, 'children', name: "Test")
20
- end
21
-
22
- assert_match(%r{<a(.*)class=\"add_fields(.*)\"(.*)>Test<\/a>}, @output_buffer)
23
- end
24
-
25
- test "generates a add fields link with block if it is given" do
26
- form_for(@parent, url: '/') do |form|
27
- link_to_add_fields form, 'children' do
28
- content_tag "div", "Test"
29
- end
30
- end
31
-
32
- assert_match(%r{<a(.*)class=\"add_fields(.*)\"(.*)><div>Test<\/div><\/a>}, @output_buffer)
33
- end
34
- end
@@ -1,40 +0,0 @@
1
- require "test_helper"
2
-
3
- class LinkToDeleteFieldsTest < ActionView::TestCase
4
- tests ActionView::Helpers::FormHelper
5
-
6
- include DynamicFieldsForHelper
7
-
8
- def form_for(*)
9
- @output_buffer = super
10
- end
11
-
12
- def setup
13
- @parent = Parent.create
14
- @parent.children.build
15
- end
16
-
17
- test "generates a delete fields link" do
18
- form_for(@parent, url: '/') do |form|
19
- form.fields_for :children, @parent.children do |fields|
20
- link_to_delete_fields(fields, name: "Test")
21
- end
22
- end
23
-
24
- assert_match(%r{<input(.*)name=\"parent\[children_attributes\](.*)\[_destroy\]\"(.*)value=\"false\" \/>}, @output_buffer)
25
- assert_match(%r{<a(.*)class=\"remove_fields(.*)\"(.*)>Test<\/a>}, @output_buffer)
26
- end
27
-
28
- test "generates a deletes fields link with block if it is given" do
29
- form_for(@parent, url: '/') do |form|
30
- form.fields_for :children, @parent.children do |fields|
31
- link_to_delete_fields fields do
32
- content_tag "div", "Test"
33
- end
34
- end
35
- end
36
-
37
- assert_match(%r{<input(.*)name=\"parent\[children_attributes\](.*)\[_destroy\]\"(.*)value=\"false\" \/>}, @output_buffer)
38
- assert_match(%r{<a(.*)class=\"remove_fields(.*)\"(.*)><div>Test<\/div><\/a>}, @output_buffer)
39
- end
40
- end
data/test/test_helper.rb DELETED
@@ -1,17 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler/setup'
3
-
4
- ENV['RAILS_ENV'] = 'test'
5
- require File.expand_path('../dummy/config/environment.rb', __FILE__)
6
- require "rails/test_help"
7
- require "mocha/setup"
8
- require "active_support/test_case"
9
- require "active_support/inflector"
10
-
11
- Rails.backtrace_cleaner.remove_silencers!
12
-
13
- ENGINE_RAILS_ROOT = File.join(File.dirname(__FILE__), '../')
14
-
15
- # Load support files
16
- Dir[File.join(ENGINE_RAILS_ROOT, 'test/support/**/*.rb')].each { |f| require f }
17
- Dir[File.join(ENGINE_RAILS_ROOT, 'test/config/**/*.rb')].each { |f| require f }