Skip to main content

Type Alias: SelectElement()

SelectElement = (elementUId) => Promise<void>

Function

Selects a specific product in the modular scene.

This function highlights and selects a particular product in the modular scene by its unique instance ID. The selected product becomes the target for subsequent operations like configuring options, moving, cloning, or removing.

Explicit selection is useful for programmatically targeting specific products for operations, especially in custom interfaces or guided workflows.

Parameters

elementUId

string

Unique instance ID of the product to select

Returns

Promise<void>

Example

// Create a list of all products in the scene with select buttons
function renderProductList(products) {
const container = document.getElementById('product-list');
container.innerHTML = '';

Object.entries(products).forEach(([instanceId, product]) => {
const item = document.createElement('div');
item.innerHTML = `
<span>${product.name}</span>
<button class="select-btn">Select</button>
`;

item.querySelector('.select-btn').addEventListener('click', () => {
window.mimeeqApp.actions.selectElement(instanceId);
});

container.appendChild(item);
});
}