mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
|
import React, {PropTypes, PureComponent} from 'react';
|
||
|
import autobind from 'autobind-decorator';
|
||
|
import KeyValueEditor from '../../key-value-editor/editor';
|
||
|
import {trackEvent} from '../../../../analytics/index';
|
||
|
import {AUTH_NTLM} from '../../../../common/constants';
|
||
|
|
||
|
@autobind
|
||
|
class NTLMAuth extends PureComponent {
|
||
|
_handleOnCreate () {
|
||
|
trackEvent('NTLM Auth Editor', 'Create');
|
||
|
}
|
||
|
|
||
|
_handleOnDelete () {
|
||
|
trackEvent('NTLM Auth Editor', 'Delete');
|
||
|
}
|
||
|
|
||
|
_handleToggleDisable (pair) {
|
||
|
const label = pair.disabled ? 'Disable' : 'Enable';
|
||
|
trackEvent('NTLM Auth Editor', 'Toggle', label);
|
||
|
}
|
||
|
|
||
|
_handleChange (pairs) {
|
||
|
const pair = {
|
||
|
type: AUTH_NTLM,
|
||
|
username: pairs.length ? pairs[0].name : '',
|
||
|
password: pairs.length ? pairs[0].value : '',
|
||
|
disabled: pairs.length ? pairs[0].disabled : false
|
||
|
};
|
||
|
|
||
|
this.props.onChange(pair);
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const {
|
||
|
authentication,
|
||
|
showPasswords,
|
||
|
handleRender,
|
||
|
handleGetRenderContext
|
||
|
} = this.props;
|
||
|
|
||
|
const pairs = [{
|
||
|
name: authentication.username || '',
|
||
|
value: authentication.password || '',
|
||
|
disabled: authentication.disabled || false
|
||
|
}];
|
||
|
|
||
|
return (
|
||
|
<KeyValueEditor
|
||
|
pairs={pairs}
|
||
|
maxPairs={1}
|
||
|
disableDelete
|
||
|
handleRender={handleRender}
|
||
|
handleGetRenderContext={handleGetRenderContext}
|
||
|
namePlaceholder="Username"
|
||
|
valuePlaceholder="•••••••••••"
|
||
|
valueInputType={showPasswords ? 'text' : 'password'}
|
||
|
onToggleDisable={this._handleToggleDisable}
|
||
|
onCreate={this._handleOnCreate}
|
||
|
onDelete={this._handleOnDelete}
|
||
|
onChange={this._handleChange}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
NTLMAuth.propTypes = {
|
||
|
handleRender: PropTypes.func.isRequired,
|
||
|
handleGetRenderContext: PropTypes.func.isRequired,
|
||
|
handleUpdateSettingsShowPasswords: PropTypes.func.isRequired,
|
||
|
onChange: PropTypes.func.isRequired,
|
||
|
authentication: PropTypes.object.isRequired,
|
||
|
showPasswords: PropTypes.bool.isRequired
|
||
|
};
|
||
|
|
||
|
export default NTLMAuth;
|