Objective:
I need to check if the form has been edited by the user or not. If yes, then I will call the axios.put() function.
Issue:
Since in JS, obj1 = { name: “John “} !== obj2 = { name: “John” } I am looking for a better way to compare two objects.
My way(seems inefficient) :
JavaScript
x
40
40
1
const intialAddress= {
2
city: "CA"
3
line1: "testline1"
4
line2: "testline2"
5
phone: "7772815615"
6
pin: "1234"
7
state: "CA"
8
}
9
10
const [address, setAddress] = useState(initialAddress);
11
let addressFinalValue = {};
12
const addressValue = (e) => {
13
addressFinalValue[e.target.name] = e.target.value;
14
};
15
16
/***************************
17
* The way I am doing it
18
**************************/
19
20
const submitHandler = (e) => {
21
e.preventDefault();
22
setAddress(addressFinalValue);
23
if ( address.line1 !== initialAddress.line1 || address.line2 !== initialAddress.line2 || etc ) {
24
// axios.put()
25
}
26
};
27
28
return (
29
<form onSubmit={submitHandler}>
30
<div className="form-group">
31
<input id="address-line-1" className="form-control" value={address.line1}
32
onChange={addressValue} name="line1" type="text" placeholder="Line 1" />
33
</div>
34
35
// multiple input fields here //
36
37
<button className="btn btn-success">Save Address & Continue</button>
38
</form>
39
)
40
I would really appreciate the help. Thanks in advance.
Advertisement
Answer
If you have use lodash then it’s much simplier
JavaScript
1
2
1
_.isEqual(obj1,obj2)
2