-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom-react.js
32 lines (26 loc) · 1.06 KB
/
custom-react.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function customRender(reactElement, container) {
// this is not best way beacuse every time use to setAttribute for every element
// const domElement = document.createElement(reactElement.type);
// domElement.innerHTML = reactElement.children;
// domElement.setAttribute("href", reactElement.props.herf);
// domElement.setAttribute("target", reactElement.children.target);
// container.appendChild(domElement);
// loop base code , best way
const domElement = document.createElement(reactElement.type);
domElement.innerHTML = reactElement.children;
for (const prop in reactElement.props) {
if (prop == "children") continue; // if prop attr have h children element
domElement.setAttribute(prop, reactElement.props[prop]);
}
container.appendChild(domElement);
}
const reactElement = {
type: "a",
props: {
herf: "https://google.com",
target: "_blank",
},
children: "Visit Google",
}; // react give same like this end of the day
const mainContainer = document.querySelector("#root");
customRender(reactElement, mainContainer);