以编程方式添加Bootstrap popover vue-full-calendar

时间:2019-04-24 20:56:57

标签: vuejs2 fullcalendar bootstrap-vue bootstrap-popover fullcalendar-4

我的最终目标是向完整日历中添加Bootstrap 4 Popover,以显示日历事件描述,因为根据视图的不同,完整日历会切断标题/描述。由于完整日历会根据我传递给它的事件道具生成所有内容,因此我一直无法弄清楚如何添加任何种类的弹出窗口。 (我可能可以使用jQuery来做到这一点,但我实际上是在尝试将jQuery从项目中删除,以使构建尺寸更小)

这里有大量有关带有引导Vue的弹出窗口的常规用法的文档:https://bootstrap-vue.js.org/docs/directives/popover/

不幸的是,完整日历没有提供使用Boostrap-Vue文档中描述的任何方法的方法。我确实尝试过但没有奏效的一件事是

<template>
  <full-calendar
    :events="events"
    @eventRender="eventRender"
  ></full-calendar>
</template>

<script>
  import FullCalendar from '@fullcalendar/vue'

  export default{
    data(){
      events: [...],
    },
    methods: {
      eventRender(info){
        info.el.setAttribute('v-b-popover.hover.top', 'Popover!')
      }
    }
  } 
</script>

这确实将属性添加到HTML,但是我认为它是在Vue处理DOM之后,因为它没有添加Popover。

是否还有其他方法可以使用传递给eventRender函数的info对象的参数来添加Popover? (eventRender函数文档:https://fullcalendar.io/docs/eventRender

2 个答案:

答案 0 :(得分:1)

您可以通过bootstrap-vue中的propsData获取BPopover,如下所示:

import { BPopover } from 'bootstrap-vue'
...
methods: {
  ...
  onEventRender: function (args) {
    //console.log(args)
    let titleStr = 'xxxx'
    let contentStr = 'xxxx'

    new BPopover({propsData: {
      title: titleStr,
      content: contentStr,
      placement: 'auto',
      boundary: 'scrollParent',
      boundaryPadding: 5,
      delay: 500,
      offset: 0,
      triggers: 'hover',
      html: true,
      target: args.el,
    }}).$mount()
  }
}

即使propsData是测试的值... https://vuejs.org/v2/api/index.html#propsData

答案 1 :(得分:0)

好吧,花了一些时间阅读Boostrap-Vue代码并进行了一些尝试之后,我才能够使它工作!

以下是该组件的精简版本,其中的PopOver工作正常:

<template>
  <full-calendar
    :events="events"
    @eventRender="eventRender"
  ></full-calendar>
</template>

<script>
  import FullCalendar from '@fullcalendar/vue'
  import PopOver from 'bootstrap-vue/src/utils/popover.class'

  export default{
    data(){
      events: [...],
    },
    methods: {
      eventRender(info){
        // CONFIG FOR THE PopOver CLASS
        const config = {
          title: 'I am a title',
          content: "This text will show up in the body of the PopOver",
          placement: 'auto', // can use any of Popover's placements(top, bottom, right, left etc)
          container: 'null', // can pass in the id of a container here, other wise just appends to body
          boundary: 'scrollParent',
          boundaryPadding: 5,
          delay: 0,
          offset: 0,
          animation:true,
          trigger: 'hover', // can be 'click', 'hover' or 'focus'
          html: false, // if you want HTML in your content set to true.
        }

        const target = info.el;
        const toolpop = new PopOver(target, config, this.$root);

        console.log('TOOLPOP', toolpop);
      },
    }
  } 
</script>

我希望这可以帮助其他人!