Skip to main content

Type Alias: CheckCanMove()

CheckCanMove = (instanceId) => Promise<boolean>

Function

Checks if a specific product instance can be moved to another position.

This function determines whether a specific product in the scene can be moved to a different position. It evaluates factors like available connection points, product settings, and scene composition to determine if movement is possible.

This check is useful for dynamically enabling or disabling move functionality based on the selected product and current scene state.

Parameters

instanceId

string

ID of the product instance to check for move capability

Returns

Promise<boolean>

A promise resolving to true if the product can be moved, false otherwise

Example

// Enable or disable the move button based on whether the selected product can be moved
async function updateMoveButtonState() {
const selectedElement = getSelectedElementId();
const canMove = await window.mimeeqApp.actions.checkCanMove(selectedElement);

document.getElementById('move-btn').disabled = !canMove;
}