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

70 lines
1.9 KiB
React
Raw Normal View History

2018-10-13 22:14:46 +02:00
import PropTypes from 'prop-types';
import React from 'react';
class APIKeyForm extends React.Component {
constructor(props) {
super(props);
this.state = { keyLabel: '' };
this.addKey = this.addKey.bind(this);
}
addKey(event) {
event.preventDefault();
document.getElementById('addKeyForm').reset();
this.props.addApiKey(this.state.keyLabel);
this.state.keyLabel = '';
2018-10-13 22:14:46 +02:00
return false;
}
removeKey(keyId) {
this.props.removeApiKey(keyId);
2018-10-13 22:14:46 +02:00
}
render() {
return (
<div>
<h2 className="form__label">Key label</h2>
<form id="addKeyForm" className="form" onSubmit={this.addKey}>
2018-10-13 22:14:46 +02:00
<input
type="text"
className="form__input"
placeholder="A name you will be able to recognize"
2018-10-13 22:14:46 +02:00
id="keyLabel"
onChange={(event) => { this.setState({ keyLabel: event.target.value }); }}
/><br />
<input
type="submit"
value="Create new Key"
disabled={this.state.keyLabel === ''}
/>
</form>
<table className="form__table">
<tbody id="form__table_new_key"></tbody>
2018-10-13 22:14:46 +02:00
<tbody>
{this.props.apiKeys && this.props.apiKeys.map(v => (
2018-10-13 22:14:46 +02:00
<tr key={v.id}>
<td><b>{v.label}</b><br />Created on: {v.createdAt}</td>
<td>Last used on:<br /> {v.lastUsedAt}</td>
<td><button className="form__table-button-remove" onClick={() => this.removeKey(v.id)}>Delete</button></td>
2018-10-13 22:14:46 +02:00
</tr>))}
</tbody>
</table>
</div>
);
}
}
APIKeyForm.propTypes = {
addApiKey: PropTypes.func.isRequired,
removeApiKey: PropTypes.func.isRequired,
apiKeys: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.object.isRequired,
label: PropTypes.string.isRequired,
createdAt: PropTypes.object.isRequired,
lastUsedAt: PropTypes.object.isRequired,
})).isRequired
2018-10-13 22:14:46 +02:00
};
export default APIKeyForm;