-
Notifications
You must be signed in to change notification settings - Fork 933
Expand file tree
/
Copy pathHunkContextMenu.svelte
More file actions
273 lines (243 loc) · 7.52 KB
/
HunkContextMenu.svelte
File metadata and controls
273 lines (243 loc) · 7.52 KB
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<script lang="ts" module>
export interface HunkContextItem {
hunk: DiffHunk;
selectedLines: LineId[] | undefined;
beforeLineNumber: number | undefined;
afterLineNumber: number | undefined;
}
export function isHunkContextItem(item: unknown): item is HunkContextItem {
return typeof item === "object" && item !== null && "hunk" in item && isDiffHunk(item.hunk);
}
</script>
<script lang="ts">
import IrcSendToSubmenus from "$components/diff/IrcSendToSubmenus.svelte";
import { getEditorUri, URL_SERVICE } from "$lib/backend/url";
import { isDiffHunk, lineIdsToHunkHeaders, type DiffHunk } from "$lib/hunks/hunk";
import { IRC_API_SERVICE } from "$lib/irc/ircApiService";
import { vscodePath } from "$lib/project/project";
import { PROJECTS_SERVICE } from "$lib/project/projectsService";
import { SETTINGS } from "$lib/settings/userSettings";
import { STACK_SERVICE } from "$lib/stacks/stackService.svelte";
import { UI_STATE } from "$lib/state/uiState.svelte";
import { inject } from "@gitbutler/core/context";
import { ContextMenu, ContextMenuItem, ContextMenuSection, TestId } from "@gitbutler/ui";
import type { TreeChange } from "$lib/hunks/change";
import type { LineId } from "@gitbutler/ui/utils/diffParsing";
interface Props {
trigger: HTMLElement | undefined;
projectId: string;
change: TreeChange;
stackId?: string;
commitId?: string;
discardable: boolean;
selectable: boolean;
selectAllHunkLines: (hunk: DiffHunk) => void;
unselectAllHunkLines: (hunk: DiffHunk) => void;
invertHunkSelection: (hunk: DiffHunk) => void;
}
const {
trigger,
projectId,
change,
stackId,
commitId,
discardable,
selectable,
selectAllHunkLines,
unselectAllHunkLines,
invertHunkSelection,
}: Props = $props();
const stackService = inject(STACK_SERVICE);
const uiState = inject(UI_STATE);
const ircApiService = inject(IRC_API_SERVICE);
const projectService = inject(PROJECTS_SERVICE);
const urlService = inject(URL_SERVICE);
const userSettings = inject(SETTINGS);
const filePath = $derived(change.path);
let contextMenu: ReturnType<typeof ContextMenu> | undefined;
function getDiscardLineLabel(item: HunkContextItem) {
const { selectedLines } = item;
if (selectedLines !== undefined && selectedLines.length > 0)
return `Discard ${selectedLines.length} selected lines`;
return "";
}
async function discardHunk(item: HunkContextItem) {
const previousPathBytes =
change.status.type === "Rename" ? change.status.subject.previousPathBytes : null;
unselectAllHunkLines(item.hunk);
const isWholeFileChange =
change.status.type === "Addition" || change.status.type === "Deletion";
await stackService.discardChanges({
projectId,
worktreeChanges: [
{
previousPathBytes,
pathBytes: change.pathBytes,
hunkHeaders: isWholeFileChange ? [] : [item.hunk],
},
],
});
}
async function discardHunkLines(item: HunkContextItem) {
if (item.selectedLines === undefined || item.selectedLines.length === 0) return;
const previousPathBytes =
change.status.type === "Rename" ? change.status.subject.previousPathBytes : null;
unselectAllHunkLines(item.hunk);
await stackService.discardChanges({
projectId,
worktreeChanges: [
{
previousPathBytes,
pathBytes: change.pathBytes,
hunkHeaders: lineIdsToHunkHeaders(item.selectedLines, item.hunk.diff, "discard"),
},
],
});
}
async function uncommitHunk(item: HunkContextItem) {
if (!(stackId && commitId)) return;
const previousPathBytes =
change.status.type === "Rename" ? change.status.subject.previousPathBytes : null;
unselectAllHunkLines(item.hunk);
const isWholeFileChange =
change.status.type === "Addition" || change.status.type === "Deletion";
const { replacedCommits } = await stackService.uncommitChanges({
projectId,
stackId,
commitId,
changes: [
{
previousPathBytes,
pathBytes: change.pathBytes,
hunkHeaders: isWholeFileChange ? [] : [item.hunk],
},
],
});
const replacementCommit = replacedCommits.find(([before]) => before === commitId)?.[1];
const selection = uiState.lane(stackId).selection.current;
if (replacementCommit && selection) {
uiState.lane(stackId).selection.set({ ...selection, commitId: replacementCommit });
}
contextMenu?.close();
}
export function open(e: MouseEvent | HTMLElement | undefined, item: HunkContextItem) {
contextMenu?.open(e, item);
}
export function close() {
contextMenu?.close();
}
</script>
<ContextMenu
testId={TestId.HunkContextMenu}
bind:this={contextMenu}
rightClickTrigger={trigger}
align="start"
side="bottom"
>
{#snippet children(item)}
{#if isHunkContextItem(item)}
{#if discardable}
<ContextMenuSection>
<ContextMenuItem
testId={TestId.HunkContextMenu_DiscardChange}
label="Discard change"
icon="bin"
onclick={() => {
discardHunk(item);
contextMenu?.close();
}}
/>
{#if item.selectedLines !== undefined && item.selectedLines.length > 0 && change.status.type !== "Addition" && change.status.type !== "Deletion"}
<ContextMenuItem
testId={TestId.HunkContextMenu_DiscardLines}
label={getDiscardLineLabel(item)}
icon="checklist-remove"
onclick={() => {
discardHunkLines(item);
contextMenu?.close();
}}
/>
{/if}
</ContextMenuSection>
{/if}
{#if stackId && commitId}
<ContextMenuSection>
<ContextMenuItem
label="Uncommit changes"
icon="commit-undo"
onclick={async () => {
await uncommitHunk(item);
}}
/>
</ContextMenuSection>
{/if}
<ContextMenuSection>
<ContextMenuItem
testId={TestId.HunkContextMenu_OpenInEditor}
label="Open in {$userSettings.defaultCodeEditor.displayName}"
icon="open-in-ide"
onclick={async () => {
const project = await projectService.fetchProject(projectId);
if (project?.path) {
// Use specific line number if available, otherwise use hunk start line
const lineNumber =
item.beforeLineNumber ?? item.afterLineNumber ?? item.hunk.newStart;
const path = getEditorUri({
schemeId: $userSettings.defaultCodeEditor.schemeIdentifer,
path: [vscodePath(project.path), filePath],
line: lineNumber,
});
urlService.openExternalUrl(path);
}
contextMenu?.close();
}}
/>
</ContextMenuSection>
<IrcSendToSubmenus
{projectId}
onSend={(target) => {
const data = JSON.stringify({ change, diff: item.hunk });
ircApiService.sendMessageWithData({
target,
message: change.path,
data,
});
}}
closeMenu={() => contextMenu?.close()}
/>
{#if selectable}
<ContextMenuSection>
<ContextMenuItem
testId={TestId.HunkContextMenu_SelectAll}
label="Select all"
icon="select-all"
onclick={() => {
selectAllHunkLines(item.hunk);
contextMenu?.close();
}}
/>
<ContextMenuItem
testId={TestId.HunkContextMenu_UnselectAll}
label="Unselect all"
icon="select-all-remove"
onclick={() => {
unselectAllHunkLines(item.hunk);
contextMenu?.close();
}}
/>
<ContextMenuItem
testId={TestId.HunkContextMenu_InvertSelection}
label="Invert selection"
icon="select-all-inverse"
onclick={() => {
invertHunkSelection(item.hunk);
contextMenu?.close();
}}
/>
</ContextMenuSection>
{/if}
{:else}
<p class="text-12 text-semibold clr-text-2">Malformed item (·•᷄ࡇ•᷅ )</p>
{/if}
{/snippet}
</ContextMenu>