Skip to content

Change to secret inputs in response to #6338 in st2 #1035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ in development

Changed
~~~~~~~
* Changed how secrets are handled in the UI from type=password
to using CSS webkit-text-security.

Contributed by @fdrab

* Updated various dependencies (security). #1009, #1020

Contributed by @enykeev
Expand Down
5 changes: 0 additions & 5 deletions modules/st2-auto-form/auto-form.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import IntegerField from './fields/integer';
import BooleanField from './fields/boolean';
import StringField from './fields/string';
import ObjectField from './fields/object';
import PasswordField from './fields/password';
import EnumField from './fields/enum';

import './style.css';
Expand Down Expand Up @@ -57,10 +56,6 @@ export default class AutoForm extends React.Component {
case 'boolean':
return BooleanField;
case 'string':
if (field.secret) {
return PasswordField;
}

return StringField;
case 'object':
return ObjectField;
Expand Down
30 changes: 22 additions & 8 deletions modules/st2-auto-form/fields/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export class BaseTextField extends React.Component {
spec: PropTypes.object,
value: PropTypes.any,
disabled: PropTypes.bool,
visible: PropTypes.bool,
onChange: PropTypes.func,
'data-test': PropTypes.string,
}
Expand All @@ -54,6 +55,7 @@ export class BaseTextField extends React.Component {

this.state = {
value: this.toStateValue(this.props.value),
visible: false,
};
}

Expand Down Expand Up @@ -105,6 +107,10 @@ export class BaseTextField extends React.Component {
}
}

visibilityToggle() {
this.setState({visible: !this.state.visible})
}

emitChange() {
return this.props.onChange(this.fromStateValue(this.state.value));
}
Expand All @@ -113,18 +119,22 @@ export class BaseTextField extends React.Component {
const { icon } = this.constructor;
const { invalid } = this.state;
const { spec={} } = this.props;
const wrapperProps = Object.assign({}, this.props);
const wrapperProps = Object.assign({}, this.props, {
visibilityToggle: () => this.visibilityToggle(),
visible: this.state.visible,
});

if (invalid) {
wrapperProps.invalid = invalid;
}

const inputProps = {
className: 'st2-auto-form__field',
type: spec.secret ? 'password' : 'text',
className: spec.secret && !this.state.visible ? 'st2-auto-form__field--secret' : 'st2-auto-form__field',
type: 'text',
placeholder:this.toStateValue(spec.default),
disabled: this.props.disabled,
value: this.state.value,
spellCheck: spec.secret && !this.state.visible ? false : true,
onChange: (e) => this.handleChange(e, e.target.value),
'data-test': this.props['data-test'],
};
Expand All @@ -135,7 +145,7 @@ export class BaseTextField extends React.Component {

return (
<TextFieldWrapper icon={icon} {...wrapperProps}>
<input {...inputProps} />
<input {...inputProps} />
</TextFieldWrapper>
);
}
Expand All @@ -145,19 +155,23 @@ export class BaseTextareaField extends BaseTextField {
render() {
const { icon } = this.constructor;
const { invalid } = this.state;
const { spec={} } = this.props;
const { spec = {} } = this.props;

const wrapperProps = Object.assign({}, this.props);
const wrapperProps = Object.assign({}, this.props, {
visibilityToggle: () => this.visibilityToggle(),
visible: this.state.visible,
});

if (invalid) {
wrapperProps.invalid = invalid;
}

const inputProps = {
className: 'st2-auto-form__field',
className: spec.secret && !this.state.visible ? 'st2-auto-form__field--secret' : 'st2-auto-form__field',
placeholder: this.toStateValue(spec.default),
disabled: this.props.disabled,
value: this.state.value,
spellCheck: spec.secret && !this.state.visible ? false : true,
onChange: (e) => this.handleChange(e, e.target.value),
minRows: 1,
maxRows: 10,
Expand All @@ -170,7 +184,7 @@ export class BaseTextareaField extends BaseTextField {

return (
<TextFieldWrapper icon={icon} {...wrapperProps}>
<Textarea {...inputProps} />
<Textarea {...inputProps} />
</TextFieldWrapper>
);
}
Expand Down
2 changes: 0 additions & 2 deletions modules/st2-auto-form/fields/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import EnumField from './enum';
import IntegerField from './integer';
import NumberField from './number';
import ObjectField from './object';
import PasswordField from './password';
import StringField from './string';
import SelectField from './select';
import ColorStringField from './color-string';
Expand All @@ -31,7 +30,6 @@ export {
IntegerField,
NumberField,
ObjectField,
PasswordField,
StringField,
SelectField,
ColorStringField,
Expand Down
2 changes: 1 addition & 1 deletion modules/st2-auto-form/fields/integer.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ export default class IntegerField extends BaseTextField {
}
}

return v && !validator.isInt(v) && `'${v}' is not an integer`;
return v && !validator.isInt(v) && `'${spec.secret ? "*".repeat(v.length) : v}' is not an integer`;
}
}
4 changes: 2 additions & 2 deletions modules/st2-auto-form/fields/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class NumberField extends BaseTextField {
if (invalid !== void 0) {
return invalid;
}

return v && !validator.isFloat(v) && `'${v}' is not a number`;
return v && !validator.isFloat(v) && `'${spec.secret ? "*".repeat(v.length) : v}' is not a number`;
}
}
27 changes: 0 additions & 27 deletions modules/st2-auto-form/fields/password.js

This file was deleted.

44 changes: 40 additions & 4 deletions modules/st2-auto-form/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
margin-bottom: 12px;
}

&__wrapper-block {
display: flex;
align-items: center;
}

&__title {
font-size: 15px;
line-height: 18px;
Expand Down Expand Up @@ -70,6 +75,21 @@
&:hover {
color: var(--aqua-base);
}

&:before {
font-family: "brocadeicons";
font-size: 18px;
font-weight: normal;
font-style: normal;
line-height: 36px;

display: flex;

vertical-align: middle;
pointer-events: none;

color: var(--grey-base);
}
}

&__field {
Expand All @@ -88,6 +108,21 @@
background-color: white;
box-shadow: 0 1px 0 var(--grey-lighten-2);

&--secret {
font-weight: normal;
font-family: Roboto, sans-serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;

color: black;
border: none;
outline: 0;
box-shadow: 0 1px 0 var(--grey-lighten-2);
-webkit-text-security: disc;
}

&&[disabled] {
cursor: default;

Expand Down Expand Up @@ -144,15 +179,16 @@
color: black;
}

&__text-field &__field {
&__text-field &__field,
&__text-field &__field--secret {
font-size: 13px;
line-height: 18px;

display: block;
overflow-x: hidden;
overflow-y: scroll;

padding: 9px 12px;
padding: 9px 36px 9px 9px;

resize: none;
cursor: text;
Expand All @@ -161,7 +197,7 @@
&::-webkit-scrollbar {
width: 13px;
height: 13px;

background-color: transparent;
}

Expand All @@ -171,6 +207,7 @@
background-color: rgba(117, 117, 117, .3);
background-clip: padding-box;


&:hover {
background-color: rgba(117, 117, 117, .7);
}
Expand Down Expand Up @@ -249,7 +286,6 @@
padding: 0 10px 0 0;

content: "\e91c";
vertical-align: middle;
pointer-events: none;

color: black;
Expand Down
14 changes: 14 additions & 0 deletions modules/st2-auto-form/wrappers.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,28 @@ export class TextFieldWrapper extends React.Component {
children: PropTypes.element.isRequired,
icon: PropTypes.string,
labelClass: PropTypes.string,
visible: PropTypes.bool,
visibilityToggle: PropTypes.func,
}

handleVisibilityToggle() {
this.props.visibilityToggle && this.props.visibilityToggle()
}


render() {
const buttonProps = {
icon: this.props.visible ? 'view2' : 'view',
title: this.props.visible ? 'hide value' : 'see value',
onClick: () => this.handleVisibilityToggle(),
};

const line = (
<div className='st2-auto-form__line'>
<Label className={this.props.labelClass || 'st2-auto-form__text-field'}>
<Icon name={this.props.icon} />
<Title {...this.props} />
{ this.props.spec && this.props.spec.secret && <Button {...buttonProps} />}
{ this.props.children }
<ErrorMessage>{ this.props.invalid }</ErrorMessage>
</Label>
Expand Down