-
Notifications
You must be signed in to change notification settings - Fork 272
/
Copy pathex_admin.ex
419 lines (331 loc) · 11.1 KB
/
ex_admin.ex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
defmodule ExAdmin do
@moduledoc """
ExAdmin is a an auto administration tool for the PhoenixFramework,
providing a quick way to create a CRUD interface for administering
Ecto models with little code and the ability to customize the
interface if desired.
After creating one or more Ecto models, the administration tool can
be used by creating a resource model for each model. The basic
resource file for model ... looks like this:
# web/admin/my_model.ex
defmodule MyProject.ExAdmin.MyModel do
use ExAdmin.Register
register_resource MyProject.MyModel do
end
end
This file can be created manually, or by using the mix task:
mix admin.gen.resource MyModel
ExAdmin adds a menu item for the model in the admin interface, along
with the ability to index, add, edit, show and delete instances of
the model.
Many of the pages in the admin interface can be customized for each
model using a DSL. The following can be customized:
* `index` - Customize the index page
* `show` - Customize the show page
* `form` - Customize the new and edit pages
* `menu` - Customize the menu item
* `controller` - Customize the controller
## Custom Ecto Types
### Map Type
By default, ExAdmin used Poison.encode! to encode `Map` type. To change the
decoding, add override the protocol. For Example:
defimpl ExAdmin.Render, for: Map do
def to_string(map) do
{:ok, encoded} = Poison.encode map
encoded
end
end
As well as handling the encoding to display the data, you will need to handle
the params decoding for the `:create` and `:modify` actions. You have a couple
options for handling this.
* In your changeset, you can update the params field with the decoded value
* Add a controller `before_filter` in your admin resource file.
For example:
register_resource AdminIdIssue.UserSession do
controller do
before_filter :decode, only: [:update, :create]
def decode(conn, params) do
if get_in params, [:usersession, :data] do
params = update_in params, [:usersession, :data], &(Poison.decode!(&1))
end
{conn, params}
end
end
end
## Other Types
To support other Ecto Types, implement the ExAdmin.Render protocol for the
desired type. Here is an example from the ExAdmin code for the `Ecto.Date` type:
defimpl ExAdmin.Render, for: Ecto.Date do
def to_string(dt) do
Ecto.Date.to_string dt
end
end
## Adding Custom CSS or JS to the Layout Head
A configuration item is available to add your own CSS or JS files
to the `<head>` section of ExAdmin's layout file.
Add the following to your project's `config/config.exs` file:
config :ex_admin,
head_template: {ExAdminDemo.AdminView, "admin_layout.html"}
Where:
* `ExAdminDemo.AdminView` is a view in your project
* `admin_layout.html` is a template in `web/templates/admin` directory
For example:
in `web/templates/admin/admin_layout.html.eex`
```html
<link rel='stylesheet' href='<%= static_path(@conn, "/css/admin_custom.css") %>'>
<!--
since this is rendered into the head area, make sure to defer the loading
of your scripts with `async` to not block rendering.
-->
<script async src='<%= static_path(@conn, "/js/app.js") %>'></script>
```
in `priv/static/css/admin_custom.css`
```css
.foo {
color: green !important;
font-weight: 600;
}
```
## Changing the layout footer
Changing the content of the footer can be done through ExAdmin's configuration
options.
Add the following to your project's `config/config.exs` file:
config :ex_admin,
footer: "© Project Name"
## Adding SwitchUser Select Box
At times, you may want an easy way to switch between users while developing and
manually testing an project. ExAdmin supports this feature through configuration
and a plug.
When enabled, a select box is displayed on the top right of each page. When a
new user is selected, the existing user is logged out and the new user automatically
logged in without requiring a password.
Obviously, this is not a feature you will want on a production server. So, to
configure SwitchUser for `:dev` environment:
# web/router.ex
pipeline :protected do
plug :accepts, ["html"]
# ...
if Mix.env == :dev do
plug ExAdmin.Plug.SwitchUser
end
end
# config/dev.exs
config :ex_admin,
logout_user: {Coherence.ControllerHelpers, :logout_user},
login_user: {Coherence.ControllerHelpers, :login_user}
"""
require Logger
use Xain
alias ExAdmin.Utils
import ExAdmin.Utils, only: [titleize: 1, humanize: 1, admin_resource_path: 2]
require ExAdmin.Register
Code.ensure_compiled(ExAdmin.Register)
Module.register_attribute(__MODULE__, :registered, accumulate: true, persist: true)
@default_theme ExAdmin.Theme.AdminLte2
defmacro __using__(_) do
quote do
use ExAdmin.Index
import unquote(__MODULE__)
end
end
# check for old xain.after_callback format and issue a compile time
# exception if not configured correctly.
case Application.get_env(:xain, :after_callback) do
nil ->
nil
{_, _} ->
nil
_ ->
raise ExAdmin.CompileError,
message: "Invalid xain_callback in config. Use {Phoenix.HTML, :raw}"
end
@doc false
def registered, do: Application.get_env(:ex_admin, :modules, []) |> Enum.reverse()
@doc false
def put_data(key, value) do
Agent.update(__MODULE__, &Map.put(&1, key, value))
end
@doc false
def get_data(key) do
Agent.get(__MODULE__, &Map.get(&1, key))
end
@doc false
def get_all_registered do
for reg <- registered() do
case get_registered_resource(reg) do
%{resource_model: rm} = item ->
{rm, item}
%{type: :page} = item ->
{nil, item}
end
end
end
@doc false
def get_registered_resource(name) do
apply(name, :__struct__, [])
end
@doc false
def get_registered do
for reg <- registered() do
get_registered_resource(reg)
end
end
@doc false
def get_registered(resource_model) do
get_all_registered()
|> Keyword.get(resource_model)
end
def get_registered_by_association(resource, assoc_name) do
resource_model = resource.__struct__
assoc_model =
case resource_model.__schema__(:association, assoc_name) do
%{through: [link1, link2]} ->
resource |> Ecto.build_assoc(link1) |> Ecto.build_assoc(link2) |> Map.get(:__struct__)
%{queryable: assoc_model} ->
assoc_model
nil ->
raise ArgumentError.exception(
"Association #{assoc_name} is not found.\n#{inspect(resource_model)}.__schema__(:association, #{
inspect(assoc_name)
}) returns nil"
)
_ ->
raise ArgumentError.exception(
"Association type of #{assoc_name} is not supported. Please, fill an issue."
)
end
Enum.find(get_registered(), %{}, &(Map.get(&1, :resource_model) == assoc_model))
end
@doc false
def get_controller_path(%{} = resource) do
get_controller_path(Map.get(resource, :__struct__))
end
@doc false
def get_controller_path(resource_model) when is_atom(resource_model) do
get_all_registered()
|> Keyword.get(resource_model, %{})
|> Map.get(:controller_route)
end
@doc false
def get_title_actions(%Plug.Conn{private: _private, path_info: _path_info} = conn) do
defn = conn.assigns.defn
fun = defn |> Map.get(:title_actions)
fun.(conn, defn)
end
@doc false
def get_title_actions(name) do
case get_registered(name) do
nil ->
&__MODULE__.default_page_title_actions/2
%{title_actions: actions} ->
actions
end
end
@doc false
def get_name_from_controller(controller) when is_atom(controller) do
get_all_registered()
|> Enum.find_value(fn {name, %{controller: c_name}} ->
if c_name == controller, do: name
end)
end
@doc false
def default_resource_title_actions(
%Plug.Conn{params: params} = conn,
%{resource_model: resource_model} = defn
) do
singular = ExAdmin.Utils.displayable_name_singular(conn) |> titleize
actions = defn.actions
case Utils.action_name(conn) do
:show ->
id = Map.get(params, "id")
Enum.reduce([:edit, :new, :delete], [], fn action, acc ->
if Utils.authorized_action?(conn, action, resource_model) do
[{action, action_button(conn, defn, singular, :show, action, actions, id)} | acc]
else
acc
end
end)
|> add_custom_actions(:show, actions, id)
|> Enum.reverse()
action when action in [:index, :edit] ->
if Utils.authorized_action?(conn, action, resource_model) do
[{:new, action_button(conn, defn, singular, action, :new, actions)}]
else
[]
end
|> add_custom_actions(action, actions)
|> Enum.reverse()
_ ->
[]
end
end
@doc false
def default_page_title_actions(_conn, _) do
[]
end
@doc """
Get current theme name
"""
def theme do
Application.get_env(:ex_admin, :theme, @default_theme)
end
def theme_name(conn) do
conn.assigns.theme.name
end
def action_button(conn, defn, name, _page, action, actions, id \\ nil) do
if action in actions do
if ExAdmin.Utils.authorized_action?(conn, action, defn) do
action_name = defn.action_labels[action] || humanize(action)
[action_link(conn, "#{action_name} #{name}", action, id)]
else
[]
end
else
[]
end
end
defp add_custom_actions(acc, action, actions, id \\ nil)
defp add_custom_actions(acc, _action, [], _id), do: acc
defp add_custom_actions(acc, action, [{action, button} | actions], id) do
import ExAdmin.ViewHelpers
# remove the compiler warning
endpoint()
{fun, _} = Code.eval_quoted(button, [id: id], __ENV__)
cond do
is_function(fun, 1) -> [fun.(id) | acc]
is_function(fun, 0) -> [fun.() | acc]
true -> acc
end
|> add_custom_actions(action, actions, id)
end
defp add_custom_actions(acc, action, [_ | actions], id) do
add_custom_actions(acc, action, actions, id)
end
defp action_link(conn, name, :delete, _id) do
{name, [
href: admin_resource_path(conn, :destroy),
"data-confirm": Utils.confirm_message(),
"data-method": :delete,
rel: :nofollow
]}
end
defp action_link(conn, name, action, _id) do
{name, [href: admin_resource_path(conn, action)]}
end
@doc false
def has_action?(conn, defn, action) do
if ExAdmin.Utils.authorized_action?(conn, action, defn),
do: _has_action?(defn, action),
else: false
end
defp _has_action?(defn, action) do
except = Keyword.get(defn.actions, :except, [])
only = Keyword.get(defn.actions, :only, [])
cond do
action in defn.actions -> true
action in only -> true
action in except -> false
true -> false
end
end
end