Navigating through dynamic web environments often means encountering components that continuously mount and unmount. Amidst this ever-changing landscape, Smart Layout emerges as a beacon of stability and elegance.
A standout feature of Smart Layout is its unmatched ability to diligently preserve the state of components that remain mounted. Despite the surrounding turbulence of components coming and going, the ones in view retain their states without missing a beat, ensuring a consistent and glitch-free user experience.
Coupled with this, Smart Layout also brings to the table its animated transitions. Mounting and unmounting processes aren't just about functionality; with smooth visual cues provided by these animations, they become a visual delight for the users.
And, there's exciting news on the horizon! One of our upcoming features will empower Smart Layout to preserve its structure even when components unmount. This means your layout will intelligently adapt and restructure itself, ensuring optimal use of space and an uninterrupted flow.
Venture further into this section to see how Smart Layout masterfully blends state preservation, animated transitions, and future-ready adaptability, setting a new benchmark in web design!
How it works
Behind the scenes the library it's keeping track of the amount of mounted components, dinamically regenerating the layout and the position of each element ensuring to preserve the state of each one of the elements displayed on the screen. When you unmount one of them, you are altering the number of components, restarting the layout
We'll see an example, but first let's take a look at this code snippet:
const ExampleOnClose = () => {-- const [elements, setElements] = useState([1, 2, 3, 4]);
-- return (
---- <ComponentLayout
----- config={{
------ onClose: (e) => setElements(elements.filter((el) => el !== e.id)),
----- }}
----- id="testBroke"
---- >
----- {elements.map((e) => (
------ <div key={e}>
------- {e}
------ </div>
----- ))}
---- </ComponentLayout>
-- );
};
export default Example;
As you can see in this example we are adding a close button that basically updates the state unmounting the matching components.
To do that that we are using the: layoutElement
type as part of the event. This type is described as:
interface layoutElement {------- key: string;
------- id: number;
------- parentId: number;
------- orientation: orientation;
------- className?: string;
------- name?: string | number;
}
But probably you noticed that the example it's not working properly, that's because when we are deleting elements, the id it's changing. This is because that id is automatically generated using the children position inside the ComponentLayout
So instead, we should add the names array inside the config prop of the ComponentLayout
so in this way, the children are going to map with those names, let's see:
const ExampleOnClose = () => {-- const [elements, setElements] = useState([1, 2, 3, 4]);
-- return (
---- <ComponentLayout
----- config={{
------ onClose: (e) => setElements(elements.filter((el) => el !== e.id)),
----- }}
----- id="testBroke"
---- >
----- {elements.map((e) => (
------ <div key={e}>
------- {e}
------ </div>
----- ))}
---- </ComponentLayout>
-- );
};
export default Example;
Now it's working properly, deleting the elements and preserving the states as it is expected. Go and play with it and restart it as much as you want using the button on the top right corner.