gitmaps 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +167 -0
- package/app/api/auth/favorites/route.ts +56 -0
- package/app/api/auth/github/callback/route.ts +103 -0
- package/app/api/auth/github/route.ts +32 -0
- package/app/api/auth/me/route.ts +52 -0
- package/app/api/auth/positions/route.ts +50 -0
- package/app/api/chat/route.ts +101 -0
- package/app/api/connections/route.ts +72 -0
- package/app/api/github/repos/route.ts +111 -0
- package/app/api/positions/route.ts +80 -0
- package/app/api/repo/branch-diff/route.ts +201 -0
- package/app/api/repo/branches/route.ts +53 -0
- package/app/api/repo/browse/route.ts +55 -0
- package/app/api/repo/clone/route.ts +78 -0
- package/app/api/repo/clone-stream/route.ts +131 -0
- package/app/api/repo/file-content/route.ts +28 -0
- package/app/api/repo/file-delete/route.ts +62 -0
- package/app/api/repo/file-history/route.ts +45 -0
- package/app/api/repo/file-rename/route.ts +83 -0
- package/app/api/repo/file-save/route.ts +45 -0
- package/app/api/repo/files/route.ts +169 -0
- package/app/api/repo/git-blame/route.ts +86 -0
- package/app/api/repo/git-commit/route.ts +40 -0
- package/app/api/repo/git-heatmap/route.ts +55 -0
- package/app/api/repo/imports/route.ts +154 -0
- package/app/api/repo/load/route.ts +56 -0
- package/app/api/repo/mode/route.ts +14 -0
- package/app/api/repo/search/route.ts +127 -0
- package/app/api/repo/tree/route.ts +104 -0
- package/app/api/repo/upload/route.ts +53 -0
- package/app/api/repo/validate-path.ts +53 -0
- package/app/canvas_users.db +0 -0
- package/app/canvas_users.db-shm +0 -0
- package/app/canvas_users.db-wal +0 -0
- package/app/globals.css +7899 -0
- package/app/layout.tsx +493 -0
- package/app/lib/auth.ts +193 -0
- package/app/lib/auto-save.ts +137 -0
- package/app/lib/branch-compare.ts +443 -0
- package/app/lib/breadcrumbs.ts +170 -0
- package/app/lib/canvas-export.ts +358 -0
- package/app/lib/canvas-text.ts +912 -0
- package/app/lib/canvas.ts +564 -0
- package/app/lib/card-arrangement.ts +188 -0
- package/app/lib/card-context-menu.tsx +453 -0
- package/app/lib/card-diff-markers.ts +270 -0
- package/app/lib/card-expand.ts +189 -0
- package/app/lib/card-groups.ts +246 -0
- package/app/lib/cards.tsx +914 -0
- package/app/lib/chat.tsx +308 -0
- package/app/lib/code-editor.ts +508 -0
- package/app/lib/command-palette.ts +262 -0
- package/app/lib/connections.tsx +1037 -0
- package/app/lib/context.ts +94 -0
- package/app/lib/cursor-sharing.ts +281 -0
- package/app/lib/dependency-graph.ts +438 -0
- package/app/lib/events.tsx +1747 -0
- package/app/lib/file-card-plugin.ts +134 -0
- package/app/lib/file-modal.tsx +849 -0
- package/app/lib/file-preview.ts +400 -0
- package/app/lib/file-tabs.ts +318 -0
- package/app/lib/galaxydraw-bridge.ts +477 -0
- package/app/lib/galaxydraw.test.ts +229 -0
- package/app/lib/global-search.ts +264 -0
- package/app/lib/goto-definition.ts +224 -0
- package/app/lib/heatmap.ts +178 -0
- package/app/lib/hidden-files.tsx +222 -0
- package/app/lib/layers.ts +0 -0
- package/app/lib/layers.tsx +365 -0
- package/app/lib/loading.tsx +45 -0
- package/app/lib/multi-repo.ts +286 -0
- package/app/lib/new-file-dialog.tsx +230 -0
- package/app/lib/onboarding.tsx +213 -0
- package/app/lib/perf-overlay.ts +360 -0
- package/app/lib/positions.ts +176 -0
- package/app/lib/pr-review.ts +374 -0
- package/app/lib/production-mode.ts +47 -0
- package/app/lib/repo.tsx +977 -0
- package/app/lib/settings-modal.tsx +374 -0
- package/app/lib/settings.ts +97 -0
- package/app/lib/shortcuts-panel.ts +141 -0
- package/app/lib/status-bar.ts +128 -0
- package/app/lib/symbol-outline.ts +212 -0
- package/app/lib/syntax.ts +177 -0
- package/app/lib/tab-diff.ts +238 -0
- package/app/lib/user.tsx +133 -0
- package/app/lib/utils.ts +78 -0
- package/app/lib/viewport-culling.ts +728 -0
- package/app/page.client.tsx +215 -0
- package/app/page.tsx +291 -0
- package/app/state/machine.js +196 -0
- package/app/styles/main.css +2168 -0
- package/banner.png +0 -0
- package/cli.ts +44 -0
- package/package.json +75 -0
- package/packages/galaxydraw/README.md +296 -0
- package/packages/galaxydraw/banner.png +0 -0
- package/packages/galaxydraw/demo/build-static.ts +100 -0
- package/packages/galaxydraw/demo/client.ts +154 -0
- package/packages/galaxydraw/demo/dist/client.js +8 -0
- package/packages/galaxydraw/demo/index.html +256 -0
- package/packages/galaxydraw/demo/server.ts +96 -0
- package/packages/galaxydraw/dist/index.js +984 -0
- package/packages/galaxydraw/dist/index.js.map +16 -0
- package/packages/galaxydraw/node_modules/.bin/tsc.bunx +0 -0
- package/packages/galaxydraw/node_modules/.bin/tsc.exe +0 -0
- package/packages/galaxydraw/node_modules/.bin/tsserver.bunx +0 -0
- package/packages/galaxydraw/node_modules/.bin/tsserver.exe +0 -0
- package/packages/galaxydraw/package.json +49 -0
- package/packages/galaxydraw/perf.test.ts +284 -0
- package/packages/galaxydraw/src/core/cards.ts +435 -0
- package/packages/galaxydraw/src/core/engine.ts +339 -0
- package/packages/galaxydraw/src/core/events.ts +81 -0
- package/packages/galaxydraw/src/core/layout.ts +136 -0
- package/packages/galaxydraw/src/core/minimap.ts +216 -0
- package/packages/galaxydraw/src/core/state.ts +177 -0
- package/packages/galaxydraw/src/core/viewport.ts +106 -0
- package/packages/galaxydraw/src/galaxydraw.css +166 -0
- package/packages/galaxydraw/src/index.ts +40 -0
- package/packages/galaxydraw/tsconfig.json +30 -0
- package/server.ts +62 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { createMachine, assign } from 'xstate';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Git Canvas state machine.
|
|
5
|
+
*
|
|
6
|
+
* Parallel regions:
|
|
7
|
+
* - repo: manages repository loading lifecycle
|
|
8
|
+
* - view: which canvas content is shown (commits diff vs all files)
|
|
9
|
+
* - canvasMode: interaction mode on the canvas (pan/select/resize/connect)
|
|
10
|
+
* - connection: connection creation flow (only active in connect mode)
|
|
11
|
+
*/
|
|
12
|
+
export const canvasMachine = createMachine({
|
|
13
|
+
id: 'gitcanvas',
|
|
14
|
+
type: 'parallel',
|
|
15
|
+
context: {
|
|
16
|
+
// Repo
|
|
17
|
+
repoPath: '',
|
|
18
|
+
commits: [],
|
|
19
|
+
currentCommitHash: null,
|
|
20
|
+
commitFiles: [],
|
|
21
|
+
|
|
22
|
+
// All files
|
|
23
|
+
allFiles: [],
|
|
24
|
+
|
|
25
|
+
// Canvas
|
|
26
|
+
zoom: 1,
|
|
27
|
+
offsetX: 0,
|
|
28
|
+
offsetY: 0,
|
|
29
|
+
selectedCards: [], // file paths of selected cards
|
|
30
|
+
|
|
31
|
+
// Connections
|
|
32
|
+
connections: [],
|
|
33
|
+
pendingConnection: null, // { sourceFile, sourceLineStart, sourceLineEnd }
|
|
34
|
+
|
|
35
|
+
// Card sizes
|
|
36
|
+
cardSizes: {},
|
|
37
|
+
|
|
38
|
+
// Scroll positions
|
|
39
|
+
scrollPositions: {},
|
|
40
|
+
|
|
41
|
+
// Error
|
|
42
|
+
error: null,
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
states: {
|
|
46
|
+
repo: {
|
|
47
|
+
initial: 'idle',
|
|
48
|
+
states: {
|
|
49
|
+
idle: {
|
|
50
|
+
on: {
|
|
51
|
+
LOAD_REPO: {
|
|
52
|
+
target: 'loading',
|
|
53
|
+
actions: assign({ repoPath: ({ event }) => event.path, error: null }),
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
loading: {
|
|
58
|
+
on: {
|
|
59
|
+
REPO_LOADED: {
|
|
60
|
+
target: 'loaded',
|
|
61
|
+
actions: assign({
|
|
62
|
+
commits: ({ event }) => event.commits,
|
|
63
|
+
currentCommitHash: ({ event }) => event.commits.length > 0 ? event.commits[0].hash : null,
|
|
64
|
+
}),
|
|
65
|
+
},
|
|
66
|
+
REPO_ERROR: {
|
|
67
|
+
target: 'error',
|
|
68
|
+
actions: assign({ error: ({ event }) => event.error }),
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
loaded: {
|
|
73
|
+
on: {
|
|
74
|
+
LOAD_REPO: {
|
|
75
|
+
target: 'loading',
|
|
76
|
+
actions: assign({ repoPath: ({ event }) => event.path, error: null }),
|
|
77
|
+
},
|
|
78
|
+
SELECT_COMMIT: {
|
|
79
|
+
actions: assign({ currentCommitHash: ({ event }) => event.hash }),
|
|
80
|
+
},
|
|
81
|
+
COMMIT_FILES_LOADED: {
|
|
82
|
+
actions: assign({ commitFiles: ({ event }) => event.files }),
|
|
83
|
+
},
|
|
84
|
+
ALL_FILES_LOADED: {
|
|
85
|
+
actions: assign({ allFiles: ({ event }) => event.files }),
|
|
86
|
+
},
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
error: {
|
|
90
|
+
on: {
|
|
91
|
+
LOAD_REPO: {
|
|
92
|
+
target: 'loading',
|
|
93
|
+
actions: assign({ repoPath: ({ event }) => event.path, error: null }),
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
view: {
|
|
101
|
+
initial: 'commits',
|
|
102
|
+
states: {
|
|
103
|
+
commits: {
|
|
104
|
+
on: {
|
|
105
|
+
SWITCH_TO_ALLFILES: 'allfiles',
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
allfiles: {
|
|
109
|
+
on: {
|
|
110
|
+
SWITCH_TO_COMMITS: 'commits',
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
on: {
|
|
118
|
+
// Global events — available in any state
|
|
119
|
+
SET_ZOOM: {
|
|
120
|
+
actions: assign({ zoom: ({ event }) => event.zoom }),
|
|
121
|
+
},
|
|
122
|
+
SET_OFFSET: {
|
|
123
|
+
actions: assign({
|
|
124
|
+
offsetX: ({ event }) => event.x,
|
|
125
|
+
offsetY: ({ event }) => event.y,
|
|
126
|
+
}),
|
|
127
|
+
},
|
|
128
|
+
SELECT_CARD: {
|
|
129
|
+
actions: assign({
|
|
130
|
+
selectedCards: ({ context, event }) => {
|
|
131
|
+
if (event.shift) {
|
|
132
|
+
const idx = context.selectedCards.indexOf(event.path);
|
|
133
|
+
if (idx >= 0) {
|
|
134
|
+
return context.selectedCards.filter(p => p !== event.path);
|
|
135
|
+
}
|
|
136
|
+
return [...context.selectedCards, event.path];
|
|
137
|
+
}
|
|
138
|
+
return [event.path];
|
|
139
|
+
}
|
|
140
|
+
}),
|
|
141
|
+
},
|
|
142
|
+
DESELECT_ALL: {
|
|
143
|
+
actions: assign({ selectedCards: [] }),
|
|
144
|
+
},
|
|
145
|
+
RESIZE_CARD: {
|
|
146
|
+
actions: assign({
|
|
147
|
+
cardSizes: ({ context, event }) => ({
|
|
148
|
+
...context.cardSizes,
|
|
149
|
+
[event.path]: { width: event.width, height: event.height }
|
|
150
|
+
})
|
|
151
|
+
}),
|
|
152
|
+
},
|
|
153
|
+
START_CONNECTION: {
|
|
154
|
+
actions: assign({
|
|
155
|
+
pendingConnection: ({ event }) => ({
|
|
156
|
+
sourceFile: event.sourceFile,
|
|
157
|
+
sourceLineStart: event.lineStart,
|
|
158
|
+
sourceLineEnd: event.lineEnd,
|
|
159
|
+
})
|
|
160
|
+
}),
|
|
161
|
+
},
|
|
162
|
+
COMPLETE_CONNECTION: {
|
|
163
|
+
actions: assign({
|
|
164
|
+
connections: ({ context, event }) => {
|
|
165
|
+
if (!context.pendingConnection) return context.connections;
|
|
166
|
+
return [...context.connections, {
|
|
167
|
+
id: `conn-${Date.now()}`,
|
|
168
|
+
...context.pendingConnection,
|
|
169
|
+
targetFile: event.targetFile,
|
|
170
|
+
targetLineStart: event.lineStart,
|
|
171
|
+
targetLineEnd: event.lineEnd,
|
|
172
|
+
comment: event.comment || '',
|
|
173
|
+
}];
|
|
174
|
+
},
|
|
175
|
+
pendingConnection: null,
|
|
176
|
+
}),
|
|
177
|
+
},
|
|
178
|
+
CANCEL_CONNECTION: {
|
|
179
|
+
actions: assign({ pendingConnection: null }),
|
|
180
|
+
},
|
|
181
|
+
DELETE_CONNECTION: {
|
|
182
|
+
actions: assign({
|
|
183
|
+
connections: ({ context, event }) =>
|
|
184
|
+
context.connections.filter(c => c.id !== event.id)
|
|
185
|
+
}),
|
|
186
|
+
},
|
|
187
|
+
SAVE_SCROLL: {
|
|
188
|
+
actions: assign({
|
|
189
|
+
scrollPositions: ({ context, event }) => ({
|
|
190
|
+
...context.scrollPositions,
|
|
191
|
+
[event.path]: event.scrollTop,
|
|
192
|
+
})
|
|
193
|
+
}),
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
});
|