Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 29951x 29951x 29951x 29951x 29951x 29951x 29951x 29951x 2x 2x 2x 2x 2x 2x 2x 8x 8x 8x 8x 26x 26x 26x 26x 4x 4x 4x 22x 22x 8x 8x 8x 48x 4x 4x 4x 4x 4x 44x 44x 8x 8x 2x 2x 2x 2x 2x 2x 2x 2x 21184x 21184x 21184x 21184x 21184x 21184x 15911x 15911x 21184x 21184x 21184x 2x 2x 2x 2x 2x 2x 2x 778x 778x 778x 778x 778x 778x 2x 2x 2x 2x 2x 2x 2x 2x 24158x 24158x 24158x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 20847x 144x 20847x 101x 14x 14x 101x 87x 79x 87x 8x 8x 87x 101x 20847x 20847x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 20847x 24158x 24158x 24158x 2x 2x 2x 2x 2x 2x 27137x 27137x 27137x 20354x 20354x 20354x 20354x 27132x 26780x 26780x 26780x 26780x 26780x 24331x 24331x 26780x 24175x 24175x 26780x 25x 25x 25x 24150x 24150x 24150x 24150x 26774x 22527x 6290x 22402x 16237x 16237x 22527x 26780x 27137x | /** @import { Derived, Effect, Source, Value } from '#client' */ import { current_component_context, current_reaction, new_deps, current_effect, current_untracked_writes, get, is_runes, schedule_effect, set_current_untracked_writes, set_signal_status, untrack, increment_version, update_effect } from '../runtime.js'; import { equals, safe_equals } from './equality.js'; import { CLEAN, DERIVED, DIRTY, BRANCH_EFFECT, SYNC_EFFECT, UNOWNED, MAYBE_DIRTY } from '../constants.js'; import * as e from '../errors.js'; import { derived } from './deriveds.js'; let sync_effects = new Set(); /** * @template V * @param {V} v * @returns {Source<V>} */ /*#__NO_SIDE_EFFECTS__*/ export function source(v) { return { f: 0, // TODO ideally we could skip this altogether, but it causes type errors v, reactions: null, equals, version: 0 }; } /** * @template V * @param {() => V} get_value * @returns {(value?: V) => V} */ export function source_link(get_value) { var was_local = false; var local_source = source(/** @type {V} */ (undefined)); var linked_derived = derived(() => { var local_value = /** @type {V} */ (get(local_source)); var linked_value = get_value(); if (was_local) { was_local = false; return local_value; } return linked_value; }); return function (/** @type {any} */ value) { if (arguments.length > 0) { was_local = true; set(local_source, value); get(linked_derived); return value; } return (local_source.v = get(linked_derived)); }; } /** * @template V * @param {V} initial_value * @returns {Source<V>} */ /*#__NO_SIDE_EFFECTS__*/ export function mutable_source(initial_value) { const s = source(initial_value); s.equals = safe_equals; // bind the signal to the component context, in case we need to // track updates to trigger beforeUpdate/afterUpdate callbacks if (current_component_context !== null && current_component_context.l !== null) { (current_component_context.l.s ??= []).push(s); } return s; } /** * @template V * @param {Value<V>} source * @param {V} value */ export function mutate(source, value) { set( source, untrack(() => get(source)) ); return value; } /** * @template V * @param {Source<V>} source * @param {V} value * @returns {V} */ export function set(source, value) { if (current_reaction !== null && is_runes() && (current_reaction.f & DERIVED) !== 0) { e.state_unsafe_mutation(); } if (!source.equals(value)) { source.v = value; source.version = increment_version(); mark_reactions(source, DIRTY); // If the current signal is running for the first time, it won't have any // reactions as we only allocate and assign the reactions after the signal // has fully executed. So in the case of ensuring it registers the reaction // properly for itself, we need to ensure the current effect actually gets // scheduled. i.e: `$effect(() => x++)` if ( is_runes() && current_effect !== null && (current_effect.f & CLEAN) !== 0 && (current_effect.f & BRANCH_EFFECT) === 0 ) { if (new_deps !== null && new_deps.includes(source)) { set_signal_status(current_effect, DIRTY); schedule_effect(current_effect); } else { if (current_untracked_writes === null) { set_current_untracked_writes([source]); } else { current_untracked_writes.push(source); } } } if (sync_effects.size > 0) { // Make sure the global map is reset to its base state // BEFORE running the effects, which could themselves // trigger other sync effects. const effects_to_run = [...sync_effects]; sync_effects.clear(); for (const effect of effects_to_run) { update_effect(effect); } } } return value; } /** * @param {Value} signal * @param {number} status should be DIRTY or MAYBE_DIRTY * @returns {void} */ function mark_reactions(signal, status) { var reactions = signal.reactions; if (reactions === null) return; var runes = is_runes(); var length = reactions.length; for (var i = 0; i < length; i++) { var reaction = reactions[i]; var flags = reaction.f; // Skip any effects that are already dirty if ((flags & DIRTY) !== 0) continue; // In legacy mode, skip the current effect to prevent infinite loops if (!runes && reaction === current_effect) continue; // Sync effects need to run immediately if ((flags & SYNC_EFFECT) !== 0) { sync_effects.add(reaction); continue; } set_signal_status(reaction, status); // If the signal a) was previously clean or b) is an unowned derived, then mark it if ((flags & (CLEAN | UNOWNED)) !== 0) { if ((flags & DERIVED) !== 0) { mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY); } else { schedule_effect(/** @type {Effect} */ (reaction)); } } } } |