-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SALTO-7272: Use calculateDiff
instead of getPlan
in createDiffChanges
API
#7191
SALTO-7272: Use calculateDiff
instead of getPlan
in createDiffChanges
API
#7191
Conversation
also, a bit of PR etiquette - fill in the PR description before asking for a review. |
ad8dbf2
to
5fed5a1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!! Added one suggestion, but it doesn't need to be part of this PR
LMK WDYT 🙃
packages/core/src/core/diff.ts
Outdated
.toArray() | ||
} | ||
|
||
export async function createDiffChangesWithGetPlan({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't be exported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
resultType, | ||
}) | ||
} | ||
return createDiffChangesWithGetPlan({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Probably worth adding a TODO here with a SALTO ticket to delete this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
packages/core/src/core/diff.ts
Outdated
resultType: 'changes' | ||
}): Promise<ChangeWithDetails[]> | ||
export function createDiffChanges(params: { | ||
export async function createDiffChangesWithCalculateDiff({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same, shouldn't be exported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
packages/core/src/core/diff.ts
Outdated
export async function createDiffChanges({ | ||
resultType?: 'changes' | 'detailedChanges' | ||
}): Promise<DetailedChangeWithBaseChange[] | ChangeWithDetails[]> { | ||
if (elementSelectors.length > 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this logic has been here before, but I'm thinking maybe we can consolidate this for better readability ?
If we map all changes into { ...change, detailedChanges: () => filteredDetailedChanges }
then, we create a filter function that only if there are matchers
will filter out the detailed changes (or the entire change), other wise will always return true
Then we can avoid some of the branching here and the repetition starting in line 163
WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
5fed5a1
to
2875987
Compare
? awu(changes) | ||
.map(change => { | ||
const filteredDetailedChanges = getDetailedChangesFromChange(change, compareOptions).filter( | ||
matchers.isChangeMatchSelectors, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In most cases this function will be a constant "return true" function (from here), in which case, calculating the detailed changes from the change is a waste of cycles.
it could be a noticeable improvement to avoid calculating detailed changes here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
# Conflicts: # packages/core/src/core/fetch.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! great job 🔥
packages/core/src/core/diff.ts
Outdated
before: toElementsSrc, | ||
after: fromElementsSrc, | ||
topLevelFilters: | ||
elementSelectors.length > 0 ? topLevelFilters.concat(matchers.isTopLevelElementMatchSelectors) : topLevelFilters, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit - consolidate elementSelectors.length > 0
and elementSelectors.length === 0
to a single const ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Use
calculateDiff
instead ofgetPlan
increateDiffChanges
API. This behavior is guarded by a core flag. The API already returned the computed diff as a list of changes, making this quite a short diff.Additional context for reviewer:
This PR is stacked on top of #7187 which introduces the core flag used here.
Release Notes:
None
User Notifications:
None