Template based breadcrumb management for Ember applications.
- Ember.js v4.8 or above
- Embroider or ember-auto-import v2
npm install -D @bagaar/ember-breadcrumbs
pnpm add -D @bagaar/ember-breadcrumbs
yarn add -D @bagaar/ember-breadcrumbs
NOTE: It's also possible to render multiple instances of the
<BreadcrumbsContainer />
component.
NOTE: The
<BreadcrumbsItem />
component is responsible for rendering the provided<LinkTo />
component into all instances of the<BreadcrumbsContainer />
component using Ember's{{in-element}}
helper.
Leaving behind breadcrumbs like this might seem very verbose, but it's actually pretty flexible and has some advantages:
- Because you leave behind breadcrumbs inside templates, the addon doesn't have to take async model hooks into account
- Because you use Ember's
<LinkTo />
component to define breadcrumb links, you have complete control over:- how you define them (inline vs. block)
- how they should work (route, dynamic segments, query parameters, ...)
- how they should look like (text, icons, additional CSS class names, ...)
The rendered output will be:
<ul class="breadcrumbs">
<li class="breadcrumbs__item">
<a class="breadcrumbs__link" href="/foo">Foo</a>
</li>
<li class="breadcrumbs__item">
<a class="breadcrumbs__link" href="/foo/bar">Bar</a>
</li>
</ul>
The addon doesn't ship with default styling, this should be done inside the consuming project.
Name | Description | Type |
---|---|---|
itemClass | The class that will be added to all <BreadcrumbsItem /> components |
String |
linkClass | The class that will be yielded to the <BreadcrumbsItem /> 's block content |
String |
This will make all @bagaar/ember-breadcrumbs
components available inside the engine.
{
"dependencies": {
"@bagaar/ember-breadcrumbs": "*"
}
}
This will make sure that the same instance of the breadcrumbs
service is used inside the engine and inside the host application.
// app/app.js
export default class App extends Application {
engines = {
'engine-name': {
dependencies: {
services: ['breadcrumbs'],
},
},
};
}
// lib/engine-name/addon/engine.js
export default class EngineName extends Engine {
dependencies = {
services: ['breadcrumbs'],
};
}
That's it! Now you should be able to leave behind breadcrumbs inside the engine and render them inside the host application.
See the Contributing guide for details.
This project is licensed under the MIT License.