All Projects → platanus → Activeadmin_addons

platanus / Activeadmin_addons

Licence: mit
Extends ActiveAdmin to enable a set of great optional UX improving add-ons

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Activeadmin addons

Activeadmin froala editor
Froala WYSIWYG editor for ActiveAdmin
Stars: ✭ 30 (-94.77%)
Mutual labels:  activeadmin, rails
Activeadmin settings cached
UI interface for rails-settings-cached in active admin
Stars: ✭ 51 (-91.11%)
Mutual labels:  activeadmin, rails
Activeadmin trumbowyg
Trumbowyg Editor for ActiveAdmin
Stars: ✭ 29 (-94.95%)
Mutual labels:  activeadmin, rails
Arbre
An Object Oriented DOM Tree in Ruby
Stars: ✭ 610 (+6.27%)
Mutual labels:  activeadmin, rails
Activeadmin
The administration framework for Ruby on Rails applications.
Stars: ✭ 9,096 (+1484.67%)
Mutual labels:  activeadmin, rails
Activeadmin dynamic fields
ActiveAdmin plugin to add dynamic behaviors to fields
Stars: ✭ 73 (-87.28%)
Mutual labels:  activeadmin, rails
Activeadmin blaze theme
ActiveAdmin theme based on Blaze CSS toolkit
Stars: ✭ 35 (-93.9%)
Mutual labels:  activeadmin, rails
Arctic admin
Responsive Theme for ActiveAdmin
Stars: ✭ 201 (-64.98%)
Mutual labels:  activeadmin, rails
Formadmin
Modern and responsive theme for Active Admin used by Formaweb.
Stars: ✭ 79 (-86.24%)
Mutual labels:  activeadmin, rails
Activeadmin quill editor
Quill Rich Text Editor for ActiveAdmin
Stars: ✭ 76 (-86.76%)
Mutual labels:  activeadmin, rails
Activeadmin Themes
Awesome themes for ActiveAdmin.
Stars: ✭ 141 (-75.44%)
Mutual labels:  activeadmin, rails
Demo.activeadmin.info
A store application to use in tutorials for Active Admin
Stars: ✭ 253 (-55.92%)
Mutual labels:  activeadmin, rails
Ajax Datatables Rails
A wrapper around DataTable's ajax methods that allow synchronization with server-side pagination in a Rails app
Stars: ✭ 520 (-9.41%)
Mutual labels:  rails
Stateful enum
A very simple state machine plugin built on top of ActiveRecord::Enum
Stars: ✭ 546 (-4.88%)
Mutual labels:  rails
Terraforming Rails
Terraforming legacy Rails applications guides and tools
Stars: ✭ 517 (-9.93%)
Mutual labels:  rails
Letter opener web
A web interface for browsing Ruby on Rails sent emails
Stars: ✭ 513 (-10.63%)
Mutual labels:  rails
Prosopite
🔍 Rails N+1 queries auto-detection with zero false positives / false negatives
Stars: ✭ 555 (-3.31%)
Mutual labels:  rails
Annict
The platform for anime addicts built with Rails and Stimulus.js.
Stars: ✭ 542 (-5.57%)
Mutual labels:  rails
Graphql Ruby
Ruby implementation of GraphQL
Stars: ✭ 4,931 (+759.06%)
Mutual labels:  rails
Zero downtime migrations
Zero downtime migrations with ActiveRecord 3+ and PostgreSQL
Stars: ✭ 513 (-10.63%)
Mutual labels:  rails

ActiveAdmin Addons

Gem Version Build Status

ActiveAdmin Addons will extend your ActiveAdmin and enable a set of addons you can optionally use to improve the ActiveAdmin UI and make it awesome.

What you get:

Rows/Columns

Inputs

Filters

Themes

Installation

Add this line to your application's Gemfile:

gem 'activeadmin_addons'

And then execute:

$ bundle

After that, run the generator:

$ rails g activeadmin_addons:install

Check here to see more information about this generator.

Default changes to behaviour

Installing this gem will enable the following changes by default:

  • The default date input will be :datepicker instead of :date_select
  • Filters and selects will offer integration with enumerize
  • All select boxes will use select2

Addons

Rows/Columns

Paperclip Attachment

Displays a paperclip link with attachment related icon into index and show views.

Read more!

Paperclip Image

Displays a paperclip image into index and show views

Read more!

AASM Integration

You can show aasm values as active admin tags.

Read more!

Enumerize and Rails Enum Integration

You can show Rails' built in enums or enumerize values as active admin tags.

Read more!

Boolean Values

Modifies how boolean values are displayed.

Read more!

Toggleable Boolean Columns

Have switches to toggle values directly at the index

Read more!

Number Formatting

You can show numbers with format supported by Rails NumberHelper

Read more!

List

You can show Array or Hash values as html lists.

Read more!

Inputs

Select2 Input

With select2 the select control looks nicer, it works great with large collections.

Read more!

Tag Input

Using tags input, you can add tags using select2.

Read more!

Selected List Input

This form control allows you to handle your many to many associations.

Read more!

Search Select Input

Using search_select input, you can easily add ajax search to activeadmin.

Read more!

Nested Select Input

Using nested_select input, you can build related select inputs.

Read more!

Color Picker Input

You can pick colors using JQuery Palette Color Picker

f.input :color, as: :color_picker

Read more!

Date Time Picker Input

You can pick dates with time using the xdan's jQuery Plugin Date and Time Picker

f.input :updated_at, as: :date_time_picker

Read more!

Filters

Numeric Range Filter

To filter based on a range of values you can use numeric_range_filter like this:

filter :number, as: :numeric_range_filter

Search Select Filter

You can use the ajax select input to filter values on index view like this:

filter :category_id, as: :search_select_filter

Themes

NO Theme

Use default active_admin theme.

Material Theme

Not compatible when Active Admin has been installed in webpack mode

Show material design theme using active_material. If you want to use it, you should run the generator using the flag theme as follow:

rails g activeadmin_addons:install --theme material

Also, you can modify primary color, and all other theme colors, in the first lines of the file: app/assets/stylesheets/active_admin.scss

$am-theme-primary: YOUR-COLOR;
...
other colors
...
@import 'activeadmin_addons/material';

Take care of defining these variables before the import of @import 'activeadmin_addons/material';.

For material documentation you should go to gem documentation.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. If you changed the javascript/scss files, run yarn build.
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request

If you want to collaborate, please check the rules first.

Credits

Thank you contributors!

Platanus

activeadmin_addons is maintained by platanus.

License

ActiveAdminAddons is © 2016 Platanus, spa. It is free software and may be redistributed under the terms specified in the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].