Skip to content
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

Merged
merged 11 commits into from
Feb 26, 2025

Conversation

Nurdok
Copy link
Contributor

@Nurdok Nurdok commented Jan 29, 2025

Use calculateDiff instead of getPlan in createDiffChanges 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

@coveralls
Copy link

coveralls commented Feb 2, 2025

Coverage Status

coverage: 93.713% (+0.005%) from 93.708%
when pulling 0a558ce on Nurdok:feature/SALTO-7272-createDiffChanges
into 69a03c3 on salto-io:main.

@Nurdok Nurdok requested a review from ori-moisis February 2, 2025 08:53
@Nurdok Nurdok marked this pull request as ready for review February 2, 2025 08:53
@shir-reifenberg
Copy link
Contributor

@Nurdok This was is rebased on top of #7187, right ?
Any chance you can squash the commits related to the previous PR for easier review? 🙏

@Nurdok Nurdok added the stacked This PR is based on other open PR(s) label Feb 5, 2025
@ori-moisis
Copy link
Contributor

also, a bit of PR etiquette - fill in the PR description before asking for a review.
especially for stacked PRs, it should be mentioned in the "additional context for reviewer"

@Nurdok Nurdok force-pushed the feature/SALTO-7272-createDiffChanges branch 2 times, most recently from ad8dbf2 to 5fed5a1 Compare February 5, 2025 08:51
Copy link
Contributor

@shir-reifenberg shir-reifenberg left a 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 🙃

.toArray()
}

export async function createDiffChangesWithGetPlan({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't be exported

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

resultType,
})
}
return createDiffChangesWithGetPlan({
Copy link
Contributor

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

resultType: 'changes'
}): Promise<ChangeWithDetails[]>
export function createDiffChanges(params: {
export async function createDiffChangesWithCalculateDiff({
Copy link
Contributor

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

export async function createDiffChanges({
resultType?: 'changes' | 'detailedChanges'
}): Promise<DetailedChangeWithBaseChange[] | ChangeWithDetails[]> {
if (elementSelectors.length > 0) {
Copy link
Contributor

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@Nurdok Nurdok force-pushed the feature/SALTO-7272-createDiffChanges branch from 5fed5a1 to 2875987 Compare February 12, 2025 09:55
? awu(changes)
.map(change => {
const filteredDetailedChanges = getDetailedChangesFromChange(change, compareOptions).filter(
matchers.isChangeMatchSelectors,
Copy link
Contributor

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@Nurdok Nurdok removed the stacked This PR is based on other open PR(s) label Feb 17, 2025
@Nurdok Nurdok requested a review from ori-moisis February 17, 2025 16:16
Copy link
Contributor

@shir-reifenberg shir-reifenberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! great job 🔥

before: toElementsSrc,
after: fromElementsSrc,
topLevelFilters:
elementSelectors.length > 0 ? topLevelFilters.concat(matchers.isTopLevelElementMatchSelectors) : topLevelFilters,
Copy link
Contributor

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 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@Nurdok Nurdok merged commit 95b774d into salto-io:main Feb 26, 2025
55 checks passed
@Nurdok Nurdok deleted the feature/SALTO-7272-createDiffChanges branch February 26, 2025 07:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants