discourse/patches/virtual-dom+2.1.1.patch
David Taylor 588a79c80c
DEV: Merge root JS packages (#25857)
Before this commit, we had a yarn package set up in the root directory and also in `app/assets/javascripts`. That meant two `yarn install` calls and two `node_modules` directories. This commit merges them both into the root location, and updates references to node_modules.

A previous attempt can be found at https://github.com/discourse/discourse/pull/21172. This commit re-uses that script to merge the `yarn.lock` files.

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
2024-02-26 13:45:58 +00:00

44 lines
1.5 KiB
Diff

diff --git a/node_modules/virtual-dom/vtree/diff.js b/node_modules/virtual-dom/vtree/diff.js
index b5bccbd..058d6b3 100644
--- a/node_modules/virtual-dom/vtree/diff.js
+++ b/node_modules/virtual-dom/vtree/diff.js
@@ -311,6 +311,38 @@ function reorder(aChildren, bChildren) {
var inserts = []
var simulateItem
+ // handle prepends without reordering old elements
+ var shift = bChildren.length - aChildren.length
+ if (shift > 0 && simulate.length === bChildren.length) {
+ var prepend = true
+ for (var i = 0; prepend && i < simulate.length; i++) {
+ prepend = simulate[i] && simulate[i].key
+ }
+ for (var i = 0; prepend && i < aChildren.length; i++) {
+ prepend = aChildren[i].key === bChildren[i + shift].key
+ }
+
+ if (prepend) {
+ for (var i = 0; i < shift; i++) {
+ removes.push({
+ from: aChildren.length,
+ key: bChildren[i].key
+ })
+ inserts.push({
+ to: i,
+ key: bChildren[i].key
+ })
+ }
+ return {
+ children: newChildren,
+ moves: {
+ removes: removes,
+ inserts: inserts
+ }
+ }
+ }
+ }
+
for (var k = 0; k < bChildren.length;) {
var wantedItem = bChildren[k]
simulateItem = simulate[simulateIndex]