Skip to content

Commit 048c3d4

Browse files
Michael Zanglmosinve
Michael Zangl
authored andcommitted
Allow a function as tooltip target attribute. (#1493)
1 parent 65c19d9 commit 048c3d4

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

src/components/tooltip/README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ component **outside** of these types of components.
3030

3131
The target element **must** exist in the document before `<b-tooltip>` is mounted. If the
3232
target element is not found during mount, the tooltip will never open. Always place
33-
your `<b-tooltip>` component lower in the DOM than your target element.
33+
your `<b-tooltip>` component lower in the DOM than your target element. This rule also applies
34+
if a callback is used as target element, since that callback is called only once on mount.
3435

3536
**Note:** _When using the default slot for the title, `<b-tooltip>` transfers the
3637
rendered DOM from that slot into the tooltip's markup when shown, and returns
@@ -135,12 +136,15 @@ by `focus`, and the user then clicks the trigger element, they must click it aga
135136
```html
136137
<b-container fluid>
137138
<b-row>
138-
<b-col md="6" class="py-4">
139+
<b-col md="4" class="py-4">
139140
<b-btn id="exButton1" variant="outline-success">Live chat</b-btn>
140141
</b-col>
141-
<b-col md="6" class="py-4">
142+
<b-col md="4" class="py-4">
142143
<b-btn id="exButton2" variant="outline-success">Html chat</b-btn>
143144
</b-col>
145+
<b-col md="4" class="py-4">
146+
<b-btn ref="exButton3" variant="outline-success">Alternative chat</b-btn>
147+
</b-col>
144148
</b-row>
145149

146150
<!-- Tooltip title specified via prop title -->
@@ -150,6 +154,10 @@ by `focus`, and the user then clicks the trigger element, they must click it aga
150154
<b-tooltip target="exButton2" placement="bottom">
151155
Hello <strong>World!</strong>
152156
</b-tooltip>
157+
158+
<!-- Tooltip for an element identified by ref -->
159+
<b-tooltip :target="() => $refs.exButton3" title="Alternative!"></b-tooltip>
160+
153161
</b-container>
154162

155163
<!-- tooltip-component-1.vue -->
@@ -159,7 +167,7 @@ by `focus`, and the user then clicks the trigger element, they must click it aga
159167

160168
| Prop | Default | Description | Supported values
161169
| ---- | ------- | ----------- | ----------------
162-
| `target` | `null` | Element String ID, or a reference to an element or component, that you want to trigger the tooltip. **Required** | Any valid, in-document unique element ID, element reference or component reference
170+
| `target` | `null` | Element String ID, or a reference to an element or component, or a function returning either of them, that you want to trigger the tooltip. **Required** | Any valid, in-document unique element ID, element reference or component reference or a function returning any such ID / reference
163171
| `title` | `null` | Tooltip content (text only, no HTML). if HTML is required, place it in the default slot | Plain text
164172
| `placement` | `top` | Tooltip position, relative to the trigger element. | `top`, `bottom`, `left`, `right`, `auto`, `topleft`, `topright`, `bottomleft`, `bottomright`, `lefttop`, `leftbottom`, `righttop`, `rightbottom`
165173
| `triggers` | `hover focus` | Space separated list of event(s), which will trigger open/close of tooltip | `hover`, `focus`, `click`. Note `blur` is a special use case to close tooltip on next click, usually used in conjunction with `click`.

src/mixins/toolpop.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default {
3535
props: {
3636
target: {
3737
// String ID of element, or element/component reference
38-
type: [String, Object, HTMLElement]
38+
type: [String, Object, HTMLElement, Function]
3939
},
4040
delay: {
4141
type: [Number, Object, String],
@@ -231,7 +231,10 @@ export default {
231231
}
232232
},
233233
getTarget () {
234-
const target = this.target
234+
let target = this.target
235+
if (typeof target === 'function') {
236+
target = target()
237+
}
235238
if (typeof target === 'string') {
236239
// Assume ID of element
237240
return getById(target)

0 commit comments

Comments
 (0)