Skip to content

Commit 6c0d395

Browse files
Alirunwtfsayo
andauthored
Fixed goal updating bug in the goal evaluator's handler (#2725)
Co-authored-by: Sayo <hi@sayo.wtf>
1 parent 3d05b89 commit 6c0d395

File tree

1 file changed

+7
-23
lines changed
  • packages/plugin-bootstrap/src/evaluators

1 file changed

+7
-23
lines changed

packages/plugin-bootstrap/src/evaluators/goal.ts

+7-23
Original file line numberDiff line numberDiff line change
@@ -80,34 +80,18 @@ async function handler(
8080

8181
// Apply the updates to the goals
8282
const updatedGoals = goalsData
83-
.map((goal: Goal) => {
83+
.map((goal: Goal): Goal => {
8484
const update = updates?.find((u) => u.id === goal.id);
8585
if (update) {
86-
const objectives = goal.objectives;
87-
88-
// for each objective in update.objectives, find the objective with the same description in 'objectives' and set the 'completed' value to the update.objectives value
89-
if (update.objectives) {
90-
for (const objective of objectives) {
91-
const updatedObjective = update.objectives.find(
92-
(o: Objective) =>
93-
o.description === objective.description
94-
);
95-
if (updatedObjective) {
96-
objective.completed = updatedObjective.completed;
97-
}
98-
}
99-
}
100-
86+
// Merge the update into the existing goal
10187
return {
10288
...goal,
10389
...update,
104-
objectives: [
105-
...goal.objectives,
106-
...(update?.objectives || []),
107-
],
108-
}; // Merging the update into the existing goal
109-
} else {
110-
console.warn("**** ID NOT FOUND");
90+
objectives: goal.objectives.map((objective) => {
91+
const updatedObjective = update.objectives?.find(uo => uo.id === objective.id);
92+
return updatedObjective ? { ...objective, ...updatedObjective } : objective;
93+
}),
94+
};
11195
}
11296
return null; // No update for this goal
11397
})

0 commit comments

Comments
 (0)