将元素粘贴到 Rappid 中的另一个图形?

Paste elements to another graph in Rappid?

我正在构建一个管理图表的管理工具,使用 JointsJS + Rappid。我正在尝试将粘贴元素从一张纸 A 复制到另一张纸 B(位于不同的浏览器选项卡上),但我遇到以下问题:

似乎这种行为在 Kitchen Sink Rappid demo 中是相同的:如果我在演示中打开 2 个选项卡,我将面临完全相同的问题。您可以通过使用演示应用程序打开 2 个选项卡轻松重现它。

这是我的一段代码(直接取自 Rappid 演示):

this.clipboard = new joint.ui.Clipboard();
this.selection = new joint.ui.Selection({
    paper: this.paper,
    handles: App.config.selection.handles,
    collection: new Backbone.Collection
});

this.keyboard = new joint.ui.Keyboard();
this.keyboard.on({
    'ctrl+c': function () {
        // Copy all selected elements and their associated links.
        this.clipboard.copyElements(this.selection.collection, this.graph);
    },
    'ctrl+v': function () {
        var pastedCells = this.clipboard.pasteCells(this.graph, {
            translate: {dx: 20, dy: 20},
            useLocalStorage: true
        });
        var elements = _.filter(pastedCells, function (cell) {
            return cell.isElement();
        });
        // Make sure pasted elements get selected immediately. This makes the UX better as
        // the user can immediately manipulate the pasted elements.
        this.selection.collection.reset(elements);
    },
}

在 Rappid 文档中,指出:

"Additionally, clipboard is also able to copy cells from one paper and paste them to another. However, the determination of the targeted paper is left to the application layer."

第二句没完全看懂("However ..."结束)

我监控了本地存储,发现两篇论文可能使用相同的存储条目,这让我觉得图间粘贴是管理的。

在这个阶段,我正在努力寻找是否:

感谢您的帮助。

我从 Rappid 工作人员那里得到了答复,这是 Rappid 中的一个错误,正在修复中。

修复将嵌入到下一个版本中(可能是 2.5)。