This addon manages animated, fixed-position toolbars on any edge of the viewport. What you put inside the toolbars and how you style them are entirely up to you.
ember install ember-toolbars
You also need to have @ember/jquery
installed in your app.
If it is not already in your app's package.json
, run:
ember install @ember/jquery
Wrap your content inside the toolbar-manager
component. Most often you will want to do this within application.hbs
, like:
Then whenever you want to display a toolbar, use any of these components:
in-left-toolbar
in-top-toolbar
in-right-toolbar
in-bottom-toolbar
Each one accepts a show
argument that should be a component to show in that toolbar. For example:
Since you're using Ember's built-in component
helper, you can also pass arbitrary arguments or actions to your component, just as if it was rendering in place:
The toolbar-manager
component adapts its margins to make room for whatever toolbars are on screen. This means that the content inside of it will have less room when the sidebars are present. For vertical space, this is relatively easy. The top toolbar pushes your content downward, and the bottom toolbar adds a margin to your content so that users can always scroll to the bottommost content without it being obscured.
Horizontal space is subject to more tradeoffs, so you have several choices for how you want to adapt.
If you do nothing special, your content will simply get resized smaller. Text will reflow, etc.
If you give you content a fixed width (like 100vw
or 800px
or 40em
), it will slide to the right to make room for the left sidebar. For example:
If you give you content a fixed width and float: right
, it will slide to the left to make room for the right sidebar. You should clear the float so that toolbar-manager
bottom margin will still work correctly, like:
If you want your content to scale down to match the available space, you can use the squishable-container addon: