1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
"""Collapsible staged / unstaged / untracked file list with keyboard control."""
from __future__ import annotations
from dataclasses import dataclass
from enum import Enum
from typing import Literal
from pygit2 import Repository
from unicurses import ( # type: ignore[import-untyped]
A_REVERSE,
KEY_BACKSPACE,
KEY_DOWN,
KEY_ENTER,
KEY_LEFT,
KEY_RESIZE,
KEY_RIGHT,
KEY_UP,
)
from pygittools.tui.draw import draw_line
from pygittools.tui.worktree import (
categorize_status,
commit_staged,
stage_path,
stage_paths,
unstage_path,
unstage_paths,
)
_COMMIT_PREFIX = "Commit: "
class SectionId(Enum):
STAGED = "staged"
UNSTAGED = "unstaged"
UNTRACKED = "untracked"
@dataclass(frozen=True, slots=True)
class _Row:
kind: Literal["commit", "header", "file"]
section: SectionId | None
path: str | None
label: str
_SECTION_ORDER: tuple[tuple[SectionId, str], ...] = (
(SectionId.STAGED, "Staged"),
(SectionId.UNSTAGED, "Unstaged"),
(SectionId.UNTRACKED, "Untracked"),
)
class ChangesList:
def __init__(self) -> None:
self._collapsed: dict[SectionId, bool] = dict.fromkeys(SectionId, False)
self._cursor = 0
self._scroll_offset = 0
self._rows: list[_Row] = []
self._commit_message = ""
self._error: str | None = None
self._staged_count = 0
def is_at_top(self) -> bool:
return self._cursor == 0
def refresh(self, repo: Repository) -> None:
staged, unstaged, untracked = categorize_status(repo)
self._staged_count = len(staged)
files_by_section = {
SectionId.STAGED: staged,
SectionId.UNSTAGED: unstaged,
SectionId.UNTRACKED: untracked,
}
rows: list[_Row] = [
_Row(
kind="commit",
section=None,
path=None,
label=self._commit_label(width=120, focused=False),
),
]
for section_id, title in _SECTION_ORDER:
files = files_by_section[section_id]
marker = ">" if self._collapsed[section_id] else "v"
rows.append(
_Row(
kind="header",
section=section_id,
path=None,
label=f"[{marker}] {title} ({len(files)})",
),
)
if not self._collapsed[section_id]:
for path in files:
rows.append(_Row(kind="file", section=section_id, path=path, label=f" {path}"))
self._rows = rows
self._cursor = min(self._cursor, max(0, len(self._rows) - 1))
def draw(self, top_row: int, height: int, width: int, *, highlight: bool = True) -> None:
if height <= 0:
return
self._ensure_cursor_visible(height)
for view_row in range(height):
row_index = self._scroll_offset + view_row
if row_index >= len(self._rows):
break
row = self._rows[row_index]
focused = row_index == self._cursor
label = self._commit_label(width, focused and highlight) if row.kind == "commit" else row.label
attr = A_REVERSE if focused and highlight else 0
draw_line(top_row + view_row, 0, label, width, attr)
def handle_key(self, key: int, repo: Repository) -> bool:
"""Handle a key press. Returns True when the list layout may have changed."""
if key == KEY_RESIZE:
return False
if self._error is not None and key not in (KEY_RESIZE,):
self._error = None
if key in (KEY_UP, ord("k"), ord("K")):
self._cursor = max(0, self._cursor - 1)
return False
if key in (KEY_DOWN, ord("j"), ord("J")):
self._cursor = min(max(0, len(self._rows) - 1), self._cursor + 1)
return False
if not self._rows:
return False
row = self._rows[self._cursor]
if row.kind == "commit":
return self._handle_commit_key(key, repo)
if key in (KEY_LEFT, KEY_RIGHT, ord(" ")) and row.kind == "header" and row.section is not None:
self._collapsed[row.section] = not self._collapsed[row.section]
self.refresh(repo)
return True
if key in (KEY_ENTER, 10, 13) and row.kind == "header" and row.section is not None:
self._toggle_section(repo, row.section)
self.refresh(repo)
return True
if key in (KEY_ENTER, 10, 13) and row.kind == "file" and row.path is not None and row.section is not None:
self._toggle_stage(repo, row.section, row.path)
self.refresh(repo)
return True
return False
def status_hint(self) -> str:
if self._error:
return self._error
if not self._rows:
return "Working tree clean"
row = self._rows[self._cursor]
if row.kind == "commit":
return "Type message — Enter commit — j/k move"
if row.kind == "header":
if row.section == SectionId.STAGED:
if self._staged_count == 0:
return "Enter stage all — Space collapse — j/k move"
return "Enter unstage all — Space collapse — j/k move"
return "Enter stage all — Space collapse — j/k move"
if row.section == SectionId.STAGED:
return "Enter unstage — j/k move"
return "Enter stage — j/k move"
def _handle_commit_key(self, key: int, repo: Repository) -> bool:
if key in (KEY_ENTER, 10, 13):
ok, error = commit_staged(repo, self._commit_message)
if ok:
self._commit_message = ""
self._error = None
self.refresh(repo)
return True
self._error = error
return False
if key in (KEY_BACKSPACE, 127, 8):
self._commit_message = self._commit_message[:-1]
return False
if 32 <= key <= 126:
self._commit_message += chr(key)
return False
return False
def _commit_label(self, width: int, focused: bool) -> str:
max_message = max(0, width - len(_COMMIT_PREFIX) - (1 if focused else 0))
message = self._commit_message
if len(message) > max_message:
message = message[-max_message:]
label = f"{_COMMIT_PREFIX}{message}"
if focused:
label += "_"
return label[:width]
def _toggle_stage(self, repo: Repository, section: SectionId, path: str) -> None:
if section == SectionId.STAGED:
unstage_path(repo, path)
else:
stage_path(repo, path)
def _toggle_section(self, repo: Repository, section: SectionId) -> None:
staged, unstaged, untracked = categorize_status(repo)
paths_by_section = {
SectionId.STAGED: staged,
SectionId.UNSTAGED: unstaged,
SectionId.UNTRACKED: untracked,
}
paths = paths_by_section[section]
if section == SectionId.STAGED:
if paths:
unstage_paths(repo, paths)
else:
stage_paths(repo, unstaged + untracked)
else:
stage_paths(repo, paths)
def _ensure_cursor_visible(self, height: int) -> None:
if self._cursor < self._scroll_offset:
self._scroll_offset = self._cursor
elif self._cursor >= self._scroll_offset + height:
self._scroll_offset = self._cursor - height + 1