all repos — legit @ 263a1509dbd79b1df3abe1bd42e2cd5d45448dea

fork of git.icyphox.sh/legit

diff: show diff type
Anirudh Oppiliappan x@icyphox.sh
Mon, 19 Dec 2022 18:07:13 +0530
commit

263a1509dbd79b1df3abe1bd42e2cd5d45448dea

parent

194ec63d81ed7c8d6f63945139ea6d0bdfc597b3

3 files changed, 18 insertions(+), 1 deletions(-)

jump to
M git/diff.gogit/diff.go

@@ -21,6 +21,8 @@ New string

} TextFragments []TextFragment IsBinary bool + IsNew bool + IsDelete bool } // A nicer git diff representation.

@@ -90,6 +92,8 @@ ndiff := Diff{}

ndiff.Name.New = d.NewName ndiff.Name.Old = d.OldName ndiff.IsBinary = d.IsBinary + ndiff.IsNew = d.IsNew + ndiff.IsDelete = d.IsDelete for _, tf := range d.TextFragments { ndiff.TextFragments = append(ndiff.TextFragments, TextFragment{
M static/style.cssstatic/style.css

@@ -238,6 +238,10 @@ background: var(--light-gray);

overflow: scroll; } +.diff-type { + color: var(--gray); +} + .commit-info { color: var(--gray); padding-bottom: 1.5rem;
M templates/commit.htmltemplates/commit.html

@@ -46,8 +46,17 @@ <section>

{{ $repo := .name }} {{ $this := .commit.This }} {{ range .diff }} - <div class="diff"> <div id="{{ .Name.New }}"> + <div class="diff"> + {{ if .IsNew }} + <span class="diff-type">A</span> + {{ end }} + {{ if .IsDelete }} + <span class="diff-type">D</span> + {{ end }} + {{ if not (or .IsNew .IsDelete) }} + <span class="diff-type">M</span> + {{ end }} {{ if .Name.Old }} <a href="/{{ $repo }}/blob/{{ $this }}/{{ .Name.Old }}">{{ .Name.Old }}</a> {{ if .Name.New }}