Interface: Utils
Set of utility functions for common operations within the Mimeeq configurator.
The Utils interface provides methods for taking screenshots, generating shortcodes, setting prices, and controlling configurator visibility. These utilities simplify common tasks and provide access to functionality that would otherwise require more complex implementation.
Example
// Take a high-resolution screenshot of the current configuration
window.mimeeqApp.utils.takeScreenshot('png', 2048)
.then(imageBase64 => {
// Use the image (e.g., display it, save it, or send it to a server)
document.getElementById('product-image').src = imageBase64;
});
Pricing
setPrice
setPrice:
SetPrice
Sets custom pricing data for the current product configuration.
This method allows you to override the default pricing from Mimeeq with your own custom pricing logic. It accepts a price object that can include total price, currency, and delivery time information.
This is particularly useful for integrating with external pricing systems or implementing special pricing rules not available in Mimeeq's standard pricing engine.
Note: To use this method, you must enable "Use Custom Pricing" in the embed settings. Currently, modular product configurators only accept total price, not component prices.
Example
// Set a custom price with delivery time
window.mimeeqApp.utils.setPrice({
price: 1299.99, // Total price
currency: 'USD', // Currency code
deliveryTime: '14-21 days', // Estimated delivery time
levels: [ // Quantity break pricing
{ quantityMin: 1, quantityMax: 9, price: 1299.99 },
{ quantityMin: 10, quantityMax: 49, price: 1199.99 },
{ quantityMin: 50, quantityMax: 999999, price: 1099.99 }
]
});
// Listen for price change events to know when to update prices
document.addEventListener('mimeeq-price-change', () => {
fetchPriceFromExternalSystem().then(priceData => {
window.mimeeqApp.utils.setPrice(priceData);
});
});
Param
Price data object containing price, currency, and optional delivery time
setPricingSettings
setPricingSettings:
SetPricingSettings
Configures the decimal place settings for price display.
This method allows you to control how prices are formatted in the Mimeeq configurator by specifying the minimum and maximum number of decimal places to show. This helps maintain consistent price formatting across your application.
Example
// Show prices with exactly 2 decimal places
window.mimeeqApp.utils.setPricingSettings(2, 2);
// Show prices with at least 2 decimal places and at most 4
window.mimeeqApp.utils.setPricingSettings(2, 4);
Param
Minimum number of decimal places to display (default: 2)