This file contains 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
export const App = () => { | |
const [notification, setNotification] = useState('') // where should this state live? | |
return ( | |
<Hierarchy1> | |
<Component1> | |
<Notification/> // renders a notification | |
</Component1> | |
</Hierarchy1> | |
<Hierarchy2> | |
<Component2> |
This file contains 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
// <App/> | |
export const NotificationContext = React.createContext({...}) | |
return ( | |
<NotificationContext.Provider value={{ notification, setNotification }}> | |
// any child component can consume these values directly | |
</NotificationContext.Provider> | |
) | |
This file contains 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
// <Notification/> | |
import { useSelector } from 'react-redux' | |
export const Notification = (props) => { | |
const notification = useSelector((state) => state.notification) | |
} | |
// <FormComponent/> | |
import { useDispatch } from 'react-redux' | |
export const FormComponent = (props) => { |
This file contains 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 { Subject } from 'rxjs' | |
const notificationSubject = new Subject() | |
// Subject is also an Observable | |
const notificationObservable = notificationSubject.asObservable() | |
const publishNotification = (value) => { | |
// multicasts a value onto the stream | |
notificationSubject.next(value) | |
} |
This file contains 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 { publishNotification } from './notificationService' | |
const FormComponent = () => { | |
const handleNotifcation = () => { | |
publishNotification('Success!') | |
} | |
return ( | |
// <button onClick={handleNotification} /> | |
) | |
} |
This file contains 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 { notificationObservable } from 'services/notificationService' | |
const Notification = () => { | |
const [notification, setNotification] = useState('') | |
useEffect(() => { | |
// called when component first mounts | |
const subscription = notificationObservable.subscribe((value) => { | |
// re-render with new value | |
setNotification(value) | |
}) | |
return () => { |