Package Exports
- ember-cli-bootstrap3-tooltip
- ember-cli-bootstrap3-tooltip/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-cli-bootstrap3-tooltip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ember-cli-bootstrap3-tooltip 
This addon allows you to quickly and conveniently create a Bootstrap3 Tooltip.
Tested Against
Demo
The demonstration web application can be found here: http://ember-cli-bootstrap3-tooltip.cybertooth.io/.
What Does This Addon Do?
This addon supplied the following components:
twbs-abbr
- an<abbr>
element whose title attribute is rendered as a Bootstrap tooltip.twbs-button
- a<button>
element whose title attribute is rendered as a Bootstrap tooltip. Accepts all standard HTML5 attributes.twbs-cite
- a<cite>
element whose title attribute is rendered as a Bootstrap tooltip.twbs-i
- an<i>
element whose title attribute is rendered as a Bootstrap tooltip.twbs-span
- a<span>
element whose title attribute is rendered as a Bootstrap tooltip. This is very convenient when you want to embed a tooltip into<a>
nchor or<button>
elements.twbs-time
- a<time>
element whose title attribute is rendered as a Bootstrap tooltip. Accepts the HTML5datetime
attribute.
...and the following mixin:
TwbsTooltip
- imported asimport TwbsTooltip as 'ember-cli-bootstrap3-tooltip/mixins/twbs-tooltip'
and can be added to new or existing components.
Further information about these items can be found in the Usage section below.
Requirements
- Ember >= 2.3.0: This addon uses the hash helper which was introduced in Ember-2.3.0.
- Ember CLI
- You must have Bootstrap 3.x installed in your Ember application. Feel free to use the ember-cli-bootstrap3-sass addon to setup Bootstrap if you haven't already done so.
- Tooltips require the tooltip plugin to be included in your version of Bootstrap.
Installation
The following will install this addon:
ember install ember-cli-bootstrap3-tooltip
As mentioned, you must install Bootstrap3's tooltip styles and script plugin. See the requirements section above.
Upgrading
When working through the Ember upgrade process, I recommend
invoking the ember install ember-cli-bootstrap3-tooltip
command once
you are done to get the latest version of the addon.
Usage
Components
{{twbs-abbr title="Some tooltip value"}}
Create an <abbr>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. title
- the tooltip String.class
- any additional CSS classes (e.g.initialism
)
Examples
See the demonstration app for examples
{{twbs-button class="btn-default title="Some tooltip value"}}
Create a <button>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. - All HTML5 button attributes.
title
- the tooltip String.class
- any additional CSS classes (e.g.btn-default
)
Examples
See the demonstration app for examples
{{twbs-cite title="Some tooltip value"}}
Create a <cite>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. title
- the tooltip String.
Examples
See the demonstration app for examples
{{twbs-i title="Some tooltip value"}}
Create an <i>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. title
- the tooltip String.class
- any additional CSS classes (e.g.fa fa-clock
)
Examples
See the demonstration app for examples
{{twbs-span title="Some tooltip value"}}
Create an <span>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. title
- the tooltip String.
Examples
See the demonstration app for examples
{{twbs-time datetime="2001-09-11T04:00:00.000Z" title="Some tooltip value"}}
Create an <time>
element whose title
property will be used to
generate a tooltip.
Arguments
- All of the properties listed in the
TwbsTooltip
mixin. - All HTML5 time attributes.
title
- the tooltip String.
Examples
See the demonstration app for examples
title
Component
When you have a tooltip title that is another rendered component or some sort of dynamic content, use
the nested title component on any one of the above twbs-*
tags.
Here's an example from the demo site of a clock icon with the current time changing in the tooltip:
{{#twbs-i class="glyphicon glyphicon-time" placement="right" as |i|}}
{{#i.title}}{{clock.hour}}:{{clock.minute}}:{{clock.second}}{{/i.title}}
{{/twbs-i}}
Mixins
TwbsTooltip
Check out the Bootstrap Tooltip Options documentation as all have been exposed in this mixin, with the following cavaets:
- The boolean options have been renamed to include
a question mark; e.g.
animation
isanimation?
andhtml
ishtml?
. - For conveneince, the
delay
option has been enhanced to accept two arguments:delayHide
anddelayShow
. title
is changed todefaultTitle
becausetitle
is already used for the actual tooltip.container
andtrigger
is also renamed totooltipContainer
andtooltipTrigger
respectively to avoid a naming conflict with Ember.
Properties
animation
- Readonly alias toanimation?
.animation?
- Apply a CSS fade transition to the tooltip (boolean
defaults totrue
)defaultTitle
- Default title value if title attribute isn't present. If a function is given, it will be called with its this reference set to the element that the tooltip is attached to. (String
defaults to ''; or a function)delayHide
- Delay hiding the tooltip (ms) - does not apply to manual trigger type (number
defaults to 0)delayShow
- Delay showing the tooltip (ms) - does not apply to manual trigger type (number
defaults to 0)html
- Readonly alias tohtml?
.html?
- Insert HTML into the tooltip. If false, jQuery's text method will be used to insert content into the DOM. Use text if you're worried about XSS attacks. (boolean
defaults tofalse
)placement
- How to position the tooltip:top
|bottom
|left
|right
|auto
. Whenauto
is specified, it will dynamically reorient the tooltip. For example, if placement isauto left
, the tooltip will display to the left when possible, otherwise it will display right. When a function is used to determine the placement, it is called with the tooltip DOM node as its first argument and the triggering element DOM node as its second. The this context is set to the tooltip instance. (String
defaulting totop
; or a function)selector
- If a selector is provided, tooltip objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have tooltips added. See this and an informative example. (String
defaults tofalse
)template
- Base HTML to use when creating the tooltip. The tooltip's title will be injected into the.tooltip-inner
..tooltip-arrow
will become the tooltip's arrow. The outermost wrapper element should have the.tooltip
class. (String
defaults to<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>
)tooltipContainer
- Appends the tooltip to a specific element. Example: container: 'body'. This option is particularly useful in that it allows you to position the tooltip in the flow of the document near the triggering element - which will prevent the tooltip from floating away from the triggering element during a window resize. (String
defaults tofalse
)tooltipTrigger
- How tooltip is triggered:click
|hover
|focus
|manual
. You may pass multiple triggers; separate them with a space. manual cannot be combined with any other trigger. (String
defaults to'hover focus'
)viewport
- Keeps the tooltip within the bounds of this element. Example: viewport: '#viewport' or { "selector": "#viewport", "padding": 0 }. If a function is given, it is called with the triggering element DOM node as its only argument. The this context is set to the tooltip instance. (String
orObject
or function; defaulting to{ selector: 'body', padding: 0 }
)
Troubleshooting And Tips
- If you have a title that is dynamic use the nested title component.
- Make sure the Bootstrap3 CSS and the tooltip Javascript plugin is installed.
Ember Addon Building And Testing
Setup
Checkout
$ git clone git@github.com:cybertoothca/ember-cli-bootstrap3-tooltip.git
With Yarn
yarn
Running The Dummy Application
ember server
- Visit your app at http://localhost:4200.
Linting
yarn lint:hbs
yarn lint:js
yarn lint:js -- --fix
Running Addon Tests
yarn test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
Building The Addon
ember build
For more information on using ember-cli, visit http://ember-cli.com/.
Linking This Addon For Local Testing
Linking
- From the command line at the root of this project run the
npm link
command to link this addon within your local node repository. - From the other Ember project that you wish to test this addon
in, execute the following command:
npm link ember-cli-bootstrap3-tooltip
. - Now in that same other Ember project, you should go into the
package.json
and add the ember addon with the version *. It will look something like this:"ember-cli-bootstrap3-tooltip": "*"
. Now when/if you executenpm install
on this other project it will know to look for the linked addon rather than fetch it from the central repository.
Unlinking
- Remove the addon from your local node repository with the following
command (that can be run anywhere):
npm uninstall -g ember-cli-bootstrap3-tooltip
- Remove the reference to the
ember-cli-bootstrap3-tooltip
in your other project'spackage.json
. - Run an
npm prune
andbower prune
from the root of your other project's command line.
Deploying The Dummy Application
Make sure your ~/.aws/credentials
file has a profile named cybertooth
with a valid key and secret,
[cybertooth]
aws_access_key_id = <KEY>
aws_secret_access_key = <SECRET>
Deploy by invoking the following command: ember deploy production
Confirm your changes are showing up in our S3 container: http://ember-cli-bootstrap3-tooltip.cybertooth.io/
Releasing & Publishing To NPM
The steps are listed below; roll the version, push the changes to Git, publish to NPM, and update the demo website.
npm version x.y.z-sub.#
git push
git push --tags
npm publish
ember deploy production
License
This project is licensed under the MIT License.