-
Notifications
You must be signed in to change notification settings - Fork 343
/
Copy pathGitPanel.tsx
631 lines (581 loc) · 14.9 KB
/
GitPanel.tsx
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
import * as React from 'react';
import Tab from '@material-ui/core/Tab';
import Tabs from '@material-ui/core/Tabs';
import { showDialog, showErrorMessage } from '@jupyterlab/apputils';
import { PathExt } from '@jupyterlab/coreutils';
import { FileBrowserModel } from '@jupyterlab/filebrowser';
import { IRenderMimeRegistry } from '@jupyterlab/rendermime';
import { ISettingRegistry } from '@jupyterlab/settingregistry';
import { GitExtension } from '../model';
import { sleep } from '../utils';
import { Git, ILogMessage } from '../tokens';
import { GitAuthorForm } from '../widgets/AuthorBox';
import {
panelWrapperClass,
repoButtonClass,
selectedTabClass,
tabClass,
tabIndicatorClass,
tabsClass,
warningTextClass
} from '../style/GitPanel';
import { CommitBox } from './CommitBox';
import { FileList } from './FileList';
import { HistorySideBar } from './HistorySideBar';
import { Toolbar } from './Toolbar';
import { SuspendModal } from './SuspendModal';
import { Alert } from './Alert';
import { CommandIDs } from '../commandsAndMenu';
const MISSING_IDENTITY =
'Your name and email address were configured automatically';
/**
* Interface describing component properties.
*/
export interface IGitPanelProps {
/**
* Git extension data model.
*/
model: GitExtension;
/**
* MIME type registry.
*/
renderMime: IRenderMimeRegistry;
/**
* Git extension settings.
*/
settings: ISettingRegistry.ISettings;
/**
* File browser model.
*/
filebrowser: FileBrowserModel;
}
/**
* Interface describing component state.
*/
export interface IGitPanelState {
/**
* Boolean indicating whether the user is currently in a Git repository.
*/
inGitRepository: boolean;
/**
* List of branches.
*/
branches: Git.IBranch[];
/**
* Current branch.
*/
currentBranch: string;
/**
* List of changed files.
*/
files: Git.IStatusFile[];
/**
* List of prior commits.
*/
pastCommits: Git.ISingleCommitInfo[];
/**
* Panel tab identifier.
*/
tab: number;
/**
* Boolean indicating whether UI interaction should be suspended (e.g., due to pending command).
*/
suspend: boolean;
/**
* Boolean indicating whether to show an alert.
*/
alert: boolean;
/**
* Log message.
*/
log: ILogMessage;
}
/**
* React component for rendering a panel for performing Git operations.
*/
export class GitPanel extends React.Component<IGitPanelProps, IGitPanelState> {
/**
* Returns a React component for rendering a panel for performing Git operations.
*
* @param props - component properties
* @returns React component
*/
constructor(props: IGitPanelProps) {
super(props);
this.state = {
branches: [],
currentBranch: '',
files: [],
inGitRepository: false,
pastCommits: [],
tab: 0,
suspend: false,
alert: false,
log: {
severity: 'info',
message: ''
}
};
}
/**
* Callback invoked immediately after mounting a component (i.e., inserting into a tree).
*/
componentDidMount() {
const { model, settings } = this.props;
model.repositoryChanged.connect((_, args) => {
this.setState({
inGitRepository: args.newValue !== null
});
this.refresh();
}, this);
model.statusChanged.connect(() => {
this.setState({ files: model.status });
}, this);
model.headChanged.connect(async () => {
await this.refreshBranch();
if (this.state.tab === 1) {
this.refreshHistory();
} else {
this.refreshStatus();
}
}, this);
model.markChanged.connect(() => this.forceUpdate());
settings.changed.connect(this.refresh, this);
}
refreshBranch = async () => {
const { currentBranch } = this.props.model;
this.setState({
branches: this.props.model.branches,
currentBranch: currentBranch ? currentBranch.name : 'master'
});
};
refreshHistory = async () => {
if (this.props.model.pathRepository !== null) {
// Get git log for current branch
const logData = await this.props.model.log(
this.props.settings.composite['historyCount'] as number
);
let pastCommits = new Array<Git.ISingleCommitInfo>();
if (logData.code === 0) {
pastCommits = logData.commits;
}
this.setState({
pastCommits: pastCommits
});
}
};
refreshStatus = async () => {
await this.props.model.refreshStatus();
};
/**
* Refresh widget, update all content
*/
refresh = async () => {
if (this.props.model.pathRepository !== null) {
await this.refreshBranch();
await this.refreshHistory();
await this.refreshStatus();
}
};
/**
* Commits all marked files.
*
* @param message - commit message
* @returns a promise which commits the files
*/
commitMarkedFiles = async (message: string): Promise<void> => {
this._suspend(true);
this._log({
severity: 'info',
message: 'Staging files...'
});
await this.props.model.reset();
await this.props.model.add(...this._markedFiles.map(file => file.to));
await this.commitStagedFiles(message);
this._suspend(false);
};
/**
* Commits all staged files.
*
* @param message - commit message
* @returns a promise which commits the files
*/
commitStagedFiles = async (message: string): Promise<void> => {
let res: Response;
if (!message) {
return;
}
this._log({
severity: 'info',
message: 'Committing changes...'
});
this._suspend(true);
try {
[, res] = await Promise.all<any, Response>([
sleep(1000),
this.props.model.commit(message)
]);
} catch (err) {
this._suspend(false);
this._log({
severity: 'error',
message: 'Failed to commit changes.'
});
console.error(err);
showErrorMessage('Fail to commit', err);
return;
}
this._suspend(false);
this._log({
severity: 'success',
message: 'Committed changes.'
});
const { output } = await res.json();
if (output.indexOf(MISSING_IDENTITY) !== -1) {
await this._setIdentity(this.props.model.pathRepository);
}
};
/**
* Renders the component.
*
* @returns React element
*/
render(): React.ReactElement {
return (
<div className={panelWrapperClass}>
{this.state.inGitRepository ? (
<React.Fragment>
{this._renderToolbar()}
{this._renderMain()}
{this._renderFeedback()}
</React.Fragment>
) : (
this._renderWarning()
)}
</div>
);
}
/**
* Renders a toolbar.
*
* @returns React element
*/
private _renderToolbar(): React.ReactElement {
const disableBranching = Boolean(
this.props.settings.composite['disableBranchWithChanges'] &&
(this._hasUnStagedFile() || this._hasStagedFile())
);
return (
<Toolbar
model={this.props.model}
branching={!disableBranching}
refresh={this._onRefresh}
suspend={
this.props.settings.composite['blockWhileCommandExecutes'] as boolean
}
/>
);
}
/**
* Renders the main panel.
*
* @returns React element
*/
private _renderMain(): React.ReactElement {
return (
<React.Fragment>
{this._renderTabs()}
{this.state.tab === 1 ? this._renderHistory() : this._renderChanges()}
</React.Fragment>
);
}
/**
* Renders panel tabs.
*
* @returns React element
*/
private _renderTabs(): React.ReactElement {
return (
<Tabs
classes={{
root: tabsClass,
indicator: tabIndicatorClass
}}
value={this.state.tab}
onChange={this._onTabChange}
>
<Tab
classes={{
root: tabClass,
selected: selectedTabClass
}}
title="View changed files"
label="Changes"
disableFocusRipple={true}
disableRipple={true}
/>
<Tab
classes={{
root: tabClass,
selected: selectedTabClass
}}
title="View commit history"
label="History"
disableFocusRipple={true}
disableRipple={true}
/>
</Tabs>
);
}
/**
* Renders a panel for viewing and committing file changes.
*
* @returns React element
*/
private _renderChanges(): React.ReactElement {
return (
<React.Fragment>
<FileList
files={this._sortedFiles}
model={this.props.model}
renderMime={this.props.renderMime}
settings={this.props.settings}
/>
{this.props.settings.composite['simpleStaging'] ? (
<CommitBox
hasFiles={this._markedFiles.length > 0}
onCommit={this.commitMarkedFiles}
/>
) : (
<CommitBox
hasFiles={this._hasStagedFile()}
onCommit={this.commitStagedFiles}
/>
)}
</React.Fragment>
);
}
/**
* Renders a panel for viewing commit history.
*
* @returns React element
*/
private _renderHistory(): React.ReactElement {
return (
<HistorySideBar
branches={this.state.branches}
commits={this.state.pastCommits}
model={this.props.model}
renderMime={this.props.renderMime}
suspend={
this.props.settings.composite['blockWhileCommandExecutes'] as boolean
}
/>
);
}
/**
* Renders a component to provide UI feedback.
*
* @returns React element
*/
private _renderFeedback(): React.ReactElement {
return (
<React.Fragment>
<SuspendModal
open={
this.props.settings.composite['blockWhileCommandExecutes'] &&
this.state.suspend
}
onClick={this._onFeedbackModalClick}
/>
<Alert
open={this.state.alert}
message={this.state.log.message}
severity={this.state.log.severity}
onClose={this._onFeedbackAlertClose}
/>
</React.Fragment>
);
}
/**
* Renders a panel for prompting a user to find a Git repository.
*
* @returns React element
*/
private _renderWarning(): React.ReactElement {
const path = this.props.filebrowser.path;
const { commands } = this.props.model;
return (
<React.Fragment>
<div className={warningTextClass}>
{path ? (
<React.Fragment>
<b title={path}>{PathExt.basename(path)}</b> is not
</React.Fragment>
) : (
'You are not currently in'
)}
{
' a Git repository. To use Git, navigate to a local repository, initialize a repository here, or clone an existing repository.'
}
</div>
<button
className={repoButtonClass}
onClick={() => commands.execute('filebrowser:toggle-main')}
>
Open the FileBrowser
</button>
<button
className={repoButtonClass}
onClick={() => commands.execute(CommandIDs.gitInit)}
>
Initialize a Repository
</button>
<button
className={repoButtonClass}
onClick={async () => {
await commands.execute(CommandIDs.gitClone);
await commands.execute('filebrowser:toggle-main');
}}
>
Clone a Repository
</button>
</React.Fragment>
);
}
/**
* Sets the suspension state.
*
* @param bool - boolean indicating whether to suspend UI interaction
*/
private _suspend(bool: boolean): void {
if (this.props.settings.composite['blockWhileCommandExecutes']) {
this.setState({
suspend: bool
});
}
}
/**
* Sets the current component log message.
*
* @param msg - log message
*/
private _log(msg: ILogMessage): void {
this.setState({
alert: true,
log: msg
});
}
/**
* Callback invoked upon changing the active panel tab.
*
* @param event - event object
* @param tab - tab number
*/
private _onTabChange = (event: any, tab: number): void => {
if (tab === 1) {
this.refreshHistory();
}
this.setState({
tab: tab
});
};
/**
* Callback invoked upon refreshing a repository.
*
* @returns promise which refreshes a repository
*/
private _onRefresh = async () => {
await this.refreshBranch();
if (this.state.tab === 1) {
this.refreshHistory();
} else {
this.refreshStatus();
}
};
/**
* Callback invoked upon clicking on the feedback modal.
*
* @param event - event object
*/
private _onFeedbackModalClick = (): void => {
this._suspend(false);
};
/**
* Callback invoked upon closing a feedback alert.
*
* @param event - event object
*/
private _onFeedbackAlertClose = (): void => {
this.setState({
alert: false
});
};
/**
* Determines whether a user has a known Git identity.
*
* @param path - repository path
* @returns a promise which returns a success status
*/
private async _setIdentity(path: string): Promise<boolean> {
// If the repository path changes, check the user identity
if (path !== this._previousRepoPath) {
try {
const result = await showDialog({
title: 'Who is committing?',
body: new GitAuthorForm()
});
if (!result.button.accept) {
console.log('User refuses to set identity.');
return false;
}
const identity = result.value;
let res = await this.props.model.config({
'user.name': identity.name,
'user.email': identity.email
});
if (!res.ok) {
console.log(await res.text());
return false;
}
this._suspend(true);
res = await this.props.model.resetAuthor();
if (!res.ok) {
this._suspend(false);
console.log(await res.text());
return false;
}
this._suspend(false);
this._previousRepoPath = path;
} catch (error) {
throw new Error('Failed to set your identity. ' + error.message);
}
}
return Promise.resolve(true);
}
private _hasStagedFile(): boolean {
return this.state.files.some(
file => file.status === 'staged' || file.status === 'partially-staged'
);
}
private _hasUnStagedFile(): boolean {
return this.state.files.some(
file => file.status === 'unstaged' || file.status === 'partially-staged'
);
}
/**
* List of marked files.
*/
private get _markedFiles(): Git.IStatusFile[] {
return this._sortedFiles.filter(file => this.props.model.getMark(file.to));
}
/**
* List of sorted modified files.
*/
private get _sortedFiles(): Git.IStatusFile[] {
const { files } = this.state;
files.sort((a, b) => a.to.localeCompare(b.to));
return files;
}
private _previousRepoPath: string = null;
}