|
|
@ -68,7 +68,7 @@ import {
|
|
|
|
hydrate_block_anchor,
|
|
|
|
hydrate_block_anchor,
|
|
|
|
set_current_hydration_fragment
|
|
|
|
set_current_hydration_fragment
|
|
|
|
} from './hydration.js';
|
|
|
|
} from './hydration.js';
|
|
|
|
import { array_from, define_property, get_descriptor, get_descriptors, is_array } from './utils.js';
|
|
|
|
import { array_from, define_property, get_descriptor, is_array } from './utils.js';
|
|
|
|
import { is_promise } from '../common.js';
|
|
|
|
import { is_promise } from '../common.js';
|
|
|
|
import { bind_transition } from './transitions.js';
|
|
|
|
import { bind_transition } from './transitions.js';
|
|
|
|
|
|
|
|
|
|
|
@ -2262,9 +2262,10 @@ export function each_item_block(item, key, index, render_fn, flags) {
|
|
|
|
* @param {null | ((item: V) => string)} key_fn
|
|
|
|
* @param {null | ((item: V) => string)} key_fn
|
|
|
|
* @param {(anchor: null, item: V, index: import('./types.js').MaybeSignal<number>) => void} render_fn
|
|
|
|
* @param {(anchor: null, item: V, index: import('./types.js').MaybeSignal<number>) => void} render_fn
|
|
|
|
* @param {null | ((anchor: Node) => void)} fallback_fn
|
|
|
|
* @param {null | ((anchor: Node) => void)} fallback_fn
|
|
|
|
|
|
|
|
* @param {typeof reconcile_indexed_array | reconcile_tracked_array} reconcile_fn
|
|
|
|
* @returns {void}
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
export function each(anchor_node, collection, flags, key_fn, render_fn, fallback_fn) {
|
|
|
|
function each(anchor_node, collection, flags, key_fn, render_fn, fallback_fn, reconcile_fn) {
|
|
|
|
const is_controlled = (flags & EACH_IS_CONTROLLED) !== 0;
|
|
|
|
const is_controlled = (flags & EACH_IS_CONTROLLED) !== 0;
|
|
|
|
const block = create_each_block(flags, anchor_node);
|
|
|
|
const block = create_each_block(flags, anchor_node);
|
|
|
|
|
|
|
|
|
|
|
@ -2384,20 +2385,7 @@ export function each(anchor_node, collection, flags, key_fn, render_fn, fallback
|
|
|
|
const flags = block.flags;
|
|
|
|
const flags = block.flags;
|
|
|
|
const is_controlled = (flags & EACH_IS_CONTROLLED) !== 0;
|
|
|
|
const is_controlled = (flags & EACH_IS_CONTROLLED) !== 0;
|
|
|
|
const anchor_node = block.anchor;
|
|
|
|
const anchor_node = block.anchor;
|
|
|
|
if ((flags & EACH_KEYED) !== 0) {
|
|
|
|
reconcile_fn(array, block, anchor_node, is_controlled, render_fn, flags, true, keys);
|
|
|
|
reconcile_tracked_array(
|
|
|
|
|
|
|
|
array,
|
|
|
|
|
|
|
|
block,
|
|
|
|
|
|
|
|
anchor_node,
|
|
|
|
|
|
|
|
is_controlled,
|
|
|
|
|
|
|
|
render_fn,
|
|
|
|
|
|
|
|
keys,
|
|
|
|
|
|
|
|
flags,
|
|
|
|
|
|
|
|
true
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
reconcile_indexed_array(array, block, anchor_node, is_controlled, render_fn, flags, true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
block,
|
|
|
|
block,
|
|
|
|
true
|
|
|
|
true
|
|
|
@ -2419,12 +2407,39 @@ export function each(anchor_node, collection, flags, key_fn, render_fn, fallback
|
|
|
|
fallback = fallback.prev;
|
|
|
|
fallback = fallback.prev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Clear the array
|
|
|
|
// Clear the array
|
|
|
|
reconcile_indexed_array([], block, anchor_node, is_controlled, render_fn, flags, false);
|
|
|
|
reconcile_fn([], block, anchor_node, is_controlled, render_fn, flags, false, keys);
|
|
|
|
destroy_signal(/** @type {import('./types.js').EffectSignal} */ (render));
|
|
|
|
destroy_signal(/** @type {import('./types.js').EffectSignal} */ (render));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
block.effect = each;
|
|
|
|
block.effect = each;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @template V
|
|
|
|
|
|
|
|
* @param {Element | Comment} anchor_node
|
|
|
|
|
|
|
|
* @param {() => V[]} collection
|
|
|
|
|
|
|
|
* @param {number} flags
|
|
|
|
|
|
|
|
* @param {null | ((item: V) => string)} key_fn
|
|
|
|
|
|
|
|
* @param {(anchor: null, item: V, index: import('./types.js').MaybeSignal<number>) => void} render_fn
|
|
|
|
|
|
|
|
* @param {null | ((anchor: Node) => void)} fallback_fn
|
|
|
|
|
|
|
|
* @returns {void}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function each_keyed(anchor_node, collection, flags, key_fn, render_fn, fallback_fn) {
|
|
|
|
|
|
|
|
each(anchor_node, collection, flags, key_fn, render_fn, fallback_fn, reconcile_tracked_array);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @template V
|
|
|
|
|
|
|
|
* @param {Element | Comment} anchor_node
|
|
|
|
|
|
|
|
* @param {() => V[]} collection
|
|
|
|
|
|
|
|
* @param {number} flags
|
|
|
|
|
|
|
|
* @param {(anchor: null, item: V, index: import('./types.js').MaybeSignal<number>) => void} render_fn
|
|
|
|
|
|
|
|
* @param {null | ((anchor: Node) => void)} fallback_fn
|
|
|
|
|
|
|
|
* @returns {void}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function each_indexed(anchor_node, collection, flags, render_fn, fallback_fn) {
|
|
|
|
|
|
|
|
each(anchor_node, collection, flags, null, render_fn, fallback_fn, reconcile_indexed_array);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param {Element | Text | Comment} anchor
|
|
|
|
* @param {Element | Text | Comment} anchor
|
|
|
|
* @param {boolean} is_html
|
|
|
|
* @param {boolean} is_html
|
|
|
|