🍱 dashboards - Ruby gem to create customizable bento-style admin dashboards in your Rails app

dashboards is a Ruby gem that allows you to create beautiful admin dashboards in your Rails application with a very simple and straightforward DSL.

Creating a dashboard looks something like this:

dashboard "Admin Dashboard" do
  box "Total Users" do
    metric value: -> { User.count }
  end

  box "Posts over time" do
    chart type: :line, data: -> { Post.group_by_day(:created_at).count }
  end
end

Which automatically creates a beautiful bento-style dashboard like this:

Dashboard

dashboards has a minimal setup so you can quickly build dashboards with metrics, charts, tables, summaries, and change-over-period indicators.

It uses Chartkick for charts, and groupdate for time-based grouping.

Installation

Add this line to your application's Gemfile:

gem 'dashboards'

And then execute:

bundle install

Usage

  1. Create a file config/dashboards.rb in your Rails application, and define your dashboard using the Dashboards DSL: ```ruby dashboard "Admin Dashboard" do box "User Statistics" do metric value: -> { User.count } summary data: -> { User } chart "User Signups", type: :line, data: -> { User.group_by_day(:created_at).count } change_over_period -> { User } end

box "Post Statistics" do chart "Posts by Category", type: :pie, data: -> { Post.group(:category).count } table "Recent Posts", data: -> { Post.order(created_at: :desc).limit(5) } end end


2. Mount the Dashboards engine in your `config/routes.rb`:
```ruby
mount Dashboards::Engine, at: "/admin/dashboard"

It's a good idea to make sure you're adding some authentication to the dashboards route to avoid exposing sensitive information:

authenticate :user, ->(user) { user.admin? } do
  mount Dashboards::Engine, at: "/admin/dashboard"
end
  1. Visit /admin/dashboard in your browser to see your new dashboard!

Available Components

Metrics

metric value: -> { User.count }

Metrics display a single value, a big number inside the box.

Metrics can be either a generic number or a currency:

metric value: -> { Order.sum(:total) }, currency: "$"

You can also display a percentage:

# This will show, for example, a percentage of users that have posted at least one time.
metric value: -> { (Post.group(:user_id).count.uniq.count.to_f / User.count * 100).round(0) }, percentage: true

You can also pretty print big numbers:

# This will display 1.2B, 1.2M, or 1.2K for 1.2 billion, million, or thousand.
metric value: -> { 1234567890 }, format_big_numbers: true

Charts

chart type: :line, data: -> { User.group_by_day(:created_at).count }

Supported chart types: :line, :bar, :column, :area, :pie

Charts can be customized with colors, height, and other options:

chart type: :line, data: -> { Order.group_by_month(:created_at).sum(:total) }, 
      color: "#4CAF50", height: "300px"

You can also add a title to the chart:

chart "Order Totals", type: :line, data: -> { Order.group_by_month(:created_at).sum(:total) }, 
      color: "#4CAF50", height: "300px", title: "Monthly Order Totals"

Tables

table data: -> { { "US" => 100, "UK" => 200, "CA" => 300 } }

Tables display data in a tabular format.

Currently, only two-column tables are supported. The data input should be a hash, like this:

# This will display a table of the 5 most recent users that have confirmed their email address.

table value: -> {
  User.order(created_at: :desc).limit(5).pluck(:email, :confirmed_at).map do |email, confirmed_at|
    {
      email: email,
      confirmed_at: ActionController::Base.helpers.time_ago_in_words(confirmed_at) + " ago"
    }
  end
}

Summaries

summary data: -> { User }

Summaries show quick statistics for the last 24 hours, 7 days, and 30 days. The periods can be customized:

summary data: -> { User }, periods: [
  { name: '1h', duration: 1.hour },
  { name: '12h', duration: 12.hours },
  { name: '24h', duration: 24.hours }
]

Change Over Period

change_over_period -> { User }
change_over_period -> { Post }, period: 30.days, date_column: :published_at

This component shows the percentage change over a specified period (default is 7 days). You can customize the period and the date column used for comparison.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rameerez/dashboards. Our code of conduct is: just be nice and make your mom proud of what you do and post online.

License

The gem is available as open source under the terms of the MIT License.