From 8f217e2284405c198df55f32d47005c087d7731b Mon Sep 17 00:00:00 2001 From: alexander Date: Wed, 22 May 2024 14:54:16 +0200 Subject: [PATCH] updated run method --- packages/clients/walkerjs/src/index.ts | 37 +++++++++++++------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/packages/clients/walkerjs/src/index.ts b/packages/clients/walkerjs/src/index.ts index c1894a7d..9fd18070 100644 --- a/packages/clients/walkerjs/src/index.ts +++ b/packages/clients/walkerjs/src/index.ts @@ -548,28 +548,29 @@ export function Walkerjs( return pushed; } - function run(instance: WebClient.Instance) { + function run(instance: WebClient.Instance, state: WebClient.InitConfig = {}) { const { config, destinations } = instance; instance.config = assign(config, {}); - // When run is called, the walker may start running - instance.allowed = true; - - // Reset the run counter - instance.count = 0; - - (instance.globals = assign( - // Load globals properties - // Use the default globals set by initialization - // Due to site performance only once every run - config.globalsStatic, - getGlobals(config.prefix), - )), - // Reset the queue for each run without merging - (instance.queue = []); + const newState = assign( + { + allowed: true, // When run is called, the walker may start running + count: 0, // Reset the run counter + queue: [], // Reset the queue for each run without merging + group: getId(), // Generate a new group id for each run + globals: assign( + // Load globals properties + // Use the static globals and search for tagged ones + // Due to site performance only once every run + config.globalsStatic, + getGlobals(config.prefix), + ), + }, + { ...state }, + ); - // Generate a new group id for each run - instance.group = getId(); + // Update the instance reference with the updated state + Object.assign(instance, newState); // Reset all destination queues Object.values(destinations).forEach((destination) => {