activeadmin 2.4.0 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeadmin might be problematic. Click here for more details.

Files changed (183) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +192 -30
  3. data/CONTRIBUTING.md +42 -62
  4. data/README.md +4 -4
  5. data/app/assets/javascripts/active_admin/base.js +517 -0
  6. data/app/assets/stylesheets/active_admin/_base.scss +29 -29
  7. data/app/assets/stylesheets/active_admin/_header.scss +40 -8
  8. data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
  9. data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
  10. data/app/assets/stylesheets/active_admin/components/_tables.scss +1 -2
  11. data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -8
  12. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +8 -0
  13. data/app/assets/stylesheets/active_admin/print.scss +2 -2
  14. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
  15. data/app/javascript/active_admin/base.js +28 -0
  16. data/app/{assets/javascripts/active_admin/lib/batch_actions.es6 → javascript/active_admin/initializers/batch-actions.js} +4 -2
  17. data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
  18. data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
  19. data/app/javascript/active_admin/initializers/filters.js +10 -0
  20. data/app/javascript/active_admin/initializers/per-page.js +13 -0
  21. data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +3 -0
  22. data/app/{assets/javascripts/active_admin/lib/checkbox-toggler.es6 → javascript/active_admin/lib/checkbox-toggler.js} +5 -5
  23. data/app/{assets/javascripts/active_admin/lib/dropdown-menu.es6 → javascript/active_admin/lib/dropdown-menu.js} +3 -10
  24. data/app/javascript/active_admin/lib/filters.js +39 -0
  25. data/app/{assets/javascripts/active_admin/lib/modal_dialog.es6 → javascript/active_admin/lib/modal-dialog.js} +10 -8
  26. data/app/javascript/active_admin/lib/per-page.js +38 -0
  27. data/app/{assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 → javascript/active_admin/lib/table-checkbox-toggler.js} +5 -3
  28. data/app/javascript/active_admin/lib/utils.js +40 -0
  29. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  30. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
  31. data/app/views/layouts/active_admin_logged_out.html.erb +15 -5
  32. data/config/locales/ar.yml +6 -6
  33. data/config/locales/az.yml +138 -0
  34. data/config/locales/en-CA.yml +3 -3
  35. data/config/locales/en-GB.yml +3 -3
  36. data/config/locales/en.yml +3 -3
  37. data/config/locales/es-MX.yml +2 -1
  38. data/config/locales/es.yml +5 -5
  39. data/config/locales/fr.yml +4 -4
  40. data/config/locales/it.yml +18 -0
  41. data/config/locales/ja.yml +3 -3
  42. data/config/locales/lv.yml +2 -2
  43. data/config/locales/vi.yml +6 -5
  44. data/docs/0-installation.md +26 -2
  45. data/docs/1-general-configuration.md +20 -0
  46. data/docs/11-decorators.md +16 -5
  47. data/docs/2-resource-customization.md +10 -1
  48. data/docs/3-index-pages.md +1 -1
  49. data/docs/5-forms.md +6 -1
  50. data/docs/6-show-pages.md +12 -0
  51. data/docs/9-batch-actions.md +2 -2
  52. data/docs/Gemfile +2 -2
  53. data/docs/Gemfile.lock +124 -113
  54. data/docs/_includes/top-menu.html +1 -1
  55. data/docs/documentation.md +1 -1
  56. data/docs/index.html +6 -6
  57. data/lib/active_admin/application.rb +14 -14
  58. data/lib/active_admin/application_settings.rb +3 -3
  59. data/lib/active_admin/authorization_adapter.rb +3 -3
  60. data/lib/active_admin/base_controller/authorization.rb +13 -12
  61. data/lib/active_admin/base_controller.rb +4 -4
  62. data/lib/active_admin/batch_actions/controller.rb +3 -3
  63. data/lib/active_admin/batch_actions/resource_extension.rb +9 -8
  64. data/lib/active_admin/batch_actions/views/batch_action_form.rb +3 -3
  65. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +6 -6
  66. data/lib/active_admin/batch_actions/views/selection_cells.rb +3 -3
  67. data/lib/active_admin/cancan_adapter.rb +1 -1
  68. data/lib/active_admin/collection_decorator.rb +31 -0
  69. data/lib/active_admin/csv_builder.rb +11 -7
  70. data/lib/active_admin/dependency.rb +11 -11
  71. data/lib/active_admin/devise.rb +5 -5
  72. data/lib/active_admin/dsl.rb +1 -1
  73. data/lib/active_admin/dynamic_settings_node.rb +2 -2
  74. data/lib/active_admin/engine.rb +10 -8
  75. data/lib/active_admin/error.rb +0 -2
  76. data/lib/active_admin/filters/active.rb +1 -1
  77. data/lib/active_admin/filters/active_filter.rb +6 -7
  78. data/lib/active_admin/filters/active_sidebar.rb +5 -5
  79. data/lib/active_admin/filters/forms.rb +6 -6
  80. data/lib/active_admin/filters/formtastic_addons.rb +1 -6
  81. data/lib/active_admin/filters/resource_extension.rb +1 -1
  82. data/lib/active_admin/filters.rb +7 -7
  83. data/lib/active_admin/form_builder.rb +24 -20
  84. data/lib/active_admin/generators/boilerplate.rb +1 -1
  85. data/lib/active_admin/helpers/optional_display.rb +2 -2
  86. data/lib/active_admin/inputs/datepicker_input.rb +1 -1
  87. data/lib/active_admin/inputs/filters/base/search_method_select.rb +4 -4
  88. data/lib/active_admin/inputs/filters/base.rb +1 -1
  89. data/lib/active_admin/inputs/filters/boolean_input.rb +1 -1
  90. data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -1
  91. data/lib/active_admin/inputs/filters/date_range_input.rb +15 -12
  92. data/lib/active_admin/inputs/filters/select_input.rb +2 -2
  93. data/lib/active_admin/localizers/resource_localizer.rb +3 -3
  94. data/lib/active_admin/localizers.rb +1 -1
  95. data/lib/active_admin/menu.rb +6 -3
  96. data/lib/active_admin/menu_item.rb +7 -7
  97. data/lib/active_admin/namespace.rb +12 -12
  98. data/lib/active_admin/namespace_settings.rb +8 -5
  99. data/lib/active_admin/order_clause.rb +1 -1
  100. data/lib/active_admin/orm/active_record/comments/comment.rb +3 -3
  101. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +19 -19
  102. data/lib/active_admin/orm/active_record/comments/views.rb +2 -2
  103. data/lib/active_admin/orm/active_record/comments.rb +19 -19
  104. data/lib/active_admin/orm/active_record.rb +1 -1
  105. data/lib/active_admin/page.rb +1 -1
  106. data/lib/active_admin/pundit_adapter.rb +5 -5
  107. data/lib/active_admin/resource/action_items.rb +5 -5
  108. data/lib/active_admin/resource/attributes.rb +1 -1
  109. data/lib/active_admin/resource/belongs_to.rb +2 -2
  110. data/lib/active_admin/resource/controllers.rb +1 -1
  111. data/lib/active_admin/resource/menu.rb +4 -4
  112. data/lib/active_admin/resource/naming.rb +5 -5
  113. data/lib/active_admin/resource/routes.rb +5 -7
  114. data/lib/active_admin/resource/scope_to.rb +7 -7
  115. data/lib/active_admin/resource/sidebars.rb +1 -1
  116. data/lib/active_admin/resource.rb +18 -18
  117. data/lib/active_admin/resource_controller/data_access.rb +1 -1
  118. data/lib/active_admin/resource_controller/decorators.rb +6 -28
  119. data/lib/active_admin/resource_controller/polymorphic_routes.rb +3 -2
  120. data/lib/active_admin/resource_controller/streaming.rb +7 -6
  121. data/lib/active_admin/resource_controller.rb +12 -11
  122. data/lib/active_admin/resource_dsl.rb +5 -5
  123. data/lib/active_admin/scope.rb +6 -6
  124. data/lib/active_admin/version.rb +1 -1
  125. data/lib/active_admin/view_factory.rb +17 -17
  126. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +3 -3
  127. data/lib/active_admin/view_helpers/display_helper.rb +5 -5
  128. data/lib/active_admin/view_helpers/download_format_links_helper.rb +1 -1
  129. data/lib/active_admin/view_helpers/fields_for.rb +2 -2
  130. data/lib/active_admin/view_helpers.rb +1 -1
  131. data/lib/active_admin/views/components/active_admin_form.rb +5 -5
  132. data/lib/active_admin/views/components/attributes_table.rb +5 -5
  133. data/lib/active_admin/views/components/blank_slate.rb +1 -1
  134. data/lib/active_admin/views/components/dropdown_menu.rb +8 -8
  135. data/lib/active_admin/views/components/index_list.rb +3 -3
  136. data/lib/active_admin/views/components/menu.rb +1 -1
  137. data/lib/active_admin/views/components/menu_item.rb +4 -4
  138. data/lib/active_admin/views/components/paginated_collection.rb +19 -18
  139. data/lib/active_admin/views/components/panel.rb +1 -1
  140. data/lib/active_admin/views/components/scopes.rb +7 -5
  141. data/lib/active_admin/views/components/site_title.rb +1 -1
  142. data/lib/active_admin/views/components/status_tag.rb +11 -11
  143. data/lib/active_admin/views/components/table_for.rb +18 -17
  144. data/lib/active_admin/views/components/tabs.rb +3 -3
  145. data/lib/active_admin/views/footer.rb +2 -1
  146. data/lib/active_admin/views/header.rb +2 -2
  147. data/lib/active_admin/views/index_as_blog.rb +1 -1
  148. data/lib/active_admin/views/index_as_grid.rb +1 -1
  149. data/lib/active_admin/views/index_as_table.rb +16 -16
  150. data/lib/active_admin/views/pages/base.rb +15 -11
  151. data/lib/active_admin/views/pages/index.rb +15 -13
  152. data/lib/active_admin/views/tabbed_navigation.rb +2 -2
  153. data/lib/active_admin/views/title_bar.rb +1 -1
  154. data/lib/active_admin/views.rb +1 -1
  155. data/lib/active_admin.rb +61 -63
  156. data/lib/activeadmin.rb +1 -1
  157. data/lib/generators/active_admin/assets/assets_generator.rb +2 -2
  158. data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
  159. data/lib/generators/active_admin/devise/devise_generator.rb +5 -5
  160. data/lib/generators/active_admin/install/install_generator.rb +14 -8
  161. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +9 -2
  162. data/lib/generators/active_admin/page/page_generator.rb +1 -1
  163. data/lib/generators/active_admin/resource/resource_generator.rb +3 -3
  164. data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
  165. data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
  166. data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
  167. data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
  168. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +26 -0
  169. data/lib/ransack_ext.rb +8 -8
  170. metadata +46 -84
  171. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  172. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  173. data/app/assets/images/active_admin/orderable.png +0 -0
  174. data/app/assets/javascripts/active_admin/base.es6 +0 -23
  175. data/app/assets/javascripts/active_admin/initializers/filters.es6 +0 -45
  176. data/app/assets/javascripts/active_admin/lib/active_admin.es6 +0 -41
  177. data/app/assets/javascripts/active_admin/lib/per_page.es6 +0 -47
  178. /data/{vendor → app}/assets/stylesheets/active_admin/_normalize.scss +0 -0
  179. /data/app/{assets/javascripts/active_admin/ext/jquery-ui.es6 → javascript/active_admin/ext/jquery-ui.js} +0 -0
  180. /data/app/{assets/javascripts/active_admin/ext/jquery.es6 → javascript/active_admin/ext/jquery.js} +0 -0
  181. /data/app/{assets/javascripts/active_admin/initializers/datepicker.es6 → javascript/active_admin/initializers/datepicker.js} +0 -0
  182. /data/app/{assets/javascripts/active_admin/lib/has_many.es6 → javascript/active_admin/initializers/has-many.js} +0 -0
  183. /data/app/{assets/javascripts/active_admin/initializers/tabs.es6 → javascript/active_admin/initializers/tabs.js} +0 -0
@@ -0,0 +1,517 @@
1
+ /**
2
+ * Warning: This file is auto-generated, do not modify. Instead, make your changes in 'app/javascript/active_admin/' and run `yarn build`
3
+ */
4
+ //= require jquery3
5
+ //= require jquery-ui/widgets/datepicker
6
+ //= require jquery-ui/widgets/dialog
7
+ //= require jquery-ui/widgets/sortable
8
+ //= require jquery-ui/widgets/tabs
9
+ //= require jquery-ui/widget
10
+ //= require jquery_ujs
11
+ //= require_self
12
+
13
+ (function(global, factory) {
14
+ typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("jquery"), require("jquery-ui/ui/widgets/datepicker"), require("jquery-ui/ui/widgets/dialog"), require("jquery-ui/ui/widgets/sortable"), require("jquery-ui/ui/widgets/tabs"), require("jquery-ui/ui/widget"), require("jquery-ujs")) : typeof define === "function" && define.amd ? define([ "exports", "jquery", "jquery-ui/ui/widgets/datepicker", "jquery-ui/ui/widgets/dialog", "jquery-ui/ui/widgets/sortable", "jquery-ui/ui/widgets/tabs", "jquery-ui/ui/widget", "jquery-ujs" ], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self,
15
+ factory(global.ActiveAdmin = {}));
16
+ })(this, function(exports) {
17
+ "use strict";
18
+ $.fn.serializeObject = function() {
19
+ return this.serializeArray().reduce(function(obj, item) {
20
+ obj[item.name] = item.value;
21
+ return obj;
22
+ }, {});
23
+ };
24
+ $.ui.dialog.prototype._focusTabbable = function() {
25
+ this.uiDialog.focus();
26
+ };
27
+ function ModalDialog(message, inputs, callback) {
28
+ var html = '<form id="dialog_confirm" title="' + message + '"><ul>';
29
+ for (var name in inputs) {
30
+ var opts, wrapper;
31
+ var type = inputs[name];
32
+ if (/^(datepicker|checkbox|text|number)$/.test(type)) {
33
+ wrapper = "input";
34
+ } else if (type === "textarea") {
35
+ wrapper = "textarea";
36
+ } else if ($.isArray(type)) {
37
+ var _ref = [ "select", type, "" ];
38
+ wrapper = _ref[0];
39
+ opts = _ref[1];
40
+ type = _ref[2];
41
+ } else {
42
+ throw new Error("Unsupported input type: {" + name + ": " + type + "}");
43
+ }
44
+ var klass = type === "datepicker" ? type : "";
45
+ html += "<li>\n <label>" + (name.charAt(0).toUpperCase() + name.slice(1)) + "</label>\n <" + wrapper + ' name="' + name + '" class="' + klass + '" type="' + type + '">' + (opts ? function() {
46
+ var result = [];
47
+ opts.forEach(function(v) {
48
+ var $elem = $("<option></option>");
49
+ if ($.isArray(v)) {
50
+ $elem.text(v[0]).val(v[1]);
51
+ } else {
52
+ $elem.text(v);
53
+ }
54
+ result.push($elem.wrap("<div></div>").parent().html());
55
+ });
56
+ return result;
57
+ }().join("") : "") + ("</" + wrapper + ">") + "</li>";
58
+ var _ref2 = [];
59
+ wrapper = _ref2[0];
60
+ opts = _ref2[1];
61
+ type = _ref2[2];
62
+ klass = _ref2[3];
63
+ }
64
+ html += "</ul></form>";
65
+ var form = $(html).appendTo("body");
66
+ $("body").trigger("modal_dialog:before_open", [ form ]);
67
+ form.dialog({
68
+ modal: true,
69
+ open: function open(_event, _ui) {
70
+ $("body").trigger("modal_dialog:after_open", [ form ]);
71
+ },
72
+ dialogClass: "active_admin_dialog",
73
+ buttons: {
74
+ OK: function OK() {
75
+ callback($(this).serializeObject());
76
+ $(this).dialog("close");
77
+ },
78
+ Cancel: function Cancel() {
79
+ $(this).dialog("close").remove();
80
+ }
81
+ }
82
+ });
83
+ }
84
+ var onDOMReady = function onDOMReady() {
85
+ $(".batch_actions_selector li a").off("click confirm:complete");
86
+ $(".batch_actions_selector li a").on("click", function(event) {
87
+ var _this = this;
88
+ var message;
89
+ event.stopPropagation();
90
+ event.preventDefault();
91
+ if (message = $(this).data("confirm")) {
92
+ ModalDialog(message, $(this).data("inputs"), function(inputs) {
93
+ $(_this).trigger("confirm:complete", inputs);
94
+ });
95
+ } else {
96
+ $(this).trigger("confirm:complete");
97
+ }
98
+ });
99
+ $(".batch_actions_selector li a").on("confirm:complete", function(event, inputs) {
100
+ var val;
101
+ if (val = JSON.stringify(inputs)) {
102
+ $("#batch_action_inputs").removeAttr("disabled").val(val);
103
+ } else {
104
+ $("#batch_action_inputs").attr("disabled", "disabled");
105
+ }
106
+ $("#batch_action").val($(this).data("action"));
107
+ $("#collection_selection").submit();
108
+ });
109
+ if ($(".batch_actions_selector").length && $(":checkbox.toggle_all").length) {
110
+ if ($(".paginated_collection table.index_table").length) {
111
+ $(".paginated_collection table.index_table").tableCheckboxToggler();
112
+ } else {
113
+ $(".paginated_collection").checkboxToggler();
114
+ }
115
+ $(document).on("change", ".paginated_collection :checkbox", function() {
116
+ if ($(".paginated_collection :checkbox:checked").length && $(".dropdown_menu_list").children().length) {
117
+ $(".batch_actions_selector").each(function() {
118
+ $(this).aaDropdownMenu("enable");
119
+ });
120
+ } else {
121
+ $(".batch_actions_selector").each(function() {
122
+ $(this).aaDropdownMenu("disable");
123
+ });
124
+ }
125
+ });
126
+ }
127
+ };
128
+ $(document).ready(onDOMReady).on("page:load turbolinks:load", onDOMReady);
129
+ var CheckboxToggler = function() {
130
+ function CheckboxToggler(options, container) {
131
+ this.options = options;
132
+ this.container = container;
133
+ this._init();
134
+ this._bind();
135
+ }
136
+ var _proto = CheckboxToggler.prototype;
137
+ _proto.option = function option(_key, _value) {};
138
+ _proto._init = function _init() {
139
+ if (!this.container) {
140
+ throw new Error("Container element not found");
141
+ } else {
142
+ this.$container = $(this.container);
143
+ }
144
+ if (!this.$container.find(".toggle_all").length) {
145
+ throw new Error('"toggle all" checkbox not found');
146
+ } else {
147
+ this.toggle_all_checkbox = this.$container.find(".toggle_all");
148
+ }
149
+ this.checkboxes = this.$container.find(":checkbox").not(this.toggle_all_checkbox);
150
+ };
151
+ _proto._bind = function _bind() {
152
+ var _this = this;
153
+ this.checkboxes.change(function(event) {
154
+ return _this._didChangeCheckbox(event.target);
155
+ });
156
+ this.toggle_all_checkbox.change(function() {
157
+ return _this._didChangeToggleAllCheckbox();
158
+ });
159
+ };
160
+ _proto._didChangeCheckbox = function _didChangeCheckbox(_checkbox) {
161
+ var numChecked = this.checkboxes.filter(":checked").length;
162
+ var allChecked = numChecked === this.checkboxes.length;
163
+ var someChecked = numChecked > 0 && numChecked < this.checkboxes.length;
164
+ this.toggle_all_checkbox.prop({
165
+ checked: allChecked,
166
+ indeterminate: someChecked
167
+ });
168
+ };
169
+ _proto._didChangeToggleAllCheckbox = function _didChangeToggleAllCheckbox() {
170
+ var setting = this.toggle_all_checkbox.prop("checked");
171
+ this.checkboxes.prop({
172
+ checked: setting
173
+ });
174
+ return setting;
175
+ };
176
+ return CheckboxToggler;
177
+ }();
178
+ $.widget.bridge("checkboxToggler", CheckboxToggler);
179
+ (function($) {
180
+ $(document).on("focus", "input.datepicker:not(.hasDatepicker)", function() {
181
+ var input = $(this);
182
+ if (input[0].type === "date") {
183
+ return;
184
+ }
185
+ var defaults = {
186
+ dateFormat: "yy-mm-dd"
187
+ };
188
+ var options = input.data("datepicker-options");
189
+ input.datepicker($.extend(defaults, options));
190
+ });
191
+ })(jQuery);
192
+ var DropdownMenu = function() {
193
+ function DropdownMenu(options, element) {
194
+ this.options = options;
195
+ this.element = element;
196
+ this.$element = $(this.element);
197
+ var defaults = {
198
+ fadeInDuration: 20,
199
+ fadeOutDuration: 100,
200
+ onClickActionItemCallback: null
201
+ };
202
+ this.options = $.extend(defaults, this.options);
203
+ this.isOpen = false;
204
+ this.$menuButton = this.$element.find(".dropdown_menu_button");
205
+ this.$menuList = this.$element.find(".dropdown_menu_list_wrapper");
206
+ this._buildMenuList();
207
+ this._bind();
208
+ }
209
+ var _proto = DropdownMenu.prototype;
210
+ _proto.open = function open() {
211
+ this.isOpen = true;
212
+ this.$menuList.fadeIn(this.options.fadeInDuration);
213
+ this._position();
214
+ return this;
215
+ };
216
+ _proto.close = function close() {
217
+ this.isOpen = false;
218
+ this.$menuList.fadeOut(this.options.fadeOutDuration);
219
+ return this;
220
+ };
221
+ _proto.destroy = function destroy() {
222
+ this.$element = null;
223
+ return this;
224
+ };
225
+ _proto.isDisabled = function isDisabled() {
226
+ return this.$menuButton.hasClass("disabled");
227
+ };
228
+ _proto.disable = function disable() {
229
+ this.$menuButton.addClass("disabled");
230
+ };
231
+ _proto.enable = function enable() {
232
+ this.$menuButton.removeClass("disabled");
233
+ };
234
+ _proto.option = function option(key, value) {
235
+ if ($.isPlainObject(key)) {
236
+ return this.options = $.extend(true, this.options, key);
237
+ } else if (key != null) {
238
+ return this.options[key];
239
+ } else {
240
+ return this.options[key] = value;
241
+ }
242
+ };
243
+ _proto._buildMenuList = function _buildMenuList() {
244
+ this.$nipple = $('<div class="dropdown_menu_nipple"></div>');
245
+ this.$menuList.prepend(this.$nipple);
246
+ this.$menuList.hide();
247
+ };
248
+ _proto._bind = function _bind() {
249
+ var _this = this;
250
+ $("body").click(function() {
251
+ if (_this.isOpen) {
252
+ _this.close();
253
+ }
254
+ });
255
+ this.$menuButton.click(function() {
256
+ if (!_this.isDisabled()) {
257
+ if (_this.isOpen) {
258
+ _this.close();
259
+ } else {
260
+ _this.open();
261
+ }
262
+ }
263
+ return false;
264
+ });
265
+ };
266
+ _proto._position = function _position() {
267
+ this.$menuList.css("top", this.$menuButton.position().top + this.$menuButton.outerHeight() + 10);
268
+ var button_left = this.$menuButton.position().left;
269
+ var button_center = this.$menuButton.outerWidth() / 2;
270
+ var button_right = button_left + button_center * 2;
271
+ var menu_center = this.$menuList.outerWidth() / 2;
272
+ var nipple_center = this.$nipple.outerWidth() / 2;
273
+ var window_right = $(window).width();
274
+ var centered_menu_left = button_left + button_center - menu_center;
275
+ var centered_menu_right = button_left + button_center + menu_center;
276
+ if (centered_menu_left < 0) {
277
+ this.$menuList.css("left", button_left);
278
+ this.$nipple.css("left", button_center - nipple_center);
279
+ } else if (centered_menu_right > window_right) {
280
+ this.$menuList.css("right", window_right - button_right);
281
+ this.$nipple.css("right", button_center - nipple_center);
282
+ } else {
283
+ this.$menuList.css("left", centered_menu_left);
284
+ this.$nipple.css("left", menu_center - nipple_center);
285
+ }
286
+ };
287
+ return DropdownMenu;
288
+ }();
289
+ $.widget.bridge("aaDropdownMenu", DropdownMenu);
290
+ var onDOMReady$1 = function onDOMReady() {
291
+ return $(".dropdown_menu").aaDropdownMenu();
292
+ };
293
+ $(document).ready(onDOMReady$1).on("page:load turbolinks:load", onDOMReady$1);
294
+ function hasTurbolinks() {
295
+ return typeof Turbolinks !== "undefined" && Turbolinks.supported;
296
+ }
297
+ function turbolinksVisit(params) {
298
+ var path = [ window.location.pathname, "?", toQueryString(params) ].join("");
299
+ Turbolinks.visit(path);
300
+ }
301
+ function queryString() {
302
+ return (window.location.search || "").replace(/^\?/, "");
303
+ }
304
+ function queryStringToParams() {
305
+ var decode = function decode(value) {
306
+ return decodeURIComponent((value || "").replace(/\+/g, "%20"));
307
+ };
308
+ return queryString().split("&").map(function(pair) {
309
+ return pair.split("=");
310
+ }).map(function(_ref) {
311
+ var key = _ref[0], value = _ref[1];
312
+ return {
313
+ name: decode(key),
314
+ value: decode(value)
315
+ };
316
+ });
317
+ }
318
+ function toQueryString(params) {
319
+ var encode = function encode(value) {
320
+ return encodeURIComponent(value || "");
321
+ };
322
+ return params.map(function(_ref2) {
323
+ var name = _ref2.name, value = _ref2.value;
324
+ return [ encode(name), encode(value) ];
325
+ }).map(function(pair) {
326
+ return pair.join("=");
327
+ }).join("&");
328
+ }
329
+ var Filters = function() {
330
+ function Filters() {}
331
+ Filters._clearForm = function _clearForm(event) {
332
+ var regex = /^(q\[|q%5B|q%5b|page|utf8|commit)/;
333
+ var params = queryStringToParams().filter(function(_ref) {
334
+ var name = _ref.name;
335
+ return !name.match(regex);
336
+ });
337
+ event.preventDefault();
338
+ if (hasTurbolinks()) {
339
+ turbolinksVisit(params);
340
+ } else {
341
+ window.location.search = toQueryString(params);
342
+ }
343
+ };
344
+ Filters._disableEmptyInputFields = function _disableEmptyInputFields(event) {
345
+ var params = $(this).find(":input").filter(function(i, input) {
346
+ return input.value === "";
347
+ }).prop({
348
+ disabled: true
349
+ }).end().serializeArray();
350
+ if (hasTurbolinks()) {
351
+ event.preventDefault();
352
+ turbolinksVisit(params);
353
+ }
354
+ };
355
+ Filters._setSearchType = function _setSearchType() {
356
+ $(this).siblings("input").prop({
357
+ name: "q[" + this.value + "]"
358
+ });
359
+ };
360
+ return Filters;
361
+ }();
362
+ (function($) {
363
+ $(document).on("click", ".clear_filters_btn", Filters._clearForm).on("submit", ".filter_form", Filters._disableEmptyInputFields).on("change", ".filter_form_field.select_and_search select", Filters._setSearchType);
364
+ })(jQuery);
365
+ $(function() {
366
+ $(document).on("click", "a.button.has_many_remove", function(event) {
367
+ event.preventDefault();
368
+ var parent = $(this).closest(".has_many_container");
369
+ var to_remove = $(this).closest("fieldset");
370
+ recompute_positions(parent);
371
+ parent.trigger("has_many_remove:before", [ to_remove, parent ]);
372
+ to_remove.remove();
373
+ return parent.trigger("has_many_remove:after", [ to_remove, parent ]);
374
+ });
375
+ $(document).on("click", "a.button.has_many_add", function(event) {
376
+ var before_add;
377
+ event.preventDefault();
378
+ var parent = $(this).closest(".has_many_container");
379
+ parent.trigger(before_add = $.Event("has_many_add:before"), [ parent ]);
380
+ if (!before_add.isDefaultPrevented()) {
381
+ var index = parent.data("has_many_index") || parent.children("fieldset").length - 1;
382
+ parent.data({
383
+ has_many_index: ++index
384
+ });
385
+ var regex = new RegExp($(this).data("placeholder"), "g");
386
+ var html = $(this).data("html").replace(regex, index);
387
+ var fieldset = $(html).insertBefore(this);
388
+ recompute_positions(parent);
389
+ return parent.trigger("has_many_add:after", [ fieldset, parent ]);
390
+ }
391
+ });
392
+ $(document).on("change", '.has_many_container[data-sortable] :input[name$="[_destroy]"]', function() {
393
+ recompute_positions($(this).closest(".has_many"));
394
+ });
395
+ init_sortable();
396
+ $(document).on("has_many_add:after", ".has_many_container", init_sortable);
397
+ });
398
+ var init_sortable = function init_sortable() {
399
+ var elems = $(".has_many_container[data-sortable]:not(.ui-sortable)");
400
+ elems.sortable({
401
+ items: "> fieldset",
402
+ handle: "> ol > .handle",
403
+ start: function start(ev, ui) {
404
+ ui.item.css({
405
+ opacity: .3
406
+ });
407
+ },
408
+ stop: function stop(ev, ui) {
409
+ ui.item.css({
410
+ opacity: 1
411
+ });
412
+ recompute_positions($(this));
413
+ }
414
+ });
415
+ elems.each(recompute_positions);
416
+ };
417
+ var recompute_positions = function recompute_positions(parent) {
418
+ parent = parent instanceof jQuery ? parent : $(this);
419
+ var input_name = parent.data("sortable");
420
+ var position = parseInt(parent.data("sortable-start") || 0, 10);
421
+ parent.children("fieldset").each(function() {
422
+ var destroy_input = $(this).find("> ol > .input > :input[name$='[_destroy]']");
423
+ var sortable_input = $(this).find("> ol > .input > :input[name$='[" + input_name + "]']");
424
+ if (sortable_input.length) {
425
+ sortable_input.val(destroy_input.is(":checked") ? "" : position++);
426
+ }
427
+ });
428
+ };
429
+ var PerPage = function() {
430
+ function PerPage(element) {
431
+ this.element = element;
432
+ }
433
+ var _proto = PerPage.prototype;
434
+ _proto.update = function update() {
435
+ var params = queryStringToParams().filter(function(_ref) {
436
+ var name = _ref.name;
437
+ return name != "per_page" || name != "page";
438
+ });
439
+ params.push({
440
+ name: "per_page",
441
+ value: this.element.value
442
+ });
443
+ if (hasTurbolinks()) {
444
+ turbolinksVisit(params);
445
+ } else {
446
+ window.location.search = toQueryString(params);
447
+ }
448
+ };
449
+ PerPage._jQueryInterface = function _jQueryInterface(config) {
450
+ return this.each(function() {
451
+ var $this = $(this);
452
+ var data = $this.data("perPage");
453
+ if (!data) {
454
+ data = new PerPage(this);
455
+ $this.data("perPage", data);
456
+ }
457
+ if (config === "update") {
458
+ data[config]();
459
+ }
460
+ });
461
+ };
462
+ return PerPage;
463
+ }();
464
+ (function($) {
465
+ $(document).on("change", ".pagination_per_page > select", function(_event) {
466
+ PerPage._jQueryInterface.call($(this), "update");
467
+ });
468
+ $.fn["perPage"] = PerPage._jQueryInterface;
469
+ $.fn["perPage"].Constructor = PerPage;
470
+ })(jQuery);
471
+ function _inheritsLoose(subClass, superClass) {
472
+ subClass.prototype = Object.create(superClass.prototype);
473
+ subClass.prototype.constructor = subClass;
474
+ subClass.__proto__ = superClass;
475
+ }
476
+ var TableCheckboxToggler = function(_CheckboxToggler) {
477
+ _inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
478
+ function TableCheckboxToggler() {
479
+ return _CheckboxToggler.apply(this, arguments) || this;
480
+ }
481
+ var _proto = TableCheckboxToggler.prototype;
482
+ _proto._bind = function _bind() {
483
+ var _this = this;
484
+ _CheckboxToggler.prototype._bind.apply(this, arguments);
485
+ this.$container.find("tbody td").click(function(event) {
486
+ if (event.target.type !== "checkbox") {
487
+ _this._didClickCell(event.target);
488
+ }
489
+ });
490
+ };
491
+ _proto._didChangeCheckbox = function _didChangeCheckbox(checkbox) {
492
+ _CheckboxToggler.prototype._didChangeCheckbox.apply(this, arguments);
493
+ $(checkbox).parents("tr").toggleClass("selected", checkbox.checked);
494
+ };
495
+ _proto._didChangeToggleAllCheckbox = function _didChangeToggleAllCheckbox() {
496
+ this.$container.find("tbody tr").toggleClass("selected", _CheckboxToggler.prototype._didChangeToggleAllCheckbox.apply(this, arguments));
497
+ };
498
+ _proto._didClickCell = function _didClickCell(cell) {
499
+ $(cell).parent("tr").find(":checkbox").click();
500
+ };
501
+ return TableCheckboxToggler;
502
+ }(CheckboxToggler);
503
+ $.widget.bridge("tableCheckboxToggler", TableCheckboxToggler);
504
+ var onDOMReady$2 = function onDOMReady() {
505
+ return $("#active_admin_content .tabs").tabs();
506
+ };
507
+ $(document).ready(onDOMReady$2).on("page:load turbolinks:load", onDOMReady$2);
508
+ function modal_dialog(message, inputs, callback) {
509
+ console.warn("ActiveAdmin.modal_dialog is deprecated in favor of ActiveAdmin.ModalDialog, please update usage.");
510
+ return ModalDialog(message, inputs, callback);
511
+ }
512
+ exports.ModalDialog = ModalDialog;
513
+ exports.modal_dialog = modal_dialog;
514
+ Object.defineProperty(exports, "__esModule", {
515
+ value: true
516
+ });
517
+ });
@@ -1,36 +1,36 @@
1
1
  /* Active Admin CSS */
2
2
  // Normalize
3
- @import "active_admin/normalize";
3
+ @import "./normalize";
4
4
 
5
5
  // Partials
6
- @import "active_admin/typography";
7
- @import "active_admin/header";
8
- @import "active_admin/forms";
9
- @import "active_admin/components/comments";
10
- @import "active_admin/components/flash_messages";
11
- @import "active_admin/components/date_picker";
12
- @import "active_admin/components/tables";
13
- @import "active_admin/components/batch_actions";
14
- @import "active_admin/components/modal_dialog";
15
- @import "active_admin/components/blank_slates";
16
- @import "active_admin/components/breadcrumbs";
17
- @import "active_admin/components/dropdown_menu";
18
- @import "active_admin/components/buttons";
19
- @import "active_admin/components/grid";
20
- @import "active_admin/components/links";
21
- @import "active_admin/components/pagination";
22
- @import "active_admin/components/panels";
23
- @import "active_admin/components/columns";
24
- @import "active_admin/components/scopes";
25
- @import "active_admin/components/status_tags";
26
- @import "active_admin/components/table_tools";
27
- @import "active_admin/components/index_list";
28
- @import "active_admin/components/unsupported_browser";
29
- @import "active_admin/components/tabs";
30
- @import "active_admin/pages/logged_out";
31
- @import "active_admin/structure/footer";
32
- @import "active_admin/structure/main_structure";
33
- @import "active_admin/structure/title_bar";
6
+ @import "./typography";
7
+ @import "./header";
8
+ @import "./forms";
9
+ @import "./components/comments";
10
+ @import "./components/flash_messages";
11
+ @import "./components/date_picker";
12
+ @import "./components/tables";
13
+ @import "./components/batch_actions";
14
+ @import "./components/modal_dialog";
15
+ @import "./components/blank_slates";
16
+ @import "./components/breadcrumbs";
17
+ @import "./components/dropdown_menu";
18
+ @import "./components/buttons";
19
+ @import "./components/grid";
20
+ @import "./components/links";
21
+ @import "./components/pagination";
22
+ @import "./components/panels";
23
+ @import "./components/columns";
24
+ @import "./components/scopes";
25
+ @import "./components/status_tags";
26
+ @import "./components/table_tools";
27
+ @import "./components/index_list";
28
+ @import "./components/unsupported_browser";
29
+ @import "./components/tabs";
30
+ @import "./pages/logged_out";
31
+ @import "./structure/footer";
32
+ @import "./structure/main_structure";
33
+ @import "./structure/title_bar";
34
34
 
35
35
  body {
36
36
  @include sans-family;
@@ -1,5 +1,3 @@
1
- //= depend_on_asset "active_admin/nested_menu_arrow.gif"
2
- //= depend_on_asset "active_admin/nested_menu_arrow_dark.gif"
3
1
  // ----------------------------------- Header
4
2
  #header {
5
3
  @include primary-gradient;
@@ -54,6 +52,11 @@
54
52
  margin: 0;
55
53
  padding: 0;
56
54
 
55
+ li {
56
+ /* Hover on li, display the ul */
57
+ &:hover > ul { display: block;}
58
+ }
59
+
57
60
  & > li {
58
61
  display: inline-block;
59
62
  margin-right: 4px;
@@ -75,12 +78,12 @@
75
78
  }
76
79
 
77
80
  &.has_nested > a {
78
- background: image-url('active_admin/nested_menu_arrow.gif') no-repeat calc(100% - 7px) 50%;
81
+ background: url($menu-arrow-light-icon-url) no-repeat calc(100% - 7px) 50%;
79
82
  padding-right: 20px;
80
83
  }
81
84
 
82
85
  &.has_nested.current > a {
83
- background: $current-menu-item-background image-url('active_admin/nested_menu_arrow_dark.gif') no-repeat calc(100% - 7px) 50%;
86
+ background: $current-menu-item-background url($menu-arrow-dark-icon-url) no-repeat calc(100% - 7px) 50%;
84
87
  padding-right: 20px;
85
88
  }
86
89
 
@@ -92,13 +95,11 @@
92
95
  &.has_nested:hover > a {
93
96
  @include rounded-top(10px);
94
97
  border-bottom: 5px solid $hover-menu-item-background;
95
- background: $hover-menu-item-background image-url('active_admin/nested_menu_arrow_dark.gif') no-repeat calc(100% - 7px) 50%;
98
+ background: $hover-menu-item-background url($menu-arrow-dark-icon-url) no-repeat calc(100% - 7px) 50%;
96
99
  z-index: 1020;
97
100
  }
98
101
 
99
102
 
100
- /* Hover on li, display the ul */
101
- &:hover ul { display: block;}
102
103
  /* Drop down menus */
103
104
  ul {
104
105
  background: $hover-menu-item-background;
@@ -116,6 +117,7 @@
116
117
  z-index: 1010;
117
118
 
118
119
  li {
120
+ position: relative;
119
121
  margin: 0px;
120
122
  a {
121
123
  background: none;
@@ -126,10 +128,40 @@
126
128
  &.current {
127
129
  a { @include rounded(0) }
128
130
  }
131
+
132
+ &.has_nested > a {
133
+ background: url($menu-arrow-right-light-icon-url) no-repeat calc(100% - 7px) 55%;
134
+ padding-right: 20px;
135
+ }
136
+
137
+ &.has_nested:hover > a {
138
+ background: url($menu-arrow-right-dark-icon-url) no-repeat calc(100% - 7px) 55%;
139
+ color: #fff;
140
+ }
141
+
142
+ ul {
143
+ @include rounded-all(10px,10px,10px,10px);
144
+ margin-top: 0;
145
+ top: -3px;
146
+ left: 100%;
147
+
148
+ /* Create an invisible backdrop that adds 8px margin around the dropdown menu or submenu
149
+ that maintains the hover. This makes it much easier to navigate to submenus in
150
+ particular without losing hover accientally, especially near rounded corners. */
151
+ &:after {
152
+ content: "";
153
+ display: block;
154
+ position: absolute;
155
+ top: -8px;
156
+ left: -8px;
157
+ height: calc(100% + 16px);
158
+ width: calc(100% + 16px);
159
+ z-index: -2;
160
+ }
161
+ }
129
162
  }
130
163
  }
131
164
  }
132
-
133
165
  }
134
166
 
135
167
  #tabs {
@@ -1 +1 @@
1
- @import "active_admin/mixins/all";
1
+ @import "./mixins/all";