mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
39 lines
966 B
JavaScript
39 lines
966 B
JavaScript
/* eslint-disable react/react-in-jsx-scope */
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import PropTypes from 'prop-types';
|
|
import { useState } from 'preact/hooks';
|
|
|
|
export const Form = ({ onSuccess }) => {
|
|
const [value, setValue] = useState('');
|
|
const [complete, setComplete] = useState(false);
|
|
|
|
function onSubmit(event) {
|
|
event.preventDefault();
|
|
onSuccess(value);
|
|
|
|
setTimeout(() => setComplete(true), 500);
|
|
setTimeout(() => setComplete(false), 1500);
|
|
}
|
|
|
|
return (
|
|
<form id="interaction-test-form" onSubmit={onSubmit}>
|
|
<label>
|
|
Enter Value
|
|
<input
|
|
type="text"
|
|
data-testid="value"
|
|
value={value}
|
|
required
|
|
onChange={(event) => setValue(event.target.value)}
|
|
/>
|
|
</label>
|
|
<button type="submit">Submit</button>
|
|
{complete && <p>Completed!!</p>}
|
|
</form>
|
|
);
|
|
};
|
|
|
|
Form.propTypes = {
|
|
onSuccess: PropTypes.func.isRequired,
|
|
};
|