From df7f9560bf588e181834447c5056bf408f142259 Mon Sep 17 00:00:00 2001 From: Alejandro Visiedo Date: Tue, 31 Oct 2023 15:41:14 +0100 Subject: [PATCH] HMS-1623 doc: context documentation Update the context documentation with the new learnings about how to build that context, and simplify the code into the `AppEntry.tsx` by using the `AppContextPovider` defined, making the code cleaner and less messy. Signed-off-by: Alejandro Visiedo --- docs/04-context.md | 85 ++++++++++++++++++++++++++-------------------- 1 file changed, 49 insertions(+), 36 deletions(-) diff --git a/docs/04-context.md b/docs/04-context.md index 7eb1bd4..dac4df9 100644 --- a/docs/04-context.md +++ b/docs/04-context.md @@ -7,6 +7,9 @@ creation of a context for the micro-frontend. towards the ListDomains. - Provide the same data information for the different impacted objects. +> Avoid to use context if it evoke a performance because an excess of the +> render on the frontend. + ## Defining the context For using a context, we need to define the context (in this case it is defined @@ -17,78 +20,88 @@ it were required). import { createContext } from 'react'; import { Domain } from './Api'; -export interface IAppContext { +export interface AppContextType { domains: Domain[]; setDomains: (domains: Domain[]) => void; } -export const AppContext = createContext({ - domains: [], - setDomains: (domains: Domain[]) => { - throw new Error('Function "setDomains" not implemented: domains=' + domains); - }, -}); +export const AppContext = createContext(undefined); + +export const AppContextProvider: React.FC = ({ children }) => { + const [getter, setter] = useState(undefined); + + return ( + + {children} + + ); +} ``` Let's see what we have here: -- IAppContext define an interface with properties to be shared and some +- `AppContextType` define an interface with properties to be shared and some callbacks to update the properties above. -- The callbacks will use some state associated to a root component, so - when we change the state from a deeper component, the view is properly - rendered. - -We will define the callbacks at `src/AppEntry.tsx`: +- Create the context for the type `AppContextType`. +- Define the `AppContextProvider` which map getter and setter, and extend with + the `children`. -## Referencing the context in the root component +## Wrap your application by the context provider ```typescript -import React, { useState } from 'react'; +import React from 'react'; // ... const AppEntry = () => { - // Declare the state - const [domains, setDomains] = useState([]); - const cbSetDomains = (domains: Domain[]) => { - setDomains(domains); - }; return ( - + - + ); }; ``` -As we see the callback is invoking the setter for the state, which raise the -render mechanism for the view. - -See that we inject the domains value and the setter callback into the `value` property -for the `AppContext.Provider` tag. +Now we only reference the `AppContextProvider` wrapping our application. The +setter and getter are configured inside the AppContextProvider, which provide +a cleaner code. ## Use the context form other inner components Using the context from any component nested in our App would be kind of the below: ```typescript -const appContext = useContext(AppContext); +// we get the reference to the context +const appContext = useContext(AppContext); -const domains = appContext.domains; // Retrieving the value from the context +// We use a property +const domains = appContext?.domains; +// We use a setter which will fire a render cycle with the change const myEvent = () => { - appContext.setDomains(newDomain); // This will fire from the root component the render + appContext?.setDomains(newDomains); }; ``` -What is happening here? -- I get the reference to the context. -- I read a value from the context. -- I set a value into the context by using the injected callback when we - used the context into the root component; recall that it is calling a setDomain state, - which is the one that trigger the render of the view. +> Remember we mapped the set... function returned by useState hook +> for this callback, so we are calling a change of the state for +> the context. So it is calling a setDomain state, which is the one +> that trigger the render of the view. + +## Final considerations +Similar approach could be followed when we want to define a context closer to some component, +such as the wizard page (not using this approach currently), but instead of wrapping the application +we would wrap an inner component.