activeadmin 1.0.0 → 1.1.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 (276) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +20 -0
  3. data/.mdlrc +1 -0
  4. data/.rubocop.yml +52 -3
  5. data/.simplecov +13 -0
  6. data/.travis.yml +9 -24
  7. data/.yardopts +0 -1
  8. data/CHANGELOG.md +85 -4
  9. data/CONTRIBUTING.md +33 -57
  10. data/Gemfile +26 -17
  11. data/Rakefile +1 -12
  12. data/activeadmin.gemspec +9 -11
  13. data/app/assets/javascripts/active_admin/base.js.coffee +6 -2
  14. data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +5 -1
  15. data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +5 -1
  16. data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +5 -1
  17. data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +5 -1
  18. data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +6 -3
  19. data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +9 -7
  20. data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +5 -2
  21. data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +6 -2
  22. data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +3 -5
  23. data/app/assets/stylesheets/active_admin/_base.scss +2 -2
  24. data/app/assets/stylesheets/active_admin/_forms.scss +6 -12
  25. data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
  26. data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
  27. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +1 -0
  28. data/app/assets/stylesheets/active_admin/components/_tables.scss +4 -1
  29. data/app/assets/stylesheets/active_admin/mixins/_all.scss +0 -2
  30. data/app/assets/stylesheets/active_admin/print.scss +2 -3
  31. data/app/views/active_admin/devise/sessions/new.html.erb +1 -1
  32. data/app/views/active_admin/devise/shared/_links.erb +12 -6
  33. data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
  34. data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
  35. data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
  36. data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
  37. data/app/views/kaminari/active_admin/_page.html.erb +12 -0
  38. data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
  39. data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
  40. data/codecov.yml +14 -12
  41. data/config/i18n-tasks.yml +26 -0
  42. data/config/locales/ar.yml +1 -3
  43. data/config/locales/bg.yml +0 -2
  44. data/config/locales/bs.yml +0 -2
  45. data/config/locales/ca.yml +0 -2
  46. data/config/locales/cs.yml +0 -2
  47. data/config/locales/da.yml +1 -3
  48. data/config/locales/de-CH.yml +1 -3
  49. data/config/locales/de.yml +1 -3
  50. data/config/locales/el.yml +1 -3
  51. data/config/locales/en-CA.yml +138 -0
  52. data/config/locales/en-GB.yml +43 -3
  53. data/config/locales/en.yml +8 -4
  54. data/config/locales/es-MX.yml +3 -2
  55. data/config/locales/es.yml +10 -4
  56. data/config/locales/fa.yml +0 -2
  57. data/config/locales/fi.yml +0 -2
  58. data/config/locales/fr.yml +9 -2
  59. data/config/locales/he.yml +53 -7
  60. data/config/locales/hr.yml +0 -2
  61. data/config/locales/hu.yml +0 -2
  62. data/config/locales/id.yml +1 -3
  63. data/config/locales/it.yml +2 -4
  64. data/config/locales/ja.yml +1 -3
  65. data/config/locales/ko.yml +0 -2
  66. data/config/locales/lt.yml +24 -4
  67. data/config/locales/lv.yml +0 -2
  68. data/config/locales/nb.yml +0 -2
  69. data/config/locales/nl.yml +1 -3
  70. data/config/locales/pl.yml +3 -2
  71. data/config/locales/pt-BR.yml +1 -3
  72. data/config/locales/pt-PT.yml +0 -2
  73. data/config/locales/ro.yml +0 -2
  74. data/config/locales/ru.yml +1 -3
  75. data/config/locales/sk.yml +0 -2
  76. data/config/locales/sv-SE.yml +1 -3
  77. data/config/locales/tr.yml +0 -2
  78. data/config/locales/uk.yml +1 -3
  79. data/config/locales/vi.yml +0 -2
  80. data/config/locales/zh-CN.yml +0 -2
  81. data/config/locales/zh-TW.yml +1 -3
  82. data/config/mdl_style.rb +9 -0
  83. data/cucumber.yml +3 -3
  84. data/docs/0-installation.md +15 -12
  85. data/docs/1-general-configuration.md +10 -3
  86. data/docs/10-custom-pages.md +10 -5
  87. data/docs/11-decorators.md +1 -0
  88. data/docs/12-arbre-components.md +7 -9
  89. data/docs/13-authorization-adapter.md +39 -24
  90. data/docs/14-gotchas.md +41 -22
  91. data/docs/2-resource-customization.md +41 -18
  92. data/docs/3-index-pages.md +30 -12
  93. data/docs/3-index-pages/custom-index.md +1 -0
  94. data/docs/3-index-pages/index-as-block.md +0 -5
  95. data/docs/3-index-pages/index-as-blog.md +0 -5
  96. data/docs/3-index-pages/index-as-grid.md +0 -5
  97. data/docs/3-index-pages/index-as-table.md +1 -9
  98. data/docs/4-csv-format.md +2 -1
  99. data/docs/5-forms.md +45 -21
  100. data/docs/6-show-pages.md +2 -1
  101. data/docs/7-sidebars.md +2 -1
  102. data/docs/8-custom-actions.md +4 -1
  103. data/docs/9-batch-actions.md +4 -2
  104. data/docs/documentation.md +19 -21
  105. data/features/comments/commenting.feature +20 -0
  106. data/features/index/filters.feature +41 -1
  107. data/features/index/format_as_csv.feature +17 -0
  108. data/features/index/index_scopes.feature +15 -0
  109. data/features/registering_assets.feature +8 -4
  110. data/features/show/attributes_table_title.feature +54 -0
  111. data/features/show/tabs.feature +10 -4
  112. data/features/step_definitions/action_link_steps.rb +0 -1
  113. data/features/step_definitions/attributes_table_title_steps.rb +11 -0
  114. data/features/step_definitions/batch_action_steps.rb +2 -2
  115. data/features/step_definitions/comment_steps.rb +21 -1
  116. data/features/step_definitions/configuration_steps.rb +1 -1
  117. data/features/step_definitions/filter_steps.rb +9 -0
  118. data/features/step_definitions/format_steps.rb +1 -1
  119. data/features/step_definitions/index_scope_steps.rb +4 -0
  120. data/features/support/env.rb +5 -4
  121. data/features/support/regular_env.rb +7 -0
  122. data/features/support/reload_env.rb +7 -0
  123. data/gemfiles/rails_42.gemfile +2 -37
  124. data/gemfiles/rails_50.gemfile +5 -40
  125. data/gemfiles/rails_51.gemfile +5 -40
  126. data/lib/active_admin.rb +0 -3
  127. data/lib/active_admin/application.rb +6 -4
  128. data/lib/active_admin/asset_registration.rb +8 -0
  129. data/lib/active_admin/authorization_adapter.rb +0 -3
  130. data/lib/active_admin/base_controller.rb +1 -2
  131. data/lib/active_admin/base_controller/authorization.rb +0 -1
  132. data/lib/active_admin/base_controller/menu.rb +9 -9
  133. data/lib/active_admin/batch_actions/controller.rb +1 -1
  134. data/lib/active_admin/batch_actions/views/selection_cells.rb +6 -5
  135. data/lib/active_admin/csv_builder.rb +3 -3
  136. data/lib/active_admin/dependency.rb +1 -1
  137. data/lib/active_admin/devise.rb +2 -2
  138. data/lib/active_admin/dsl.rb +2 -2
  139. data/lib/active_admin/filters.rb +2 -0
  140. data/lib/active_admin/filters/active.rb +13 -14
  141. data/lib/active_admin/filters/active_filter.rb +87 -0
  142. data/lib/active_admin/filters/active_sidebar.rb +50 -0
  143. data/lib/active_admin/filters/forms.rb +1 -2
  144. data/lib/active_admin/filters/resource_extension.rb +2 -30
  145. data/lib/active_admin/helpers/settings.rb +0 -1
  146. data/lib/active_admin/inputs/datepicker_input.rb +5 -5
  147. data/lib/active_admin/inputs/filters/date_range_input.rb +12 -4
  148. data/lib/active_admin/inputs/filters/text_input.rb +0 -1
  149. data/lib/active_admin/menu.rb +4 -4
  150. data/lib/active_admin/menu_collection.rb +0 -2
  151. data/lib/active_admin/namespace.rb +1 -1
  152. data/lib/active_admin/orm/active_record/comments/comment.rb +1 -5
  153. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +4 -2
  154. data/lib/active_admin/page_controller.rb +1 -1
  155. data/lib/active_admin/resource/action_items.rb +4 -0
  156. data/lib/active_admin/resource/attributes.rb +1 -1
  157. data/lib/active_admin/resource/page_presenters.rb +1 -1
  158. data/lib/active_admin/resource/routes.rb +0 -1
  159. data/lib/active_admin/resource/scopes.rb +2 -1
  160. data/lib/active_admin/resource_controller.rb +1 -1
  161. data/lib/active_admin/resource_controller/data_access.rb +8 -9
  162. data/lib/active_admin/resource_dsl.rb +10 -10
  163. data/lib/active_admin/router.rb +1 -1
  164. data/lib/active_admin/scope.rb +3 -3
  165. data/lib/active_admin/version.rb +1 -1
  166. data/lib/active_admin/view_helpers.rb +1 -0
  167. data/lib/active_admin/view_helpers/display_helper.rb +1 -1
  168. data/lib/active_admin/view_helpers/form_helper.rb +1 -1
  169. data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
  170. data/lib/active_admin/views/action_items.rb +1 -1
  171. data/lib/active_admin/views/components/active_admin_form.rb +1 -1
  172. data/lib/active_admin/views/components/dropdown_menu.rb +2 -2
  173. data/lib/active_admin/views/components/index_list.rb +0 -2
  174. data/lib/active_admin/views/components/paginated_collection.rb +1 -1
  175. data/lib/active_admin/views/components/scopes.rb +2 -10
  176. data/lib/active_admin/views/components/status_tag.rb +19 -11
  177. data/lib/active_admin/views/components/tabs.rb +2 -2
  178. data/lib/active_admin/views/header.rb +0 -1
  179. data/lib/active_admin/views/index_as_blog.rb +1 -2
  180. data/lib/active_admin/views/index_as_grid.rb +2 -2
  181. data/lib/active_admin/views/index_as_table.rb +19 -1
  182. data/lib/active_admin/views/pages/base.rb +4 -4
  183. data/lib/active_admin/views/pages/show.rb +6 -1
  184. data/lib/active_admin/views/title_bar.rb +4 -4
  185. data/lib/bug_report_templates/{rails_5_master.rb → active_admin_master.rb} +35 -40
  186. data/lib/generators/active_admin/devise/devise_generator.rb +1 -1
  187. data/lib/generators/active_admin/install/templates/admin_user.rb.erb +1 -1
  188. data/spec/bug_report_templates_spec.rb +2 -3
  189. data/spec/rails_helper.rb +0 -3
  190. data/spec/spec_helper.rb +1 -12
  191. data/spec/support/active_admin_integration_spec_helper.rb +1 -1
  192. data/spec/support/rails_template.rb +5 -37
  193. data/spec/support/rails_template_with_data.rb +262 -3
  194. data/spec/support/templates/policies/active_admin/comment_policy.rb +1 -1
  195. data/spec/support/templates/policies/active_admin/page_policy.rb +1 -1
  196. data/spec/support/templates/policies/application_policy.rb +1 -2
  197. data/spec/support/templates/post_decorator.rb +0 -1
  198. data/spec/unit/abstract_view_factory_spec.rb +0 -1
  199. data/spec/unit/application_spec.rb +4 -0
  200. data/spec/unit/asset_registration_spec.rb +29 -0
  201. data/spec/unit/belongs_to_spec.rb +1 -2
  202. data/spec/unit/config_shared_examples.rb +1 -1
  203. data/spec/unit/csv_builder_spec.rb +2 -4
  204. data/spec/unit/dependency_spec.rb +7 -7
  205. data/spec/unit/dsl_spec.rb +0 -2
  206. data/spec/unit/filters/active_filter_spec.rb +135 -0
  207. data/spec/unit/filters/active_spec.rb +11 -1
  208. data/spec/unit/filters/filter_form_builder_spec.rb +9 -7
  209. data/spec/unit/form_builder_spec.rb +14 -14
  210. data/spec/unit/helpers/scope_chain_spec.rb +0 -1
  211. data/spec/unit/i18n_spec.rb +17 -0
  212. data/spec/unit/menu_item_spec.rb +1 -3
  213. data/spec/unit/namespace/register_page_spec.rb +1 -1
  214. data/spec/unit/namespace_spec.rb +0 -1
  215. data/spec/unit/page_spec.rb +0 -3
  216. data/spec/unit/resource/action_items_spec.rb +5 -1
  217. data/spec/unit/resource/attributes_spec.rb +1 -2
  218. data/spec/unit/resource/ordering_spec.rb +0 -3
  219. data/spec/unit/resource/scopes_spec.rb +1 -1
  220. data/spec/unit/resource_controller/data_access_spec.rb +2 -2
  221. data/spec/unit/resource_controller_spec.rb +1 -2
  222. data/spec/unit/resource_spec.rb +9 -2
  223. data/spec/unit/routing_spec.rb +0 -2
  224. data/spec/unit/scope_spec.rb +3 -3
  225. data/spec/unit/settings_spec.rb +0 -1
  226. data/spec/unit/view_factory_spec.rb +1 -1
  227. data/spec/unit/view_helpers/flash_helper_spec.rb +0 -1
  228. data/spec/unit/view_helpers/form_helper_spec.rb +3 -4
  229. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -1
  230. data/spec/unit/views/components/attributes_table_spec.rb +0 -1
  231. data/spec/unit/views/components/columns_spec.rb +0 -2
  232. data/spec/unit/views/components/site_title_spec.rb +0 -2
  233. data/spec/unit/views/components/status_tag_spec.rb +23 -7
  234. data/spec/unit/views/components/tabs_spec.rb +29 -1
  235. data/spec/unit/views/pages/index_spec.rb +1 -1
  236. data/tasks/docs.rake +37 -10
  237. data/tasks/lint.rake +14 -1
  238. data/tasks/local.rake +2 -2
  239. data/tasks/test.rake +8 -25
  240. data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
  241. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
  242. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
  243. data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
  244. data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
  245. data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
  246. data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
  247. data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
  248. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
  249. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
  250. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
  251. data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
  252. data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
  253. data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
  254. data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
  255. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
  256. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +300 -0
  257. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
  258. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
  259. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
  260. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
  261. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
  262. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
  263. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
  264. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
  265. data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
  266. metadata +62 -51
  267. data/.hound.yml +0 -14
  268. data/Appraisals +0 -41
  269. data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
  270. data/app/assets/javascripts/active_admin/jquery_ui.js.erb +0 -18
  271. data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
  272. data/lib/active_admin/filters/humanized.rb +0 -68
  273. data/spec/requests/javascript_spec.rb +0 -22
  274. data/spec/support/jslint.yml +0 -80
  275. data/spec/unit/filters/humanized_spec.rb +0 -64
  276. data/tasks/yard.rake +0 -9
data/.hound.yml DELETED
@@ -1,14 +0,0 @@
1
- ruby:
2
- enabled: false
3
-
4
- coffee_script:
5
- enabled: false
6
-
7
- java_script:
8
- enabled: false
9
-
10
- scss:
11
- enabled: false
12
-
13
- Metrics/LineLength:
14
- Max: 110
data/Appraisals DELETED
@@ -1,41 +0,0 @@
1
- appraise 'rails_42' do
2
- gemspec
3
-
4
- gem 'rails', '4.2.8'
5
- gem 'jquery-ui-rails', '~> 5.0'
6
- gem 'devise', '~> 3.5'
7
-
8
- gem 'draper', '~> 2.1'
9
-
10
- gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby
11
- end
12
-
13
- appraise 'rails_50' do
14
- gemspec
15
-
16
- gem 'rails', '5.0.2'
17
- gem 'jquery-ui-rails', '~> 5.0'
18
- gem 'devise', '> 4.x'
19
-
20
- gem 'draper', '> 3.x'
21
-
22
- gem 'activerecord-jdbcsqlite3-adapter',
23
- git: 'https://github.com/jruby/activerecord-jdbc-adapter',
24
- branch: 'rails-5',
25
- platforms: :jruby
26
- end
27
-
28
- appraise 'rails_51' do
29
- gemspec
30
-
31
- gem 'rails', '~> 5.1.x'
32
- gem 'jquery-ui-rails', '~> 5.0'
33
- gem 'devise', '> 4.x'
34
-
35
- gem 'draper', '> 3.x'
36
-
37
- gem 'activerecord-jdbcsqlite3-adapter',
38
- git: 'https://github.com/jruby/activerecord-jdbc-adapter',
39
- branch: 'rails-5',
40
- platforms: :jruby
41
- end
@@ -1,18 +0,0 @@
1
- <% jquery_ui_path = if Jquery::Ui::Rails::VERSION >= "5"
2
- "jquery-ui/"
3
- else
4
- "jquery.ui."
5
- end
6
- %>
7
- <% jquery_ui_widgets_path =
8
- if Jquery::Ui::Rails::VERSION >= "6"
9
- jquery_ui_path + "widgets/"
10
- else
11
- jquery_ui_path
12
- end
13
- %>
14
- <% require_asset "#{jquery_ui_widgets_path}datepicker" %>
15
- <% require_asset "#{jquery_ui_widgets_path}dialog" %>
16
- <% require_asset "#{jquery_ui_widgets_path}sortable" %>
17
- <% require_asset "#{jquery_ui_widgets_path}tabs" %>
18
- <% require_asset "#{jquery_ui_path}widget" %>
@@ -1,165 +0,0 @@
1
- // FROM The Compass Framework (compass-style.org)
2
- //
3
- // Copyright (c) 2009 Christopher M. Eppstein
4
- //
5
- // Permission is hereby granted, free of charge, to any person obtaining a copy of
6
- // this software and associated documentation files (the "Software"), to deal in
7
- // the Software without restriction, including without limitation the rights to
8
- // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
- // the Software, and to permit persons to whom the Software is furnished to do so,
10
- // subject to the following conditions:
11
- //
12
- // The above copyright notice and this permission notice shall be included in all
13
- // copies or substantial portions of the Software. No attribution is required by
14
- // products that make use of this software.
15
- //
16
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18
- // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19
- // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20
- // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
- // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
- //
23
- // Except as contained in this notice, the name(s) of the above copyright holders
24
- // shall not be used in advertising or otherwise to promote the sale, use or other
25
- // dealings in this Software without prior written authorization.
26
- //
27
- // Contributors to this project agree to grant all rights to the copyright holder
28
- // of the primary product. Attribution is maintained in the source control history
29
- // of the product.
30
- //
31
- // Based on [Eric Meyer's reset](http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/)
32
- // Global reset rules.
33
- // For more specific resets, use the reset mixins provided below
34
- //
35
- // *Please Note*: tables still need `cellspacing="0"` in the markup.
36
- @mixin global-reset {
37
- html, body, div, span, applet, object, iframe,
38
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
39
- a, abbr, acronym, address, big, cite, code,
40
- del, dfn, em, font, img, ins, kbd, q, s, samp,
41
- small, strike, strong, sub, sup, tt, var,
42
- dl, dt, dd, ol, ul, li,
43
- fieldset, form, label, legend,
44
- table, caption, tbody, tfoot, thead, tr, th, td {
45
- @include reset-box-model;
46
- @include reset-font; }
47
- body {
48
- @include reset-body; }
49
- ol, ul {
50
- @include reset-list-style; }
51
- table {
52
- @include reset-table; }
53
- caption, th, td {
54
- @include reset-table-cell; }
55
- q, blockquote {
56
- @include reset-quotation; }
57
- a img {
58
- @include reset-image-anchor-border; } }
59
-
60
- // Reset all elements within some selector scope. To reset the selector itself,
61
- // mixin the appropriate reset mixin for that element type as well. This could be
62
- // useful if you want to style a part of your page in a dramatically different way.
63
- //
64
- // *Please Note*: tables still need `cellspacing="0"` in the markup.
65
- @mixin nested-reset {
66
- div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
67
- pre, a, abbr, acronym, address, code, del, dfn, em, img,
68
- dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr {
69
- @include reset-box-model;
70
- @include reset-font; }
71
- table {
72
- @include reset-table; }
73
- caption, th, td {
74
- @include reset-table-cell; }
75
- q, blockquote {
76
- @include reset-quotation; }
77
- a img {
78
- @include reset-image-anchor-border; } }
79
-
80
- // Reset the box model measurements.
81
- @mixin reset-box-model {
82
- margin: 0;
83
- padding: 0;
84
- border: 0;
85
- outline: 0; }
86
-
87
- // Reset the font and vertical alignment.
88
- @mixin reset-font {
89
- font: {
90
- weight: inherit;
91
- style: inherit;
92
- size: 100%;
93
- family: inherit; };
94
- vertical-align: baseline; }
95
-
96
- // Resets the outline when focus.
97
- // For accessibility you need to apply some styling in its place.
98
- @mixin reset-focus {
99
- outline: 0; }
100
-
101
- // Reset a body element.
102
- @mixin reset-body {
103
- line-height: 1;
104
- color: black;
105
- background: white; }
106
-
107
- // Reset the list style of an element.
108
- @mixin reset-list-style {
109
- list-style: none; }
110
-
111
- // Reset a table
112
- @mixin reset-table {
113
- border-collapse: separate;
114
- border-spacing: 0;
115
- vertical-align: middle; }
116
-
117
- // Reset a table cell (`th`, `td`)
118
- @mixin reset-table-cell {
119
- text-align: left;
120
- font-weight: normal;
121
- vertical-align: middle; }
122
-
123
- // Reset a quotation (`q`, `blockquote`)
124
- @mixin reset-quotation {
125
- quotes: "" "";
126
- &:before, &:after {
127
- content: ""; } }
128
-
129
- // Resets the border.
130
- @mixin reset-image-anchor-border {
131
- border: none; }
132
-
133
- // Unrecognized elements are displayed inline.
134
- // This reset provides a basic reset for html5 elements
135
- // so they are rendered correctly in browsers that don't recognize them
136
- // and reset in browsers that have default styles for them.
137
- @mixin reset-html5 {
138
- article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
139
- @include reset-box-model;
140
- display: block; } }
141
-
142
- // Resets the display of inline and block elements to their default display
143
- // according to their tag type. Elements that have a default display that varies across
144
- // versions of html or browser are not handled here, but this covers the 90% use case.
145
- // Usage Example:
146
- //
147
- // // Turn off the display for both of these classes
148
- // .unregistered-only, .registered-only
149
- // display: none
150
- // // Now turn only one of them back on depending on some other context.
151
- // body.registered
152
- // +reset-display(".registered-only")
153
- // body.unregistered
154
- // +reset-display(".unregistered-only")
155
- @mixin reset-display($selector: "", $important: false) {
156
- #{append-selector(elements-of-type("inline"), $selector)} {
157
- @if $important {
158
- display: inline !important; }
159
- @else {
160
- display: inline; } }
161
- #{append-selector(elements-of-type("block"), $selector)} {
162
- @if $important {
163
- display: block !important; }
164
- @else {
165
- display: block; } } }
@@ -1,68 +0,0 @@
1
- module ActiveAdmin
2
- module Filters
3
-
4
- class Humanized
5
- include ActiveAdmin::ViewHelpers
6
-
7
- def initialize(param)
8
- @body = param[0]
9
- @value = param[1]
10
- end
11
-
12
- def value
13
- @value.is_a?(::Array) ? @value.compact.join(', ') : @value
14
- end
15
-
16
- def body
17
- predicate = ransack_predicate_translation
18
-
19
- if current_predicate.nil?
20
- predicate = @body.titleize
21
- elsif translation_missing?(predicate)
22
- predicate = active_admin_predicate_translation
23
- end
24
-
25
- "#{parse_parameter_body} #{predicate}".strip
26
- end
27
-
28
- private
29
-
30
- def parse_parameter_body
31
- return if current_predicate.nil?
32
-
33
- # Accounting for strings that might contain other predicates. Example:
34
- # 'requires_approval' contains the substring 'eq'
35
- split_string = "_#{current_predicate}"
36
-
37
- @body.split(split_string)
38
- .first
39
- .gsub('_', ' ')
40
- .strip
41
- .titleize
42
- .gsub('Id', 'ID')
43
- end
44
-
45
- def current_predicate
46
- @current_predicate ||= predicates.detect { |p| @body.end_with?("_#{p}") }
47
- end
48
-
49
- def predicates
50
- Ransack::Predicate.names_by_decreasing_length
51
- end
52
-
53
- def ransack_predicate_translation
54
- I18n.t("ransack.predicates.#{current_predicate}")
55
- end
56
-
57
- def active_admin_predicate_translation
58
- translation = I18n.t("active_admin.filters.predicates.#{current_predicate}").downcase
59
- end
60
-
61
- def translation_missing?(predicate)
62
- predicate.downcase.include?('translation missing')
63
- end
64
-
65
- end
66
-
67
- end
68
- end
@@ -1,22 +0,0 @@
1
- require 'rails_helper'
2
- require 'jslint'
3
- require 'rbconfig'
4
-
5
- # OSX has its own java executable that opens a prompt to install Java 💩
6
- # However this java_home executable returns an error code without opening the prompt ✅
7
- RbConfig::CONFIG['host_os'].include?('darwin') ? `/usr/libexec/java_home` : `which java`
8
- java_installed = $?.success?
9
-
10
- RSpec.describe 'Javascript', type: :request, if: java_installed do
11
- let(:lint) {
12
- JSLint::Lint.new \
13
- paths: ['public/javascripts/**/*.js'],
14
- exclude_paths: ['public/javascripts/vendor/**/*.js'],
15
- config_path: 'spec/support/jslint.yml'
16
- }
17
-
18
- it 'should not have any syntax errors' do
19
- lint.run
20
- end
21
- end
22
-
@@ -1,80 +0,0 @@
1
- # ------------ rake task options ------------
2
-
3
- # JS files to check by default, if no parameters are passed to rake jslint
4
- # (you may want to limit this only to your own scripts and exclude any external scripts and frameworks)
5
-
6
- # this can be overridden by adding 'paths' and 'exclude_paths' parameter to rake command:
7
- # rake jslint paths=path1,path2,... exclude_paths=library1,library2,...
8
-
9
- paths:
10
- - app/assets/javascripts/active_admin/**/*.js
11
-
12
- exclude_paths:
13
- - app/assets/javascripts/active_admin/vendor.js
14
-
15
- # ------------ jslint options ------------
16
- # see http://www.jslint.com/lint.html#options for more detailed explanations
17
-
18
- # "enforce" type options (true means potentially more warnings)
19
-
20
- adsafe: false # true if ADsafe rules should be enforced. See http://www.ADsafe.org/
21
- bitwise: true # true if bitwise operators should not be allowed
22
- newcap: true # true if Initial Caps must be used with constructor functions
23
- eqeqeq: false # true if === should be required (for ALL equality comparisons)
24
- immed: false # true if immediate function invocations must be wrapped in parens
25
- nomen: false # true if initial or trailing underscore in identifiers should be forbidden
26
- onevar: false # true if only one var statement per function should be allowed
27
- plusplus: false # true if ++ and -- should not be allowed
28
- regexp: false # true if . and [^...] should not be allowed in RegExp literals
29
- safe: false # true if the safe subset rules are enforced (used by ADsafe)
30
- strict: false # true if the ES5 "use strict"; pragma is required
31
- undef: false # true if variables must be declared before used
32
- white: false # true if strict whitespace rules apply (see also 'indent' option)
33
-
34
- # "allow" type options (false means potentially more warnings)
35
-
36
- cap: false # true if upper case HTML should be allowed
37
- css: true # true if CSS workarounds should be tolerated
38
- debug: false # true if debugger statements should be allowed (set to false before going into production)
39
- es5: false # true if ECMAScript 5 syntax should be allowed
40
- evil: false # true if eval should be allowed
41
- forin: true # true if unfiltered 'for in' statements should be allowed
42
- fragment: true # true if HTML fragments should be allowed
43
- laxbreak: false # true if statement breaks should not be checked
44
- on: false # true if HTML event handlers (e.g. onclick="...") should be allowed
45
- sub: false # true if subscript notation may be used for expressions better expressed in dot notation
46
-
47
- # other options
48
-
49
- maxlen: 300 # Maximum line length
50
- indent: 2 # Number of spaces that should be used for indentation - used only if 'white' option is set
51
- maxerr: 50 # The maximum number of warnings reported (per file)
52
- passfail: false # true if the scan should stop on first error (per file)
53
- # following are relevant only if undef = true
54
- predef: '' # Names of predefined global variables - comma-separated string or a YAML array
55
- browser: true # true if the standard browser globals should be predefined
56
- rhino: false # true if the Rhino environment globals should be predefined
57
- windows: false # true if Windows-specific globals should be predefined
58
- widget: false # true if the Yahoo Widgets globals should be predefined
59
- devel: true # true if functions like alert, confirm, console, prompt etc. are predefined
60
-
61
-
62
- # ------------ jslint_on_rails custom lint options (switch to true to disable some annoying warnings) ------------
63
-
64
- # ignores "missing semicolon" warning at the end of a function; this lets you write one-liners
65
- # like: x.map(function(i) { return i + 1 }); without having to put a second semicolon inside the function
66
- lastsemic: false
67
-
68
- # allows you to use the 'new' expression as a statement (without assignment)
69
- # so you can call e.g. new Ajax.Request(...), new Effect.Highlight(...) without assigning to a dummy variable
70
- newstat: false
71
-
72
- # ignores the "Expected an assignment or function call and instead saw an expression" warning,
73
- # if the expression contains a proper statement and makes sense; this lets you write things like:
74
- # element && element.show();
75
- # valid || other || lastChance || alert('OMG!');
76
- # selected ? show() : hide();
77
- # although these will still cause a warning:
78
- # element && link;
79
- # selected ? 5 : 10;
80
- statinexp: false
@@ -1,64 +0,0 @@
1
- require 'rails_helper'
2
-
3
- RSpec.describe ActiveAdmin::Filters::Humanized do
4
- describe '#value' do
5
- it 'should equal query string parameter if not an Array' do
6
- param = ['category_id_eq', '1']
7
- subject = ActiveAdmin::Filters::Humanized.new(param)
8
- expect(subject.value).to eq('1')
9
- end
10
-
11
- it 'should equal query string parameters separated by commas if an Array' do
12
- param = ['category_id_eq', ['1', '2']]
13
- subject = ActiveAdmin::Filters::Humanized.new(param)
14
- expect(subject.value).to eq("1, 2")
15
- end
16
-
17
- it 'should remove nil values before joining equal query string parameters separated by commas if an Array' do
18
- param = ['category_id_eq', ['1', nil, '2']]
19
- subject = ActiveAdmin::Filters::Humanized.new(param)
20
- expect(subject.value).to eq("1, 2")
21
- end
22
- end
23
-
24
- describe '#body' do
25
- context 'when Ransack predicate' do
26
- it 'parses language from Ransack' do
27
- param = ['category_id_eq', '1']
28
- subject = ActiveAdmin::Filters::Humanized.new(param)
29
- expect(subject.body).to eq('Category ID equals')
30
- end
31
-
32
- it 'handles strings with embedded predicates' do
33
- param = ['requires_approval_eq', '1']
34
- humanizer = ActiveAdmin::Filters::Humanized.new(param)
35
- expect(humanizer.value).to eq('1')
36
- expect(humanizer.body).to eq('Requires Approval equals')
37
- end
38
- end
39
-
40
- context 'when ActiveAdmin predicate' do
41
- it 'parses language from ActiveAdmin' do
42
- param = ['name_starts_with', 'test']
43
- humanizer = ActiveAdmin::Filters::Humanized.new(param)
44
- expect(humanizer.body).to eq('Name starts with')
45
- end
46
- end
47
-
48
- context 'when unknown predicate' do
49
- it 'uses raw predicate string' do
50
- param = ['name_predicate_does_not_exist', 'test']
51
- humanizer = ActiveAdmin::Filters::Humanized.new(param)
52
- expect(humanizer.body).to eq("Name Predicate Does Not Exist")
53
- end
54
- end
55
-
56
- context 'when column name similar to predicate' do
57
- it 'parses correct predicate' do
58
- param = ['time_start_gteq', 'test']
59
- humanizer = ActiveAdmin::Filters::Humanized.new(param)
60
- expect(humanizer.body).to eq('Time Start greater than or equal to')
61
- end
62
- end
63
- end
64
- end