p5.js-web-editor/client/modules/User/components/APIKeyForm.jsx

124 lines
3.7 KiB
React
Raw Normal View History

2018-10-13 22:14:46 +02:00
import PropTypes from 'prop-types';
import React from 'react';
import Button from '../../../common/Button';
2019-05-15 12:11:58 +02:00
import CopyableInput from '../../IDE/components/CopyableInput';
2019-05-15 12:11:58 +02:00
import APIKeyList from './APIKeyList';
2019-05-14 20:12:52 +02:00
2019-05-15 12:11:58 +02:00
export const APIKeyPropType = PropTypes.shape({
id: PropTypes.object.isRequired,
token: PropTypes.object,
2019-05-15 12:11:58 +02:00
label: PropTypes.string.isRequired,
createdAt: PropTypes.string.isRequired,
lastUsedAt: PropTypes.string,
2019-05-15 12:11:58 +02:00
});
2018-10-13 22:14:46 +02:00
class APIKeyForm extends React.Component {
constructor(props) {
super(props);
this.state = { keyLabel: '' };
this.addKey = this.addKey.bind(this);
this.removeKey = this.removeKey.bind(this);
this.renderApiKeys = this.renderApiKeys.bind(this);
2018-10-13 22:14:46 +02:00
}
addKey(event) {
event.preventDefault();
const { keyLabel } = this.state;
this.setState({
keyLabel: ''
});
this.props.createApiKey(keyLabel);
2018-10-13 22:14:46 +02:00
return false;
}
removeKey(key) {
const message = `Are you sure you want to delete "${key.label}"?`;
if (window.confirm(message)) {
this.props.removeApiKey(key.id);
}
2018-10-13 22:14:46 +02:00
}
renderApiKeys() {
const hasApiKeys = this.props.apiKeys && this.props.apiKeys.length > 0;
if (hasApiKeys) {
return (
2019-05-15 12:11:58 +02:00
<APIKeyList apiKeys={this.props.apiKeys} onRemove={this.removeKey} />
);
}
2019-05-15 12:11:58 +02:00
return <p>You have no exsiting tokens.</p>;
}
render() {
2019-05-15 12:11:58 +02:00
const keyWithToken = this.props.apiKeys.find(k => !!k.token);
return (
2019-05-15 12:11:58 +02:00
<div className="api-key-form">
2019-05-15 16:25:58 +02:00
<p className="api-key-form__summary">
Personal Access Tokens act like your password to allow automated
scripts to access the Editor API. Create a token for each script
that needs access.
</p>
2019-05-15 12:11:58 +02:00
<div className="api-key-form__section">
<h3 className="api-key-form__title">Create new token</h3>
<form className="form form--inline" onSubmit={this.addKey}>
<label htmlFor="keyLabel" className="form__label form__label--hidden ">What is this token for?</label>
<input
className="form__input"
id="keyLabel"
onChange={(event) => { this.setState({ keyLabel: event.target.value }); }}
placeholder="What is this token for? e.g. Example import script"
type="text"
value={this.state.keyLabel}
/>
<Button
iconBeforeName={Button.iconNames.Plus}
2019-05-15 12:11:58 +02:00
disabled={this.state.keyLabel === ''}
type="submit"
label="Create new key"
2019-05-15 12:11:58 +02:00
>
2020-05-08 01:12:44 +02:00
{/* TODO make sure this aria label is right for the button */}
{/* <PlusIcon className="api-key-form__create-icon" focusable="false" aria-hidden="true" /> */}
Create
</Button>
2019-05-15 12:11:58 +02:00
</form>
{
keyWithToken && (
<div className="api-key-form__new-token">
<h4 className="api-key-form__new-token__title">Your new access token</h4>
2019-05-15 16:25:58 +02:00
<p className="api-key-form__new-token__info">
Make sure to copy your new personal access token now.
You wont be able to see it again!
</p>
2019-05-15 12:11:58 +02:00
<CopyableInput label={keyWithToken.label} value={keyWithToken.token} />
</div>
)
}
</div>
<div className="api-key-form__section">
<h3 className="api-key-form__title">Existing tokens</h3>
{this.renderApiKeys()}
</div>
2018-10-13 22:14:46 +02:00
</div>
);
}
}
APIKeyForm.propTypes = {
2019-05-15 12:11:58 +02:00
apiKeys: PropTypes.arrayOf(PropTypes.shape(APIKeyPropType)).isRequired,
createApiKey: PropTypes.func.isRequired,
removeApiKey: PropTypes.func.isRequired,
2018-10-13 22:14:46 +02:00
};
export default APIKeyForm;