Created
March 7, 2018 11:59
-
-
Save francois-ferrandis/1dc749262e7376e62074f908ee70356b to your computer and use it in GitHub Desktop.
Customize the active admin layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/active_admin.rb | |
# ...rest of the initializer here... | |
module AdminPageLayoutOverride | |
def build(*args) | |
# you can move the call to super at the end, if you wish | |
# to insert things at the begining of the page | |
super | |
# this will be added at the end of <body> | |
within @body do | |
render partial: '...' | |
end | |
# this will be added at the end of <head> | |
within @head do | |
text_node(javascript_include_tag('...)) | |
end | |
end | |
end | |
ActiveAdmin::Views::Pages::Base.send :prepend, AdminPageLayoutOverride |
Note that the above didn't work for me on AA 2.7, but this comment did: activeadmin/activeadmin#5201 (comment)
Note that the above didn't work for me on AA 2.7, but this comment did: activeadmin/activeadmin#5201 (comment)
That worked. Thanks @tobycox.
Thanks. I was finally able to change AA color, even though we're using the same build to deploy to multiple environments
def build_active_admin_head
within super do
text_node("<style>:root {--primary-color: #{Rails.env.production? ? '#ff8b41' : '#505050'};}</style>".html_safe)
end
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LOL - I just looked at the HTML in AA 2.7, and found the JS and CSS tags in the
<body>
. Only one<head>
though.It works correctly if you put the
super
at the end instead of the beginning:That being said, I think the recommended way to do this now is via the
# Register Stylesheets & Javascripts
section of theactive_admin.rb
initializer.If you don't have that section (I didn't), then assuming your codebase is in a repo, you can rerun the AA generator to get the updated initializer, skipping everything you can except the initializer generation, reverting everything except the initializer changes, and then using the diff to decide what to revert in the initializer. (There may be a better procedure than that, but that does work.)