Tinymce insert/edit 弹出窗口中的图像字段在 vuetify 的对话框中不可编辑(聚焦)

Tinymce insert/edit image fields on pop up are not editable(focused) inside vuetify's dialog

我知道在 bootstrap 模式下启用 tinymce 弹出窗口中的焦点所需的调整。 但目前我正在使用一个 vuetify 对话框。这似乎并不关注 tinymce 的弹出字段。

我已经回答了这个问题,但它在上下文中不起作用 vuetify TinyMCE 4 links plugin modal in not editable

下面是我的代码我删除了一些方法只是为了清理并保留了我在挂载事件和编辑器初始化中尝试过的基本内容。

  <no-ssr placeholder="Loading Editor..">
    <tinymce
      id="content"
      :toolbar2="toolbar2"
      :toolbar1="type=='BASIC'?'':toolbar1"
      :plugins="plugins"
      :other_options="other_options"
      v-model="content"
      @input="handleInput"
      v-on:editorInit="initCallBack"
    />
  </no-ssr>
</template>

<script>
//https://dyonir.github.io/vue-tinymce-editor/?en_US
export default {
  props: {
    value: { type: String },
    type: { type: String }
  },
  data() {
    return {
      content: this.value,
      plugins: this.getPlugins(),
      toolbar2: "",
      toolbar1: this.getToolbar1(),
      other_options: {
        menubar: this.getMenubar(),
        height: "320",
        file_browser_callback: this.browseFile,
        auto_focus: '#content'
      }
    };
  },
  mounted(event) {
    // window.tinyMCE.activeEditor.focus();
    // window.tinymce.editors["content"]
    console.log(this.$el, event);
    let list=document.getElementsByClassName("mce-textbox");
    for (let index = 0; index < list.length; ++index) {
    list[index].setAttribute("tabindex", "-1");
}
    //     if ((event.target).closest(".mce-window").length) {
    //     e.stopImmediatePropagation();
    // }
    // this.$refs.refToElement ..$el.focus())
    // this.el.addEventListener('focusin', e => e.stopPropagation());
  },
  methods: {
    handleInput(e) {
      this.$emit("input", this.content);
    },
    initCallBack(e) {
      window.tinymce.editors["content"].setContent(this.value);
      window.tinymce.editors["content"].getBody().focus();
// console.log(this.$refs);
//       const focusable = this.$refs.content.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')
//         focusable.length && focusable[0].focus()

      document.getElementById("content").addEventListener("onfocusin", console.log("fucssed"));
      // tinymce.activeEditor.fire("focus");

this.$el.querySelector(".mce-tinymce").addEventListener('focusin', e =>{ e.stopImmediatePropagation();console.log('event',e)});

      const element = this.$el.querySelector(".mce-tinymce");
      let _this=this;
      if (element)
        this.$nextTick(() => {
          element.focus();
          console.log("FOCUSED",element,_this);
          // element.stopImmediatePropagation();
        });
      // window.tinyMCE.activeEditor.focus();

      //   console.log(this.$el,e);
      //     if ((e).closest(".mce-window").length) {
      //     e.stopImmediatePropagation();
      // }
    }
};
</script>```


I am using the component : https://github.com/dyonir/vue-tinymce-editor
But fields of the pop are not getting focussed/edited.

修改v-dialog的z-index:

当前:

z-index: 202

修改:

<style>
.v-dialog__content {z-index: 203 !important;}
</style>

别忘了 !important 样式优先。

从 vuetify 2.0 开始有一个新的 prop 'retain-focus',你可以将其设置为 false 以解决上述问题。

<v-dialog :retain-focus="false">

默认情况下,Tab 焦点 return 到对话框的第一个子项。使用需要焦点的外部工具(例如 TinyMCE 或 vue-clipboard)时禁用此选项。

编辑: 这是 link 到 retain-focus 道具的实现 GitHub: https://github.com/vuetifyjs/vuetify/issues/6892