forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclone-dialog.js
133 lines (114 loc) · 3.69 KB
/
clone-dialog.js
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
import React from 'react';
import PropTypes from 'prop-types';
import {CompositeDisposable} from 'event-kit';
import {TextBuffer} from 'atom';
import url from 'url';
import path from 'path';
import TabGroup from '../tab-group';
import DialogView from './dialog-view';
import {TabbableTextEditor} from './tabbable';
export default class CloneDialog extends React.Component {
static propTypes = {
// Model
request: PropTypes.shape({
getParams: PropTypes.func.isRequired,
accept: PropTypes.func.isRequired,
cancel: PropTypes.func.isRequired,
}).isRequired,
inProgress: PropTypes.bool,
error: PropTypes.instanceOf(Error),
// Atom environment
workspace: PropTypes.object.isRequired,
commands: PropTypes.object.isRequired,
config: PropTypes.object.isRequired,
}
constructor(props) {
super(props);
const params = this.props.request.getParams();
this.sourceURL = new TextBuffer({text: params.sourceURL});
this.destinationPath = new TextBuffer({
text: params.destPath || this.props.config.get('core.projectHome'),
});
this.destinationPathModified = false;
this.state = {
acceptEnabled: false,
};
this.subs = new CompositeDisposable(
this.sourceURL.onDidChange(this.didChangeSourceUrl),
this.destinationPath.onDidChange(this.didChangeDestinationPath),
);
this.tabGroup = new TabGroup();
}
render() {
return (
<DialogView
progressMessage="cloning..."
acceptEnabled={this.state.acceptEnabled}
acceptClassNames="icon icon-repo-clone"
acceptText="Clone"
accept={this.accept}
cancel={this.props.request.cancel}
tabGroup={this.tabGroup}
inProgress={this.props.inProgress}
error={this.props.error}
workspace={this.props.workspace}
commands={this.props.commands}>
<label className="github-DialogLabel">
Clone from
<TabbableTextEditor
tabGroup={this.tabGroup}
commands={this.props.commands}
autofocus
className="github-Clone-sourceURL"
mini
readOnly={this.props.inProgress}
buffer={this.sourceURL}
/>
</label>
<label className="github-DialogLabel">
To directory
<TabbableTextEditor
tabGroup={this.tabGroup}
commands={this.props.commands}
className="github-Clone-destinationPath"
mini
readOnly={this.props.inProgress}
buffer={this.destinationPath}
/>
</label>
</DialogView>
);
}
componentDidMount() {
this.tabGroup.autofocus();
}
accept = () => {
const sourceURL = this.sourceURL.getText();
const destinationPath = this.destinationPath.getText();
if (sourceURL === '' || destinationPath === '') {
return Promise.resolve();
}
return this.props.request.accept(sourceURL, destinationPath);
}
didChangeSourceUrl = () => {
if (!this.destinationPathModified) {
const name = path.basename(url.parse(this.sourceURL.getText()).pathname, '.git') || '';
if (name.length > 0) {
const proposedPath = path.join(this.props.config.get('core.projectHome'), name);
this.destinationPath.setText(proposedPath);
this.destinationPathModified = false;
}
}
this.setAcceptEnablement();
}
didChangeDestinationPath = () => {
this.destinationPathModified = true;
this.setAcceptEnablement();
}
setAcceptEnablement = () => {
const enabled = !this.sourceURL.isEmpty() && !this.destinationPath.isEmpty();
if (enabled !== this.state.acceptEnabled) {
this.setState({acceptEnabled: enabled});
}
}
}