summaryrefslogtreecommitdiff
path: root/client/src/components/UpdateInput/UpdateInput.jsx
diff options
context:
space:
mode:
authorRohan Raj Gupta <[email protected]>2022-08-14 00:23:57 +0530
committerGitHub <[email protected]>2022-08-14 00:23:57 +0530
commit67b2e265a1731e1ad91491563eab66061013c1a4 (patch)
tree3419d20f735c0889bfcc19f3dbc898576624b1cc /client/src/components/UpdateInput/UpdateInput.jsx
parent4e99bfe1878620769d48532b182692e51c7266ef (diff)
parentec423572aaf8ecf80a409fd9a03d73b5d31e444f (diff)
Merge pull request #4 from Blaster4385/develop
Implemented update UI
Diffstat (limited to 'client/src/components/UpdateInput/UpdateInput.jsx')
-rw-r--r--client/src/components/UpdateInput/UpdateInput.jsx42
1 files changed, 42 insertions, 0 deletions
diff --git a/client/src/components/UpdateInput/UpdateInput.jsx b/client/src/components/UpdateInput/UpdateInput.jsx
new file mode 100644
index 0000000..8fa3ba1
--- /dev/null
+++ b/client/src/components/UpdateInput/UpdateInput.jsx
@@ -0,0 +1,42 @@
+import React from 'react'
+import styles from './UpdateInput.module.css'
+import EditButton from '../EditButton/EditButton'
+
+const UpdateInput = ({ label, id, value, type, name, onChange, placeholder, maxLength, pattern, minLength, onInvalid, onValid, readOnly }) => {
+ const [editable, setEditable] = React.useState(true)
+
+ const handleEdit = () => {
+ setEditable(!editable)
+ }
+
+ return (
+ <div className={styles.input}>
+ <div className={styles.input__container}>
+ <label htmlFor={id}>{label}</label>
+ <div className={styles.input__edit}>
+ <input
+ className={styles.input__field}
+ type={type}
+ id={id}
+ name={name}
+ value={value}
+ onChange={onChange}
+ required
+ placeholder={placeholder}
+ pattern={pattern}
+ maxLength={maxLength}
+ minLength={minLength}
+ onInvalid={onInvalid}
+ onValid={onValid}
+ readOnly={editable}
+ />
+ <EditButton
+ onClick={handleEdit}
+ enabled={!editable ? '1' : '0' } />
+ </div>
+ </div>
+ </div>
+ )
+}
+
+export default UpdateInput