Update content of visible tooltips

This commit is contained in:
Winnie Hellmann 2018-10-26 14:49:28 +00:00 committed by Clement Ho
parent 359474a29e
commit 79ec24da6f
2 changed files with 38 additions and 9 deletions

View File

@ -9,6 +9,14 @@ export default {
componentUpdated(el) {
$(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) {

View File

@ -13,24 +13,45 @@ describe('Tooltip directive', () => {
describe('with a single tooltip', () => {
beforeEach(() => {
const SomeComponent = Vue.extend({
setFixtures('<div id="dummy-element"></div>');
vm = new Vue({
el: '#dummy-element',
directives: {
tooltip,
},
template: `
<div
v-tooltip
title="foo">
</div>
`,
data() {
return {
tooltip: 'some text',
};
},
template: '<div v-tooltip :title="tooltip"></div>',
});
vm = new SomeComponent().$mount();
});
it('should have tooltip plugin applied', () => {
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', () => {