This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const areEqual = (prevProps, nextProps) => ( | |
| prevProps.myProp === nextProps.myProp | |
| ); | |
| const Hello = ({ myProp }) => ( | |
| <div>{myProp}</div> | |
| ); | |
| export default React.memo(Hello, areEqual); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Hello = () => { | |
| const inputRef = useRef(null); | |
| return ( | |
| <input ref={inputRef} type='text' /> | |
| <button onClick={() => inputRef.current.focus()}>click to focus the input</button> | |
| ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Hook reducer | |
| const reducer = (state, action) => { | |
| switch(action.type) { | |
| case 'initial data': | |
| return action.payload; | |
| } | |
| } | |
| // Hook actions | |
| const fetchData = async () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Hello = () => { | |
| const [isOpen, toggleIsOpen] = React.useState(false); | |
| return ( | |
| <div> | |
| <button onClick={(prevValue) => toggleIsOpen(!prevValue)}>click me</button> | |
| {isOpen ? <p>I'm open!</p> : <p>I'm closed!</p>} | |
| </div> | |
| ); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Hello = () => { | |
| const [inputValue, setInputValue] = React.useState(''); | |
| return ( | |
| <input | |
| onChange={(e) => setInputValue(e.target.value)} | |
| value={inputValue} | |
| /> | |
| ) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Hello = () => { | |
| const [number, updateNumber] = React.useState(0); | |
| return ( | |
| <div> | |
| <p>{number}</p> | |
| <button onClick={(prevNum) => updateNumber(prevNum + 1)}>Add 1</button> | |
| <button onClick={(prevNum) => updateNumber(prevNum - 1)}>Remove 1</button> | |
| </div> | |
| ) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Modal extends Component { | |
| private modalRef = createRef; | |
| closeModal = (e) => { | |
| const { modalProps } = this.props; | |
| const node = this.modalRef.current; | |
| // ignore if click is inside the modal | |
| if (node && node.contains(e.target)) { | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Header = () => ( | |
| <StyledHeader> | |
| <nav> | |
| <ModalContext.Consumer> | |
| {(modalProps) => ( | |
| <Button onClick={modalProps.showModal}>login</Button> | |
| {/* | |
| we pass modalProps so the Modal can use them to render if show is true | |
| and to provide the hideModal method for our close functionality | |
| */} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component, createContext } from "react"; | |
| const ModalContext = createContext({ | |
| hideModal: () => null, | |
| show: false, | |
| showModal: () => null | |
| }); | |
| export default ModalContext; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Modal extends Component { | |
| modalRef = createRef(); | |
| state = { | |
| show: false | |
| } | |
| closeModal = (e) => { | |
| const node = this.modalRef.current; | |
| if (node && node.contains(e.target)) { |
NewerOlder