Rails Admin Nestable modified for SB Technologies
This is a modified version of the original gem.
Nestable Tree option will no longer work as expected in the original Rails Admin Nestable,
but instead it allows a relation between a parent and a child class through a foreign key.
The dependency for the 'Ancestry' gem has been omitted.
Installation
To enable rails_admin_nestable_sb, add the following to your Gemfile
:
Add in your config/initializers/rails_admin.rb
initializer the configuration:
RailsAdmin.config do |config|
config.actions do
dashboard
index
new
export
history_index
bulk_delete
show
edit
delete
history_show
show_in_app
nestable
end
end
Configuration
You could choose between two different configurations for your model:
1. Nestable tree (modified):
To use this configuration, you need to define your model under the RailsAdmin.config
The nestable_tree
methods supports the following options:
position_field
: (symbol) default :position
child_model
: (Class) requiredforeign_key
: (symbol) required
RailsAdmin.config do |config|
config.actions do
...
end
config.model MyModel do
nestable_tree({
position_field: :position,
child_model: ChildModel,
foreign_key: :parent_id
})
end
end
2. Nestable list:
To use this configuration, you need a position field
The nestable_list
methods supports the following options:
position_field
: (symbol) default :position
enable_callback
: (boolean) default => false
scope
: (symbol | proc) default => nil
live_update
: (boolean | :only) default => true (:only is for live updating only)
In your config/initializers/rails_admin.rb
initializer:
RailsAdmin.config do |config|
config.actions do
...
end
config.model MyModel do
nestable_list true
end
end
Authorization with CanCan
Sample ability:
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new
if user.admin?
can :access, :rails_admin
can :dashboard
if user.role? :superadmin
can :manage, :all
end
if user.role? :editor
can :edit, :all
can :nestable, :all
end
end
end
end
Contributing
Submitting a Pull Request:
- Fork the repository.
- Create a topic branch.
- Implement your feature or bug fix.
- Add, commit, and push your changes.
- Submit a pull request.
Thanks
License
This project rocks and uses MIT-LICENSE.
Copyright 2015 Andrea Dal Ponte
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.