Interface: MountRoot
Represents the root of a mounted Mimeeq component. This object provides methods to render specific embed types and unmount them when needed.
In mimeeqAuth context, this supports authentication-related embed types (LOGIN, USER_PROFILE, FORGOT_PASSWORD). In mimeeqApp context, this supports all embed types including configurators, product lists, and authentication.
Example
// Using with mimeeqAuth (authentication embeds only)
const mountRoot = await window.mimeeqAuth.mount({
CDNPath: window.mimeeqEmbedEnv.CDNPath,
baseURL: window.mimeeqEmbedEnv.APIPath,
customerId: 'customer123',
node: document.getElementById('auth-container'),
uid: 'auth-embed'
});
// Render a login form
mountRoot.render({
embedType: 'LOGIN',
onLoginSuccess: (user) => console.log('User logged in:', user)
});
@interface
Properties
render
render:
RenderTree
Renders a specific embed type with the provided configuration.
The available embed types depend on the context:
- In mimeeqAuth: LOGIN, USER_PROFILE, FORGOT_PASSWORD
- In mimeeqApp: All embed types including configurators, product lists, etc.
Param
Configuration for the specific embed type to render
Returns
A promise that resolves when rendering is complete
unmount()
unmount: () =>
Promise
<void
>
Unmounts the component from the DOM. This should be called when the component is no longer needed to clean up resources.
Returns
Promise
<void
>
A promise that resolves when unmounting is complete