Type Alias: OpenFinishModal()
OpenFinishModal = () =>
Promise<void>
Function
Opens the finish modal showing all elements in the modular scene and available tabs.
This function displays a comprehensive summary view of the entire modular design, including all products, their configurations, and pricing information. It allows users to review their design, make final adjustments, and proceed to actions like saving, sharing, or adding to cart.
The finish modal is typically the final step in the design process before taking actions with the completed design.
-
- Dispatches
mimeeq-modular-open-summary
- Dispatches
-
- and opens the summary screen showing all scene elements.
Returns
Promise<void>
Example
// Open the finish modal when the summary button is clicked
document.getElementById('summary-btn').addEventListener('click', () => {
window.mimeeqApp.actions.openFinishModal();
});