-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d91661
commit f91adf0
Showing
4 changed files
with
161 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package lbl | ||
|
||
import "github.com/jesseduffield/lazygit/pkg/utils" | ||
|
||
func calculateOrigin(currentOrigin int, bufferHeight int, firstLineIdx int, lastLineIdx int, selectedLineIdx int, mode selectMode) int { | ||
needToSeeIdx, wantToSeeIdx := getNeedAndWantLineIdx(firstLineIdx, lastLineIdx, selectedLineIdx, mode) | ||
|
||
return calculateNewOriginWithNeededAndWantedIdx(currentOrigin, bufferHeight, needToSeeIdx, wantToSeeIdx) | ||
} | ||
|
||
// we want to scroll our origin so that the index we need to see is in view | ||
// and the other index we want to see (e.g. the other side of a line range) | ||
// is in as close to being in view as possible. | ||
func calculateNewOriginWithNeededAndWantedIdx(currentOrigin int, bufferHeight int, needToSeeIdx int, wantToSeeIdx int) int { | ||
origin := currentOrigin | ||
if needToSeeIdx < currentOrigin { | ||
origin = needToSeeIdx | ||
} else if needToSeeIdx > currentOrigin+bufferHeight { | ||
origin = needToSeeIdx - bufferHeight | ||
} | ||
|
||
bottom := origin + bufferHeight | ||
|
||
if wantToSeeIdx < origin { | ||
requiredChange := origin - wantToSeeIdx | ||
allowedChange := bottom - needToSeeIdx | ||
return origin - utils.Min(requiredChange, allowedChange) | ||
} else if wantToSeeIdx > origin+bufferHeight { | ||
requiredChange := wantToSeeIdx - bottom | ||
allowedChange := needToSeeIdx - origin | ||
return origin + utils.Min(requiredChange, allowedChange) | ||
} else { | ||
return origin | ||
} | ||
} | ||
|
||
func getNeedAndWantLineIdx(firstLineIdx int, lastLineIdx int, selectedLineIdx int, mode selectMode) (int, int) { | ||
switch mode { | ||
case LINE: | ||
return selectedLineIdx, selectedLineIdx | ||
case RANGE: | ||
if selectedLineIdx == firstLineIdx { | ||
return firstLineIdx, lastLineIdx | ||
} else { | ||
return lastLineIdx, firstLineIdx | ||
} | ||
case HUNK: | ||
return firstLineIdx, lastLineIdx | ||
default: | ||
panic("unknown mode") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package lbl | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestNewOrigin(t *testing.T) { | ||
type scenario struct { | ||
name string | ||
origin int | ||
bufferHeight int | ||
firstLineIdx int | ||
lastLineIdx int | ||
selectedLineIdx int | ||
selectMode selectMode | ||
expected int | ||
} | ||
|
||
scenarios := []scenario{ | ||
{ | ||
name: "selection above scroll window", | ||
origin: 50, | ||
bufferHeight: 100, | ||
firstLineIdx: 10, | ||
lastLineIdx: 10, | ||
selectedLineIdx: 10, | ||
selectMode: LINE, | ||
expected: 10, | ||
}, | ||
{ | ||
name: "selection below scroll window", | ||
origin: 0, | ||
bufferHeight: 100, | ||
firstLineIdx: 150, | ||
lastLineIdx: 150, | ||
selectedLineIdx: 150, | ||
selectMode: LINE, | ||
expected: 50, | ||
}, | ||
{ | ||
name: "selection within scroll window", | ||
origin: 0, | ||
bufferHeight: 100, | ||
firstLineIdx: 50, | ||
lastLineIdx: 50, | ||
selectedLineIdx: 50, | ||
selectMode: LINE, | ||
expected: 0, | ||
}, | ||
{ | ||
name: "range ending below scroll window with selection at end of range", | ||
origin: 0, | ||
bufferHeight: 100, | ||
firstLineIdx: 40, | ||
lastLineIdx: 150, | ||
selectedLineIdx: 150, | ||
selectMode: RANGE, | ||
expected: 50, | ||
}, | ||
{ | ||
name: "range ending below scroll window with selection at beginning of range", | ||
origin: 0, | ||
bufferHeight: 100, | ||
firstLineIdx: 40, | ||
lastLineIdx: 150, | ||
selectedLineIdx: 40, | ||
selectMode: RANGE, | ||
expected: 40, | ||
}, | ||
{ | ||
name: "range starting above scroll window with selection at beginning of range", | ||
origin: 50, | ||
bufferHeight: 100, | ||
firstLineIdx: 40, | ||
lastLineIdx: 150, | ||
selectedLineIdx: 40, | ||
selectMode: RANGE, | ||
expected: 40, | ||
}, | ||
{ | ||
name: "hunk extending beyond both bounds of scroll window", | ||
origin: 50, | ||
bufferHeight: 100, | ||
firstLineIdx: 40, | ||
lastLineIdx: 200, | ||
selectedLineIdx: 70, | ||
selectMode: HUNK, | ||
expected: 40, | ||
}, | ||
} | ||
|
||
for _, s := range scenarios { | ||
s := s | ||
t.Run(s.name, func(t *testing.T) { | ||
assert.EqualValues(t, s.expected, calculateOrigin(s.origin, s.bufferHeight, s.firstLineIdx, s.lastLineIdx, s.selectedLineIdx, s.selectMode)) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters