forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredential-dialog.js
141 lines (119 loc) · 4.03 KB
/
credential-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
134
135
136
137
138
139
140
141
import React from 'react';
import PropTypes from 'prop-types';
import DialogView from './dialog-view';
import TabGroup from '../tab-group';
import {TabbableInput, TabbableButton} from './tabbable';
export default class CredentialDialog 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,
}
constructor(props) {
super(props);
this.tabGroup = new TabGroup();
this.state = {
username: '',
password: '',
remember: false,
showPassword: false,
};
}
render() {
const request = this.props.request;
const params = request.getParams();
return (
<DialogView
prompt={params.prompt}
acceptEnabled={this.canSignIn()}
acceptText="Sign in"
accept={this.accept}
cancel={request.cancel}
tabGroup={this.tabGroup}
inProgress={this.props.inProgress}
error={this.props.error}
workspace={this.props.workspace}
commands={this.props.commands}>
{params.includeUsername && (
<label className="github-DialogLabel github-DialogLabel--horizontal">
Username:
<TabbableInput
tabGroup={this.tabGroup}
commands={this.props.commands}
autofocus
type="text"
className="input-text native-key-bindings github-Credential-username"
value={this.state.username}
onChange={this.didChangeUsername}
/>
</label>
)}
<label className="github-DialogLabel github-DialogLabel--horizontal">
Password:
<TabbableInput
tabGroup={this.tabGroup}
commands={this.props.commands}
autofocus
type={this.state.showPassword ? 'text' : 'password'}
className="input-text native-key-bindings github-Credential-password"
value={this.state.password}
onChange={this.didChangePassword}
/>
<TabbableButton
tabGroup={this.tabGroup}
commands={this.props.commands}
className="github-Dialog--insetButton github-Credential-visibility"
onClick={this.toggleShowPassword}>
{this.state.showPassword ? 'Hide' : 'Show'}
</TabbableButton>
</label>
{params.includeRemember && (
<label className="github-DialogLabel github-DialogLabel--horizontal github-Credential-rememberLabel">
<TabbableInput
tabGroup={this.tabGroup}
commands={this.props.commands}
className="input-checkbox github-Credential-remember"
type="checkbox"
checked={this.state.remember}
onChange={this.didChangeRemember}
/>
Remember
</label>
)}
</DialogView>
);
}
componentDidMount() {
this.tabGroup.autofocus();
}
accept = () => {
if (!this.canSignIn()) {
return Promise.resolve();
}
const request = this.props.request;
const params = request.getParams();
const payload = {password: this.state.password};
if (params.includeUsername) {
payload.username = this.state.username;
}
if (params.includeRemember) {
payload.remember = this.state.remember;
}
return request.accept(payload);
}
didChangeUsername = e => this.setState({username: e.target.value});
didChangePassword = e => this.setState({password: e.target.value});
didChangeRemember = e => this.setState({remember: e.target.checked});
toggleShowPassword = () => this.setState({showPassword: !this.state.showPassword});
canSignIn() {
return !this.props.request.getParams().includeUsername || this.state.username.length > 0;
}
}