Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f80d84e

Browse files
committedNov 7, 2017
prevent mutation on vdom elements
1 parent 70082b5 commit f80d84e

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed
 

‎notebook/static/notebook/js/object-to-preact.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,16 @@ define(function() {
9393
} else if (typeof item === "string") {
9494
result.push(item);
9595
} else if (typeof item === "object") {
96-
const keyedItem = item;
97-
item.key = i;
96+
const keyedItem = {
97+
tagName: item.tagName,
98+
attributes: item.attributes,
99+
children: item.children
100+
};
101+
if (item.attributes && item.attributes.key) {
102+
keyedItem.key = item.attributes.key;
103+
} else {
104+
keyedItem.key = i;
105+
}
98106
result.push(objectToPreactElement(keyedItem));
99107
} else {
100108
console.warn("invalid vdom data passed", item);

‎notebook/static/notebook/js/outputarea.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
define([
55
'jquery',
6-
'underscore',
76
'base/js/utils',
87
'base/js/i18n',
98
'base/js/security',
@@ -12,7 +11,7 @@ define([
1211
'notebook/js/mathjaxutils',
1312
'notebook/js/object-to-preact',
1413
'components/marked/lib/marked',
15-
], function($, _, utils, i18n, security, keyboard, configmod, mathjaxutils, otp, marked) {
14+
], function($, utils, i18n, security, keyboard, configmod, mathjaxutils, otp, marked) {
1615
"use strict";
1716

1817
/**
@@ -714,7 +713,7 @@ define([
714713
);
715714

716715
element.append(toinsert);
717-
preact.render(otp.objectToPreactElement(_.clone(vdom)), toinsert[0]);
716+
preact.render(otp.objectToPreactElement(vdom), toinsert[0]);
718717

719718
return toinsert;
720719
};

0 commit comments

Comments
 (0)
Please sign in to comment.