activeadmin 2.0.0 → 2.4.0

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +97 -6
  3. data/CONTRIBUTING.md +3 -5
  4. data/README.md +8 -1
  5. data/app/assets/javascripts/active_admin/lib/batch_actions.es6 +5 -1
  6. data/app/views/kaminari/active_admin_countless/_first_page.html.erb +11 -0
  7. data/app/views/kaminari/active_admin_countless/_gap.html.erb +8 -0
  8. data/app/views/kaminari/active_admin_countless/_next_page.html.erb +11 -0
  9. data/app/views/kaminari/active_admin_countless/_page.html.erb +12 -0
  10. data/app/views/kaminari/active_admin_countless/_paginator.html.erb +24 -0
  11. data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +11 -0
  12. data/config/locales/ar.yml +3 -2
  13. data/config/locales/bg.yml +1 -0
  14. data/config/locales/bs.yml +1 -0
  15. data/config/locales/ca.yml +1 -1
  16. data/config/locales/cs.yml +1 -0
  17. data/config/locales/da.yml +1 -0
  18. data/config/locales/de-CH.yml +1 -0
  19. data/config/locales/de.yml +19 -0
  20. data/config/locales/el.yml +1 -0
  21. data/config/locales/en-CA.yml +1 -0
  22. data/config/locales/en-GB.yml +1 -0
  23. data/config/locales/en.yml +1 -0
  24. data/config/locales/eo.yml +1 -0
  25. data/config/locales/es-MX.yml +1 -0
  26. data/config/locales/es.yml +1 -0
  27. data/config/locales/fa.yml +1 -0
  28. data/config/locales/fi.yml +1 -0
  29. data/config/locales/fr.yml +2 -1
  30. data/config/locales/he.yml +1 -0
  31. data/config/locales/hr.yml +1 -0
  32. data/config/locales/hu.yml +1 -0
  33. data/config/locales/id.yml +1 -0
  34. data/config/locales/it.yml +1 -0
  35. data/config/locales/ja.yml +1 -0
  36. data/config/locales/ko.yml +1 -0
  37. data/config/locales/lt.yml +1 -0
  38. data/config/locales/lv.yml +1 -0
  39. data/config/locales/mk.yml +134 -0
  40. data/config/locales/nb.yml +1 -0
  41. data/config/locales/nl.yml +1 -0
  42. data/config/locales/pl.yml +1 -0
  43. data/config/locales/pt-BR.yml +1 -0
  44. data/config/locales/pt-PT.yml +1 -0
  45. data/config/locales/ro.yml +1 -0
  46. data/config/locales/ru.yml +1 -0
  47. data/config/locales/sk.yml +60 -0
  48. data/config/locales/sv-SE.yml +1 -0
  49. data/config/locales/tr.yml +1 -0
  50. data/config/locales/uk.yml +1 -0
  51. data/config/locales/vi.yml +1 -0
  52. data/config/locales/zh-CN.yml +1 -0
  53. data/config/locales/zh-TW.yml +1 -0
  54. data/docs/12-arbre-components.md +13 -0
  55. data/docs/13-authorization-adapter.md +2 -2
  56. data/docs/2-resource-customization.md +1 -1
  57. data/docs/3-index-pages/index-as-table.md +7 -0
  58. data/docs/Gemfile +0 -1
  59. data/docs/Gemfile.lock +4 -5
  60. data/docs/_config.yml +2 -0
  61. data/docs/_includes/top-menu.html +2 -2
  62. data/docs/index.html +108 -7
  63. data/docs/stylesheets/main.css +29 -0
  64. data/lib/active_admin.rb +1 -0
  65. data/lib/active_admin/application.rb +3 -4
  66. data/lib/active_admin/base_controller/authorization.rb +1 -0
  67. data/lib/active_admin/batch_actions/resource_extension.rb +5 -1
  68. data/lib/active_admin/controller_action.rb +2 -1
  69. data/lib/active_admin/csv_builder.rb +3 -2
  70. data/lib/active_admin/dependency.rb +0 -4
  71. data/lib/active_admin/error.rb +3 -1
  72. data/lib/active_admin/filters/active_filter.rb +2 -3
  73. data/lib/active_admin/filters/resource_extension.rb +24 -0
  74. data/lib/active_admin/generators/boilerplate.rb +12 -4
  75. data/lib/active_admin/namespace_settings.rb +13 -0
  76. data/lib/active_admin/order_clause.rb +1 -1
  77. data/lib/active_admin/page_presenter.rb +2 -1
  78. data/lib/active_admin/pundit_adapter.rb +7 -3
  79. data/lib/active_admin/resource.rb +15 -1
  80. data/lib/active_admin/resource/belongs_to.rb +6 -1
  81. data/lib/active_admin/resource/model.rb +15 -0
  82. data/lib/active_admin/resource/routes.rb +11 -3
  83. data/lib/active_admin/resource_controller.rb +2 -0
  84. data/lib/active_admin/resource_controller/decorators.rb +2 -2
  85. data/lib/active_admin/resource_controller/polymorphic_routes.rb +36 -0
  86. data/lib/active_admin/resource_dsl.rb +1 -1
  87. data/lib/active_admin/router.rb +2 -1
  88. data/lib/active_admin/scope.rb +7 -3
  89. data/lib/active_admin/sidebar_section.rb +3 -1
  90. data/lib/active_admin/version.rb +1 -1
  91. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +2 -2
  92. data/lib/active_admin/view_helpers/display_helper.rb +3 -2
  93. data/lib/active_admin/views/components/paginated_collection.rb +2 -2
  94. data/lib/active_admin/views/components/status_tag.rb +5 -1
  95. data/lib/active_admin/views/index_as_table.rb +7 -0
  96. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +18 -2
  97. data/lib/generators/active_admin/resource/templates/admin.rb.erb +40 -37
  98. data/lib/ransack_ext.rb +2 -2
  99. metadata +17 -9
  100. data/lib/active_admin/reloader.rb +0 -25
@@ -41,6 +41,7 @@
41
41
  status_tag:
42
42
  "yes": "Ja"
43
43
  "no": "Nej"
44
+ "unset": "Nej"
44
45
  main_content: "Implementera %{model}#main_content för att kunna visa något."
45
46
  logout: "Logga ut"
46
47
  powered_by: "Powered by %{active_admin} %{version}"
@@ -45,6 +45,7 @@ tr:
45
45
  status_tag:
46
46
  "yes": "Evet"
47
47
  "no": "Hayır"
48
+ "unset": "Hayır"
48
49
  main_content: "İçeriği görüntülemek için lütfen %{model}#main_content metodunu ekleyin."
49
50
  logout: "Çıkış Yap"
50
51
  powered_by: "%{active_admin} %{version} tarafından desteklenmektedir."
@@ -41,6 +41,7 @@ uk:
41
41
  status_tag:
42
42
  "yes": "Так"
43
43
  "no": "Ні"
44
+ "unset": "Ні"
44
45
  main_content: "Створіть %{model}#main_content для відображення вмісту."
45
46
  logout: "Вийти"
46
47
  powered_by: "Powered by %{active_admin} %{version}"
@@ -43,6 +43,7 @@ vi:
43
43
  status_tag:
44
44
  "yes": "Có"
45
45
  "no": "Không Có"
46
+ "unset": "Không Có"
46
47
  main_content: "Xin bổ sung %{model}#main_content để hiển thị nội dung."
47
48
  logout: "Đăng xuất"
48
49
  powered_by: "Powered by %{active_admin} %{version}"
@@ -44,6 +44,7 @@
44
44
  status_tag:
45
45
  "yes": "是"
46
46
  "no": "否"
47
+ "unset": "否"
47
48
  main_content: "请执行 %{model}#main_content 来显示内容."
48
49
  logout: "退出"
49
50
  powered_by: "Powered by %{active_admin} %{version}"
@@ -39,6 +39,7 @@
39
39
  status_tag:
40
40
  "yes": "是"
41
41
  "no": "否"
42
+ "unset": "否"
42
43
  main_content: "請實作 %{model}#main_content 以顯示內容。"
43
44
  logout: "登出"
44
45
  powered_by: "Powered by %{active_admin} %{version}"
@@ -177,6 +177,19 @@ status_tag 'active', class: 'important', id: 'status_123', label: 'on'
177
177
  # => <span class='status_tag active important' id='status_123'>on</span>
178
178
  ```
179
179
 
180
+ When providing a `true` or `false` value, the `status_tag` will display "Yes"
181
+ or "No". This can be configured through the `"en.active_admin.status_tag"`
182
+ locale.
183
+
184
+ ```ruby
185
+ status_tag true
186
+ # => <span class='status_tag yes'>Yes</span>
187
+ ```
188
+
189
+ In the case that a boolean field is `nil`, it will display "No" as a default.
190
+ But using the `"en.active_admin.status_tag.unset"` locale key, it can be
191
+ configured to display something else.
192
+
180
193
  ## Tabs
181
194
 
182
195
  The Tabs component is helpful for saving page real estate. The first tab will be
@@ -244,7 +244,7 @@ To view more details about the API's, visit project pages of
244
244
  ## Using the Pundit Adapter
245
245
 
246
246
  Active Admin also provides an adapter out of the box for
247
- [Pundit](https://github.com/elabs/pundit).
247
+ [Pundit](https://github.com/varvet/pundit).
248
248
 
249
249
  To use the Pundit adapter, update the configuration in the Active Admin
250
250
  initializer:
@@ -255,7 +255,7 @@ config.authorization_adapter = ActiveAdmin::PunditAdapter
255
255
 
256
256
  Once that's done, Active Admin will pick up your Pundit policies, and use
257
257
  them for authorization. For more information about setting up Pundit, see
258
- [their documention](https://github.com/elabs/pundit#installation).
258
+ [their documentation](https://github.com/varvet/pundit#installation).
259
259
 
260
260
  Pundit also has [verify_authorized and/or verify_policy_scoped
261
261
  methods](https://github.com/varvet/pundit#ensuring-policies-and-scopes-are-used)
@@ -355,7 +355,7 @@ end
355
355
  ```
356
356
 
357
357
  If you need to completely replace the record retrieving code (e.g., you have a
358
- custom `to_param` implementation in your models), override the `resource` method
358
+ custom `to_param` implementation in your models), override the `find_resource` method
359
359
  on the controller:
360
360
 
361
361
  ```ruby
@@ -193,6 +193,13 @@ controller do
193
193
  end
194
194
  ```
195
195
 
196
+ You can also define associated objects to include outside of the
197
+ `scoped_collection` method:
198
+
199
+ ```ruby
200
+ includes :publisher
201
+ ```
202
+
196
203
  Then it's simple to sort by any Publisher attribute from within the index table:
197
204
 
198
205
  ```ruby
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'github-pages'
4
- gem 'jekyll-redirect-from'
@@ -198,15 +198,15 @@ GEM
198
198
  rb-inotify (~> 0.9, >= 0.9.7)
199
199
  ruby_dep (~> 1.2)
200
200
  mercenary (0.3.6)
201
- mini_portile2 (2.3.0)
201
+ mini_portile2 (2.4.0)
202
202
  minima (2.5.0)
203
203
  jekyll (~> 3.5)
204
204
  jekyll-feed (~> 0.9)
205
205
  jekyll-seo-tag (~> 2.1)
206
206
  minitest (5.11.3)
207
207
  multipart-post (2.0.0)
208
- nokogiri (1.8.5)
209
- mini_portile2 (~> 2.3.0)
208
+ nokogiri (1.10.4)
209
+ mini_portile2 (~> 2.4.0)
210
210
  octokit (4.12.0)
211
211
  sawyer (~> 0.8.0, >= 0.5.3)
212
212
  pathutil (0.16.1)
@@ -219,7 +219,7 @@ GEM
219
219
  ruby-enum (0.7.2)
220
220
  i18n
221
221
  ruby_dep (1.5.0)
222
- rubyzip (1.2.2)
222
+ rubyzip (2.0.0)
223
223
  safe_yaml (1.0.4)
224
224
  sass (3.6.0)
225
225
  sass-listen (~> 4.0.0)
@@ -243,7 +243,6 @@ PLATFORMS
243
243
 
244
244
  DEPENDENCIES
245
245
  github-pages
246
- jekyll-redirect-from
247
246
 
248
247
  BUNDLED WITH
249
248
  1.16.5
@@ -1,2 +1,4 @@
1
1
  plugins:
2
+ - jekyll-default-layout
2
3
  - jekyll-redirect-from
4
+ - jekyll-relative-links
@@ -8,9 +8,9 @@
8
8
  </div>
9
9
 
10
10
  <div id="tidelift">
11
- <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=readme" target="_blank">
11
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=homepage" target="_blank">
12
12
  <span class="cta">
13
- Get license assurances and timely security notifications
13
+ Active Admin for enterprise available via Tidelift
14
14
  </span>
15
15
  </a>
16
16
  </div>
@@ -10,81 +10,101 @@
10
10
  <p class="intro">
11
11
  The <strong>administration framework</strong> for business critical <strong>Ruby on Rails</strong> applications.
12
12
  </p>
13
+
13
14
  <p>
14
15
  Active Admin is a Ruby on Rails plugin for generating administration style interfaces. It abstracts common business application patterns to make it simple for developers to implement beautiful and elegant interfaces with very little effort.
15
16
  </p>
17
+
16
18
  <h2>
17
19
  A beautiful interface designed for real people.
18
20
  </h2>
21
+
19
22
  <div id="features">
20
23
  <div id="features-left">
21
24
  <h3 class="first">
22
25
  Global Navigation
23
26
  </h3>
27
+
24
28
  <p>
25
29
  Customizable global navigation allows you to create usable admin interfaces for your business.
26
30
  </p>
31
+
27
32
  <h3>
28
33
  Scopes
29
34
  </h3>
35
+
30
36
  <p>
31
37
  Use scopes to create sections of mutually exclusive resources for quick navigation and reporting.
32
38
  </p>
39
+
33
40
  <h3>
34
41
  Index Styles
35
42
  </h3>
43
+
36
44
  <p>
37
45
  Index screens are available in many styles. The default, shown here, is a table view, but Active Admin also supports Grids, Blocks and a Blog view.
38
46
  </p>
47
+
39
48
  <h3>
40
49
  <span class="caps">API</span> &amp; Downloads
41
50
  </h3>
51
+
42
52
  <p>
43
53
  Each resource that is registered wtih Active Admin becomes available as <span class="caps">JSON</span>, <span class="caps">XML</span> and <span class="caps">CSV</span> download. Customize the output to meet your requirements.
44
54
  </p>
45
55
  </div>
56
+
46
57
  <div id="features-right">
47
58
  <h3 class="first">
48
59
  User Authentication
49
60
  </h3>
61
+
50
62
  <p>
51
63
  Use the bundled Devise configuration or implement your own authorization using the provided hooks.
52
64
  </p>
65
+
53
66
  <h3>
54
67
  Action Items
55
68
  </h3>
69
+
56
70
  <p>
57
71
  Add buttons, links or other content in the “Action Items” section on each screen.
58
72
  </p>
73
+
59
74
  <h3>
60
75
  Filters
61
76
  </h3>
77
+
62
78
  <p>
63
79
  Allow users to filter resources by searching strings, text fields, dates, and numeric values.
64
80
  </p>
81
+
65
82
  <h3>
66
83
  Sidebar Sections
67
84
  </h3>
85
+
68
86
  <p>
69
87
  Customize the sidebar sections with a simple <span class="caps">DSL</span> built in to Active Admin.
70
88
  </p>
71
89
  </div>
72
90
  </div>
91
+
73
92
  <p>
74
93
  Active Admin’s interface was designed from the ground up for non-technical users. It makes it easy for developers to build highly usable interfaces that customers will actually enjoy using.
75
94
  </p>
95
+
76
96
  <h2>
77
97
  An elegant <span class="caps">DSL</span> built for developer productivity.
78
98
  </h2>
99
+
79
100
  <p>
80
101
  Get started with one line of code or customize the entire interface with the provided <span class="caps">DSL</span>.
81
102
  </p>
103
+
82
104
  <div id="dsl">
83
105
  <div class="highlight">
84
- <pre>
85
- <code class="ruby"><span class="c1"># app/admin/products.rb</span>
106
+ <pre><code class="ruby"><span class="c1"># app/admin/products.rb</span>
86
107
  <span class="no">ActiveAdmin</span><span class="o">.</span><span class="n">register</span> <span class="no">Product</span> <span class="k">do</span>
87
-
88
108
  <span class="c1"># Create sections on the index screen</span>
89
109
  <span class="n">scope</span> <span class="ss">:all</span><span class="p">,</span> <span class="ss">default:</span> <span class="kp">true</span>
90
110
  <span class="n">scope</span> <span class="ss">:available</span>
@@ -104,12 +124,93 @@
104
124
  <span class="k">end</span>
105
125
  <span class="n">actions</span>
106
126
  <span class="k">end</span>
107
-
108
- <span class="k">end</span>
109
- </code>
110
- </pre>
127
+ <span class="k">end</span></code></pre>
111
128
  </div>
112
129
  </div>
130
+
131
+ <h2>
132
+ Active Admin for enterprise
133
+ </h2>
134
+
135
+ <p>
136
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=homepage">
137
+ Available as part of the Tidelift Subscription
138
+ </a>
139
+ </p>
140
+
141
+ <p>
142
+ Active Admin and the maintainers of thousands of other packages are
143
+ working with Tidelift to deliver one enterprise subscription that
144
+ covers all of the open source you use.
145
+ </p>
146
+
147
+ <p>
148
+ If you want the flexibility of open source and the confidence of
149
+ commercial-grade software, this is for you.
150
+ </p>
151
+
152
+ <div class="tidelift-buttons">
153
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
154
+ <span>LEARN MORE</span>
155
+ </a>
156
+
157
+ <a href="https://tidelift.com/subscription/request-a-demo?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
158
+ <span>REQUEST A DEMO</span>
159
+ </a>
160
+ </div>
161
+
162
+ <h3>
163
+ The Tidelift Subscription manages your dependencies for you.
164
+ </h3>
165
+
166
+ <ul>
167
+ <li>
168
+ Get the tools you need to continuously catalog and understand the open source software that your application depends on.
169
+ </li>
170
+
171
+ <li>
172
+ Your subscription helps pay the open source maintainers of the exact
173
+ packages you use to ensure they meet the standards you require.
174
+ </li>
175
+
176
+ <li>
177
+ Address issues proactively, with tools that scan for new security,
178
+ licensing, and maintenance issues, and alert our participating open
179
+ source maintainers so they can resolve them on your behalf.
180
+ </li>
181
+
182
+ <li>
183
+ Measure and improve your open source dependencies' health—which
184
+ improves your app’s health—and get a short list of high-impact steps
185
+ your team can take to improve them even more.
186
+ </li>
187
+
188
+ <li>
189
+ Get commercial assurances that don't come for free with open source
190
+ packages, like intellectual property indemnification and support
191
+ under a service level agreement. You expect these guarantees from
192
+ proprietary software, and you can have them when using open source
193
+ as well.
194
+ </li>
195
+ </ul>
196
+
197
+ <p>
198
+ The end result? All of the capabilities you expect from
199
+ commercial-grade software, for the full breadth of open source you
200
+ use. That means less time grappling with esoteric open source trivia,
201
+ and more time building your own applications—and your business.
202
+ </p>
203
+
204
+ <div class="tidelift-buttons">
205
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
206
+ <span>LEARN MORE</span>
207
+ </a>
208
+
209
+ <a href="https://tidelift.com/subscription/request-a-demo?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
210
+ <span>REQUEST A DEMO</span>
211
+ </a>
212
+ </div>
213
+
113
214
  <h2 class="getting-started-heading">
114
215
  3 Ways to Get Started:
115
216
  </h2>
@@ -615,6 +615,35 @@ body #tidelift a .cta {
615
615
  padding-left: 30px;
616
616
  }
617
617
 
618
+ body .tidelift-buttons a {
619
+ display: table;
620
+ width: 200px;
621
+ border: 2px solid #407985;
622
+ border-radius: 4px;
623
+ text-decoration: none;
624
+ font-family: 'Yanone Kaffeesatz', 'Helvetica Neue', Arial, Helvetica, sans-serif;
625
+ font-size: 18px;
626
+ letter-spacing: 1px;
627
+ margin: 0 10px;
628
+ }
629
+
630
+ body .tidelift-buttons a:first-child {
631
+ float: left;
632
+ color: #407985;
633
+ background: #FFF;
634
+ }
635
+
636
+ body .tidelift-buttons a:last-child {
637
+ color: #FFF;
638
+ background: #407985;
639
+ }
640
+
641
+ body .tidelift-buttons a span {
642
+ display: table-cell;
643
+ vertical-align: middle;
644
+ text-align: center;
645
+ }
646
+
618
647
  body .clear {
619
648
  clear: both;
620
649
  }
@@ -8,6 +8,7 @@ require 'formtastic'
8
8
  require 'formtastic_i18n'
9
9
  require 'inherited_resources'
10
10
  require 'jquery-rails'
11
+ require 'sassc-rails'
11
12
  require 'arbre'
12
13
  require 'sprockets/es6'
13
14
 
@@ -1,5 +1,4 @@
1
1
  require 'active_admin/router'
2
- require 'active_admin/reloader'
3
2
  require 'active_admin/application_settings'
4
3
  require 'active_admin/namespace_settings'
5
4
 
@@ -194,11 +193,11 @@ module ActiveAdmin
194
193
  # Rails is about to unload all the app files (e.g. models), so we
195
194
  # should first unload the classes generated by Active Admin, otherwise
196
195
  # they will contain references to the stale (unloaded) classes.
197
- Reloader.to_prepare(prepend: true, &unload_active_admin)
196
+ ActiveSupport::Reloader.to_prepare(prepend: true, &unload_active_admin)
198
197
  else
199
198
  # If the user has configured the app to always reload app files after
200
199
  # each request, so we should unload the generated classes too.
201
- Reloader.to_complete(&unload_active_admin)
200
+ ActiveSupport::Reloader.to_complete(&unload_active_admin)
202
201
  end
203
202
 
204
203
  admin_dirs = {}
@@ -213,7 +212,7 @@ module ActiveAdmin
213
212
 
214
213
  app.reloaders << routes_reloader
215
214
 
216
- Reloader.to_prepare do
215
+ ActiveSupport::Reloader.to_prepare do
217
216
  # Rails might have reloaded the routes for other reasons (e.g.
218
217
  # routes.rb has changed), in which case Active Admin would have been
219
218
  # loaded via the `ActiveAdmin.routes` call in `routes.rb`.