zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import Vue from 'vue'
// 导入组件
import RenameFileDialog from './Dialog.vue'
// 使用基础 Vue 构造器,创建一个“子类”
const RenameFileConstructor = Vue.extend(RenameFileDialog)
 
let renameFileInstance = null
/**
 * 初始化重命名文件实例
 * @param {string} oldFileName 文件原本的名称
 * @param {string} userFileId 文件 ID
 */
const initInstanceRenameFile = (oldFileName, userFileId) => {
    renameFileInstance = new RenameFileConstructor({
        el: document.createElement('div'),
        data() {
            return {
                oldFileName,
                userFileId
            }
        }
    })
}
/**
 * 重命名文件 Promise 函数
 * @returns {Promise} 抛出确认和取消回调函数
 */
const showRenameFileDialog = (obj) => {
    // 非首次调用服务时,在 DOM 中移除上个实例
    if (renameFileInstance !== null) {
        document.body.removeChild(renameFileInstance.$el)
    }
    let { oldFileName, userFileId } = obj
    return new Promise((reslove) => {
        initInstanceRenameFile(oldFileName, userFileId)
        renameFileInstance.callback = (res) => {
            reslove(res)
            // 服务取消时卸载 DOM
            if (res === 'cancel' && renameFileInstance !== null) {
                document.body.removeChild(renameFileInstance.$el)
                renameFileInstance = null
            }
        }
        document.body.appendChild(renameFileInstance.$el) //  挂载 DOM
        Vue.nextTick(() => {
            renameFileInstance.visible = true //  打开对话框
        })
    })
}
 
export default showRenameFileDialog