• Stars
    star
    404
  • Rank 102,967 (Top 3 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 12 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Manages and displays breadcrumb trails in Rails app - lean & mean.
Loaf gem logo

Loaf

Gem Version Actions CI Maintainability Coverage Status Inline docs

Loaf manages and displays breadcrumb trails in your Rails application.

Features

  • Use controllers and/or views to specify breadcrumb trails
  • Specify urls using Rails conventions
  • No markup assumptions for breadcrumbs trails rendering
  • Use locales file for breadcrumb names
  • Tested with Rails >= 3.2 and Ruby >= 2.0.0

Installation

Add this line to your application's Gemfile:

gem "loaf"

And then execute:

$ bundle

Or install it yourself as:

gem install loaf

Then run the generator:

rails generate loaf:install

Contents

1. Usage

Loaf allows you to add breadcrumbs in controllers and views.

In order to add breadcrumbs in controller use breadcrumb method (see 2.1).

class Blog::CategoriesController < ApplicationController

  breadcrumb "Article Categories", :blog_categories_path, only: [:show]

  def show
    breadcrumb @category.title, blog_category_path(@category)
  end
end

Then in your view render the breadcrumbs trail using breadcrumb_trail

2. API

2.1 breadcrumb

Creation of breadcrumb in Rails is achieved by the breadcrumb helper.

The breadcrumb method takes at minimum two arguments: the first is a name for the crumb that will be displayed and the second is a url that the name points to. The url parameter uses the familiar Rails conventions.

When using path variable blog_categories_path:

breadcrumb "Categories", blog_categories_path

When using an instance @category:

breadcrumb @category.title, blog_category_path(@category)

You can also use set of objects:

breadcrumb @category.title, [:blog, @category]

You can specify segments of the url:

breadcrumb @category.title, {controller: "categories", action: "show", id: @category.id}

2.1.1 controller

Breadcrumbs are inherited, so if you set a breadcrumb in ApplicationController, it will be inserted as a first element inside every breadcrumb trail. It is customary to set root breadcrumb like so:

class ApplicationController < ActionController::Base
  breadcrumb "Home", :root_path
end

Outside of controller actions the breadcrumb helper behaviour is similar to filters/actions and as such you can limit breadcrumb scope with familiar options :only, :except. Any breadcrumb specified inside actions creates another level in breadcrumbs trail.

class ArticlesController < ApplicationController
  breadcrumb "All Articles", :articles_path, only: [:new, :create]
end

Each time you call the breadcrumb helper, a new element is added to a breadcrumb trial stack:

class ArticlesController < ApplicationController
  breadcrumb "Home", :root_path
  breadcrumb "All Articles", :articles_path

  def show
    breadcrumb "Article One", article_path(:one)
    breadcrumb "Article Two", article_path(:two)
  end
end

Loaf allows you to call controller instance methods inside the breadcrumb helper outside of any action. This is useful if your breadcrumb has parameterized behaviour. For example, to dynamically evaluate parameters for breadcrumb title do:

class CommentsController < ApplicationController
  breadcrumb -> { find_article(params[:post_id]).title }, :articles_path
end

Also, to dynamically evaluate parameters inside the url argument do:

class CommentsController < ApplicationController
  breadcrumb "All Comments", -> { post_comments_path(params[:post_id]) }
end

You may wish to define breadcrumbs over a collection. This is easy within views, and controller actions (just loop your collection), but if you want to do this in the controller class you can use the before_action approach:

before_action do
  ancestors.each do |ancestor|
    breadcrumb ancestor.name, [:admin, ancestor]
  end
end

Assume ancestors method is defined inside the controller.

2.1.2 view

Loaf adds breadcrumb helper also to the views. Together with controller breadcrumbs, the view breadcrumbs are appended as the last in breadcrumb trail. For instance, to specify view breadcrumb do:

<% breadcrumb @category.title, blog_category_path(@category) %>

2.1.3 :match

Loaf allows you to define matching conditions in order to make a breadcrumb current with the :match option.

The :match key accepts the following values:

  • :inclusive - the default value, which matches nested paths
  • :exact - matches only the exact same path
  • :exclusive - matches only direct path and its query parameters if present
  • /regex/ - matches based on regular expression
  • {foo: bar} - match based on query parameters

For example, to force a breadcrumb to be the current regardless do:

breadcrumb "New Post", new_post_path, match: :exact

To make a breadcrumb current based on the query parameters do:

breadcrumb "Posts", posts_path(order: :desc), match: {order: :desc}

2.2 breadcrumb_trail

In order to display breadcrumbs use the breadcrumb_trail view helper. It accepts optional argument of configuration options and can be used in two ways.

One way, given a block it will yield all the breadcrumbs in order of definition:

breadcrumb_trail do |crumb|
  ...
end

The yielded parameter is an instance of Loaf::Crumb object with the following methods:

crumb.name     # => the name as string
crumb.path     # => the path as string
crumb.url      # => alias for path
crumb.current? # => true or false

For example, you can add the following semantic markup to show breadcrumbs using the breadcrumb_trail helper like so:

<nav aria-label="breadcrumb">
  <ol class="breadcrumbs">
    <% breadcrumb_trail do |crumb| %>
      <li class="<%= crumb.current? ? "current" : "" %>">
        <%= link_to crumb.name, crumb.url, (crumb.current? ? {"aria-current" => "page"} : {}) %>
        <% unless crumb.current? %><span>::</span><% end %>
      </li>
    <% end %>
  </ol>
</nav>

For Bootstrap 4:

<% #erb %>
<nav aria-label="breadcrumb">
  <ol class="breadcrumb">
    <% breadcrumb_trail do |crumb| %>
      <li class="breadcrumb-item <%= crumb.current? ? "active" : "" %>">
        <%= link_to_unless crumb.current?, crumb.name, crumb.url, (crumb.current? ? {"aria-current" => "page"} : {}) %>
      </li>
    <% end %>
  </ol>
</nav>

And, if you are using HAML do:

  - # haml
  %ol.breadcrumb
    - breadcrumb_trail do |crumb|
      %li.breadcrumb-item{class: crumb.current? ? "active" : "" }
        = link_to_unless crumb.current?, crumb.name, crumb.url, (crumb.current? ? {"aria-current" => "page"} : {})

Usually best practice is to put such snippet inside its own _breadcrumbs.html.erb partial.

The second way is to use the breadcrumb_trail without passing a block. In this case, the helper will return an enumerator that you can use to, for example, access an array of names pushed into the breadcrumb trail in order of addition. This can be handy for generating page titles from breadcrumb data.

For example, you can define a breadcrumbs_to_title method in ApplicationHelper like so:

module ApplicationHelper
  def breadcrumbs_to_title
    breadcrumb_trail.map(&:name).join(">")
  end
end

Use whichever of the two ways is more convenient given your application structure and needs.

3. Configuration

There is a small set of custom opinionated defaults. The following options are valid parameters:

:match # set match type, default :inclusive (see [:match](#213-match) for more details)

You can override them in your views by passing them to the view breadcrumb helper

<% breadcrumb_trail(match: :exclusive) do |name, url, styles| %>
  ..
<% end %>

or by configuring an option in config/initializers/loaf.rb:

Loaf.configure do |config|
  config.match = :exclusive
end

4. Translation

You can use locales files for breadcrumbs' titles. Loaf assumes that all breadcrumb names are scoped inside breadcrumbs namespace inside loaf scope. However, this can be easily changed by passing scope: 'new_scope_name' configuration option.

en:
  loaf:
    breadcrumbs:
      name: 'my-breadcrumb-name'

Therefore, in your controller/view you would do:

class Blog::CategoriesController < ApplicationController
  breadcrumb 'blog.categories', :blog_categories_path
end

And corresponding entry in locale would be:

en:
  loaf:
    breadcrumbs:
      blog:
        categories: 'Article Categories'

Contributing

Questions or problems? Please post them on the issue tracker. You can contribute changes by forking the project and submitting a pull request. You can ensure the tests are passing by running bundle and rake.

License

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

Code of Conduct

Everyone interacting in the Loaf project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Copyright

Copyright (c) 2011 Piotr Murach. See LICENSE.txt for further details.

More Repositories

1

tty

Toolkit for developing sleek command line apps.
Ruby
2,472
star
2

tty-prompt

A beautiful and powerful interactive command line prompt
Ruby
1,418
star
3

github

Ruby interface to GitHub API
Ruby
1,132
star
4

finite_machine

A minimal finite state machine with a straightforward syntax.
Ruby
802
star
5

pastel

Terminal output styling with intuitive and clean API.
Ruby
628
star
6

rspec-benchmark

Performance testing matchers for RSpec
Ruby
584
star
7

tty-spinner

A terminal spinner for tasks that have non-deterministic time frame.
Ruby
421
star
8

tty-progressbar

Display a single or multiple progress bars in the terminal.
Ruby
415
star
9

tty-command

Execute shell commands with pretty output logging and capture stdout, stderr and exit status.
Ruby
397
star
10

tty-markdown

Convert a markdown document or text into a terminal friendly output.
Ruby
303
star
11

tty-logger

A readable, structured and beautiful logging for the terminal
Ruby
291
star
12

github_cli

GitHub on your command line. Use your terminal, not the browser.
Ruby
264
star
13

tty-table

A flexible and intuitive table generator
Ruby
183
star
14

tty-box

Draw various frames and boxes in your terminal window
Ruby
177
star
15

awesome-ruby-cli-apps

A curated list of awesome command-line applications in Ruby.
Ruby
159
star
16

rack-policy

Rack middleware for the EU ePrivacy Directive compliance in Ruby Web Apps
Ruby
147
star
17

tty-pie

Draw pie charts in your terminal window
Ruby
138
star
18

necromancer

Conversion from one object type to another with a bit of black magic.
Ruby
135
star
19

strings

A set of useful functions for transforming strings.
Ruby
127
star
20

coinpare

Compare cryptocurrency trading data across multiple exchanges and blockchains in the comfort of your terminal
Ruby
109
star
21

tty-exit

Terminal exit codes.
Ruby
100
star
22

strings-case

Convert strings between different cases.
Ruby
95
star
23

tty-reader

A set of methods for processing keyboard input in character, line and multiline modes.
Ruby
85
star
24

tty-option

A declarative command-line parser
Ruby
84
star
25

merkle_tree

A merkle tree is a data structure used for efficiently summarizing sets of data, often one-time signatures.
Ruby
83
star
26

tty-screen

Terminal screen detection - cross platform, major ruby interpreters
Ruby
83
star
27

verse

[DEPRECATED] Text transformations
Ruby
71
star
28

tty-cursor

Terminal cursor movement and manipulation of cursor properties such as visibility
Ruby
68
star
29

supervision

Write distributed systems that are resilient and self-heal.
Ruby
66
star
30

tty-file

File manipulation utility methods
Ruby
65
star
31

tty-config

A highly customisable application configuration interface for building terminal tools.
Ruby
61
star
32

benchmark-trend

Measure performance trends of Ruby code
Ruby
59
star
33

tty-font

Terminal fonts
Ruby
58
star
34

lex

Lex is an implementation of lex tool in Ruby.
Ruby
56
star
35

tty-tree

Print directory or structured data in a tree like format
Ruby
56
star
36

strings-truncation

Truncate strings with fullwidth characters and ANSI codes.
Ruby
49
star
37

tty-pager

Terminal output paging - cross-platform, major ruby interpreters
Ruby
39
star
38

tty-color

Terminal color capabilities detection
Ruby
35
star
39

slideck

Present Markdown-powered slide decks in the terminal.
Ruby
34
star
40

strings-inflection

Convert between singular and plural forms of English nouns
Ruby
31
star
41

tty-link

Hyperlinks in your terminal
Ruby
31
star
42

tty-platform

Operating system detection
Ruby
29
star
43

tty-sparkline

Sparkline charts for terminal applications.
Ruby
29
star
44

tty-editor

Opens a file or text in the user's preferred editor
Ruby
27
star
45

communist

Library for mocking CLI calls to external APIs
Ruby
25
star
46

splay_tree

A self-balancing binary tree optimised for fast access to frequently used nodes.
Ruby
24
star
47

equatable

Allows ruby objects to implement equality comparison and inspection methods.
Ruby
24
star
48

minehunter

Terminal mine hunting game.
Ruby
23
star
49

rotation.js

Responsive and mobile enabled jQuery plugin to help create rotating content.
JavaScript
22
star
50

strings-numeral

Express numbers as string numerals
Ruby
20
star
51

strings-ansi

Handle ANSI escape codes in strings
Ruby
19
star
52

benchmark-malloc

Trace memory allocations and collect stats
Ruby
19
star
53

tty-which

Cross-platform implementation of Unix `which` command
Ruby
17
star
54

tty-runner

A command routing tree for terminal applications
Ruby
12
star
55

benchmark-perf

Benchmark execution time and iterations per second
Ruby
12
star
56

impact

Ruby backend for Impact.js framework
Ruby
8
star
57

queen

English language linter to hold your files in high esteem.
Ruby
8
star
58

pastel-cli

CLI tool for intuitive terminal output styling
Ruby
7
star
59

dotfiles

Configuration files for Unix tools
Vim Script
7
star
60

tty-markdown-cli

CLI tool for displaying nicely formatted Markdown documents in the terminal
Ruby
7
star
61

static_deploy

Automate deployment of static websites
Ruby
6
star
62

tenpin

Terminal tenpin bowling game
Ruby
4
star
63

tytus

Helps you manage page titles in your Rails app.
Ruby
3
star
64

tty.github.io

TTY toolkit website.
SCSS
2
star
65

peter-murach.github.com

Personal webpage
JavaScript
2
star
66

wc.rb

A Ruby clone of Unix wc utility.
Ruby
2
star
67

exportable

Rails plugin to ease exporting tasks.
Ruby
1
star
68

capistrano-git-stages

Multistage capistrano git tags
Ruby
1
star
69

tabster

Ruby
1
star
70

leek

Cucumber steps and RSpec expectations for command line apps
Ruby
1
star
71

unicorn.github.io

Website for the github_api and github_cli ruby gems.
CSS
1
star
72

tty-color-cli

CLI tool for terminal color capabilities detection
Ruby
1
star
73

finite_machine.github.io

Website for finite_machine Ruby gem
SCSS
1
star
74

strings-wrapping

Wrap strings with fullwidth characters and ANSI codes
Ruby
1
star