Commit 79ec24da authored by Winnie Hellmann's avatar Winnie Hellmann Committed by Clement Ho

Update content of visible tooltips

parent 359474a2
...@@ -9,6 +9,14 @@ export default { ...@@ -9,6 +9,14 @@ export default {
componentUpdated(el) { componentUpdated(el) {
$(el).tooltip('_fixTitle'); $(el).tooltip('_fixTitle');
// update visible tooltips
const tooltipInstance = $(el).data('bs.tooltip');
const tip = tooltipInstance.getTipElement();
tooltipInstance.setElementContent(
$(tip.querySelectorAll('.tooltip-inner')),
tooltipInstance.getTitle(),
);
}, },
unbind(el) { unbind(el) {
......
...@@ -13,24 +13,45 @@ describe('Tooltip directive', () => { ...@@ -13,24 +13,45 @@ describe('Tooltip directive', () => {
describe('with a single tooltip', () => { describe('with a single tooltip', () => {
beforeEach(() => { beforeEach(() => {
const SomeComponent = Vue.extend({ setFixtures('<div id="dummy-element"></div>');
vm = new Vue({
el: '#dummy-element',
directives: { directives: {
tooltip, tooltip,
}, },
template: ` data() {
<div return {
v-tooltip tooltip: 'some text',
title="foo"> };
</div> },
`, template: '<div v-tooltip :title="tooltip"></div>',
}); });
vm = new SomeComponent().$mount();
}); });
it('should have tooltip plugin applied', () => { it('should have tooltip plugin applied', () => {
expect($(vm.$el).data('bs.tooltip')).toBeDefined(); expect($(vm.$el).data('bs.tooltip')).toBeDefined();
}); });
it('displays the title as tooltip', () => {
$(vm.$el).tooltip('show');
const tooltipElement = document.querySelector('.tooltip-inner');
expect(tooltipElement.innerText).toContain('some text');
});
it('updates a visible tooltip', done => {
$(vm.$el).tooltip('show');
const tooltipElement = document.querySelector('.tooltip-inner');
vm.tooltip = 'other text';
Vue.nextTick()
.then(() => {
expect(tooltipElement).toContainText('other text');
done();
})
.catch(done.fail);
});
}); });
describe('with multiple tooltips', () => { describe('with multiple tooltips', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment