GithubHelp home page GithubHelp logo

play-breadcrumb's Introduction

#Play Breadcrumb Plugin

Plugin to provide commom breadcrumb model and template tag

##Setup

Add the jar to the projects dependencies:

    "uk.gov.hmrc" %% "breadcrumb" % "0.0.0"

Add plugin to play.plugins:

    {priority}:uk.gov.hmrc.play.breadcrumb.BreadcrumbPlugin

##Code Example

The model consists of:

+------------+           +----------------+
| Breadcrumb |<>---------| BreadcrumbItem |
+------------+           +----------------+
| +items     |           | +text          |
+------------+           | +url           |
                         +----------------+

You must first implement BreadcrumbFactory's buildBreadcrumb method. A naive example which assumes a 1:1 mapping between request path and breadcrumb items could be:

    trait MyBreadcrumbFactory extends BreadcrumbFactory {

      implicit override def buildBreadcrumb(implicit request: Request[_]): Breadcrumb = {
        val links = Map(
          "app"     -> BreadcrumbItem("Home",    routes.ApplicationController.index().url),
          "account" -> BreadcrumbItem("Account", routes.ApplicationController.account().url)
        )
        try {
          val items = request.path.split("/").filter(!_.isEmpty).map(key => links(key)).toList
          Breadcrumb(items)
        } catch {
          case e: NoSuchElementException => Breadcrumb(Nil)
        }
      }

    }

Of course your implementation may be as complex as you like.

The next step is to have your controller extend your BreadcrumbFactory, and make sure your actions use an implicit Request:

    class MyController extends MyBreadcrumbFactory {

      def index = Action { implicit request =>
        Ok(views.html.index())
      }
    }

Then pass an implicit breadcrumb to your template(s) and render the breadcrumbTag where you want your breadcrumb to appear. The controller will

    @()(implicit breadcrumb: uk.gov.hmrc.play.breadcrumb.model.Breadcrumb)

    @headerContent

    @breadcrumbTag(breadcrumb)

    Hello, this is the index page!

    @footerContent

play-breadcrumb's People

Contributors

nicf82 avatar charleskubicek avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.