Application Distribution
To be able to use the Storage Configurator, you have to create an Application Distribution.
Note: You can find a full sample here: Application Distribution Sample π
Creation
You can follow this documentation to create one: How to create and Application Distribution π
You will have to choose:
Field | Value |
---|---|
Associated Application | Storage Configurator |
Permission | Anonymous |
Catalog | Choose at least one catalog here to have access to some products |
Parameters | This is mandatory, see more information below. π |
Parameters
The parameters are filled using the JSON format.
Supported settings
For... | See... |
---|---|
Language, Units and Currency | locales , currencies |
Search filters | search |
Pricing | pricing |
Widgets | productSheet |
Catalog | catalogData |
Panel options | editPanel |
Search | sortStringFilter , sortNumericFilter , aggregationParameters |
2D plans | plans2d |
Integration | integration |
Top structure
The application distribution settings object is defined with the following attributes:
Attribute | Type | Description |
---|---|---|
currencies | array of objects | A list of supported currencies in the application distribution |
integration | object | Web component integration parameters, when set from the App Distrib |
locales | array of objects | A list of supported locales in the application distribution |
pricing | object | Application distribution settings related to the pricing |
catalogData | object | Application distribution settings related to the catalog entries |
editPanel | object | Application distribution settings related to the edit panel |
search | object | Application distribution settings related to the search |
plans2d | object | Application distribution settings related to the 2d plans |
widgets | object | Application distribution settings to configure the default widgets |
autoFillers | object | Application distribution settings to configure the automatic fillers |
The only mandatory attributes are: locales
Currencies
Attribute name | Status | Type | Default value |
---|---|---|---|
currencies | Optional | array of currency objects | [] |
This parameter contains a list of specific currency configurations for the Application Distribution. Each object in this array is used to configure how a particular currency is configured for its display in the application.
When the application starts, it determines which currency to use (
see data-pricing -> currencyCode
integration parameters π. If it is in this list of
currencies, it uses the associated object to configure the currency display. If the currency is not in the currencies
list, it falls back on the locale-currency configuration (
see GET /applications/{id}/currencylocales/{locale} π).
A currency object is defined as follow:
Attribute | Type | Mandatory | Description |
---|---|---|---|
currencyCode | string | YES | A 3 letters string following ISO 4217 π |
currencyName | string | YES | The currency name |
numberSystem | string | YES | "latin" or "arab". Defines which alphabet to use to display the digits |
currencySymbol | string | YES | The symbol to display for the currency |
currencySignRighthand | boolean | YES | Defines if the currency symbol should be on the right side of the price number. true to display the symbol on the right side |
currencySpacing | boolean | YES | Defines if there should be a space between the price number and the currency symbol. true to display a spacing |
decimalSeparator | string | YES | The separator string to separate the decimal digits of the price |
thousandSeparator | string | YES | The separator string to separate the thousand groups |
noDecimalString | string | YES | The string to display when there is no decimal digits |
Example 1 β Array of two currencies
{
"currencies": [
{
"currencyCode": "GBP",
"currencyName": "British Pound",
"numberSystem": "latin",
"currencySymbol": "Β£",
"currencySignRighthand": false,
"currencySpacing": false,
"decimalSeparator": ".",
"thousandSeparator": ",",
"noDecimalString": ""
},
{
"currencyCode": "EUR",
"currencyName": "euro",
"numberSystem": "latin",
"currencySymbol": "β¬",
"currencySignRighthand": true,
"currencySpacing": true,
"decimalSeparator": ",",
"thousandSeparator": " ",
"noDecimalString": ""
}
]
}
Integration
Attribute name | Status | Type | Default value |
---|---|---|---|
integration | Optional | Object | {} |
This parameter let the Application Distribution modify the integration values of the web component. It has two usages:
- When the Storage Configurator is launched through the planner, it's the only way to set integration values.
- When the Storage Configurator is integrated on another website, this allows setting and changing defaults values without any modification on the customer side.
See the dedicated page for the configuration of the Storage Configurator π.
Locales
Attribute name | Status | Type | Default value |
---|---|---|---|
locales | Mandatory | array of locale objects | [] |
This parameter contains the list of supported locales for the Application Distribution. It must contain at least one element.
A locale object is defined as follows:
Attribute | Type | Mandatory | Description |
---|---|---|---|
isDefault | boolean | NO | If true , tells the application to use this locale by default. It is possible to launch the configurator with a specific locale. π |
name | string | YES | A combination of a mandatory and an optional element joined in a string and separated by a "-" (dash). - MANDATORY: 2-letter code of a language, following ISO 639-1 π. - OPTIONAL: 2-letter code of a region / country, following ISO 3166-1 π. Examples: "da-DK" for "Danish-Danemark" or "fr-FR" for "French-France" or "PT-pt" for "Poruguese-Portugal". |
fallback | string | NO | Used for translations only. If a translation key is not found for the given locale, the translation system falls back to this locale instead. If not specified, falls back to English. |
unitSystem | string | YES | Defines which unit system is used in the application. Can be metrics or imperial |
lengthUnit | string | YES | Defines the base unit for length in the application. Can be millimeter , centimeter , decimeter or meter (for unitSystem = metrics) and inch , foot or yard (for uniSystem = imperial) |
lengthPrecision | integer | YES if uniSystem is metrics | The various lengths displayed in the application will be displayed with lengthPrecision decimal digits |
lengthFractionPrecision | integer | YES if uniSystem is imperial | Minimal fraction of lengthUnit . Valid values are: 8, 16 or 32 |
Example 1 β Array of three locales in metrics
{
"locales":
[
{
"name": "fr-BE",
"unitSystem": "metrics",
"lengthUnit": "millimeter",
"lengthPrecision": 0,
"fallback": "en"
},
{
"name": "nl-BE",
"unitSystem": "metrics",
"lengthUnit": "millimeter",
"lengthPrecision": 0,
"fallback": "en"
},
{
"name": "de-DE",
"unitSystem": "metrics",
"lengthUnit": "millimeter",
"lengthPrecision": 0,
"fallback": "en"
}
]
}
Example 2 β Array of two locales in imperial
{
"locales":
[
{
"name": "en-US",
"unitSystem": "imperial",
"lengthUnit": "foot",
"lengthPrecision": 0,
"lengthFractionPrecision": 16,
"fallback": "en"
},
{
"name": "es-US",
"unitSystem": "imperial",
"lengthUnit": "foot",
"lengthPrecision": 0,
"lengthFractionPrecision": 16,
"fallback": "en"
}
]
}
Pricing
Attribute name | Status | Type | Default value |
---|---|---|---|
pricing | Optional | Object with pricing information | {} |
The pricing
attribute groups settings related to pricing configuration. They are described after the example.
Example 1 β Pricing object
{
"pricing": {
"externalPrice": false,
"hide": false,
"marketZone": "zone_1",
"priceTopAssembly": false
}
}
externalPrice
Status | Type | Default value |
---|---|---|
Optional | boolean | false |
Set to true if you want to use an external module to compute the Storage Configurator price. By choosing this option, after each BOM computation, the configurator sends it via a message π and waits for a reply that must contain the Storage Configurator price to display in the UI.
hide
Status | Type | Default value |
---|---|---|
Optional | boolean | false |
Defines whether the total price is displayed or not in the application.
marketZone
Status | Type | Default value |
---|---|---|
Optional | string | `` |
Defines an optional market zone to use when computing prices. The end user will see the prices associated with the given market zone.
Search Filters
Attribute name | Status | Type | Default value |
---|---|---|---|
search | Optional | Object | {} |
This parameter contains the data necessary to configure the search in the application.
A search object is defined as follows:
Attribute | Type | Mandatory | Description |
---|---|---|---|
filters | array of filters π | NO | The list of filters to use for product lists. |
Filter
To declare a filter, you create an object that contains the following attributes:
Attribute | Type | Mandatory | Description |
---|---|---|---|
key | string | YES | The filter to display. It can be:closed_tags_color : filter by the color closed tag of a product.closed_tags_material : filter by the material closed tag of a product.closed_tags_room : filter by the room closed tag of a product.closed_tags_style : filter by the style closed tag of a product.closed_tags_type : filter by the type closed tag of a product.[parameter_id] : the id of any parameter you want to use as a filter. |
order | string | NO | The define the sort order of the filter values. By default, the values are sorted in ascending order. It can be:asc : values will be sorted in ascending order.desc : values will be sorted in descending order. |
Translations
The displayed name of the filter will be the name of the parameter itself when the key refers to a custom parameter. It will use the translation key of the parameter as it is defined on the products having this parameter in the list of possible values.
When the filter refers to a closed tag (one of the predefined filter keys), the translation is provided by default.
Example 1 β Configured search filters
{
"search": {
"filters": [
{
"key": "closed_tags_style",
"order": "asc"
},
{
"key": "closed_tags_material",
"order": "desc"
},
{
"key": "closed_tags_type"
},
{
"key": "boolean_filter"
}
]
}
}
catalogData
The catalogData
is used to configure the different catalog entries data displayed in the Storage configurator.
design
Status | Type | Default value |
---|---|---|
Optional | array of catalog object | [] |
Each item in design
is an object which describes the information of the catalog. It contains the following attributes:
icon
Status | Type | Default value |
---|---|---|
Mandatory | string | "" |
The name of the SVG icon to use for this catalog. Supported values are listed below.
translationKey
Status | Type | Default value |
---|---|---|
Mandatory | string | "" |
The translation key suffix for the catalog entry name. The configurator builds the full translation key like follows (where {key_suffix} is replaced by the provided translationKey
)
full key = catalog_entry.design_state.{key_suffix}
closedTags
Status | Type | Default value |
---|---|---|
Mandatory | array of number | [] |
List of closed tag IDs that are searched when the user clicks on catalog button. Search results are any product that has either of these closed tags.
freeTags
Status | Type | Default value |
---|---|---|
Mandatory | array of string | [] |
List of free tag IDs that are searched when the user clicks on catalog button. Search results are any product that has either of these free tags.
productRank
Status | Type | Default value |
---|---|---|
Optional | boolean | false |
Defines if the searchScore must be used when sorting results of the search.
editPanel
The editPanel
attribute groups settings related to product panel configuration.
groups
Status | Type | Default value |
---|---|---|
Mandatory | array of parameters object | [] |
The groups
is used to define the groups of the parameters displayed in the product panel. It contains the following attributes:
parameters
Status | Type | Default value |
---|---|---|
Mandatory | array of string | [] |
The array contains the list of parameters which will be displayed as a group. The parameters of the product will be shown in the panel as the same order defined in the array.
translationKey
Status | Type | Default value |
---|---|---|
Mandatory | string | "" |
The translation key is used to translate the name of the group displayed as the title in the panel.
The product panel will display all the visible and editable parameters of a product selected. If a parameter is visible and editable but NOT defined in any array of
parameters
, it will be shown in the group "Other". It means that you need to have atranslationKey
asedit_panel.groups.other
for displaying any visible and editable parameters which are not belongs to any groups.
Example
"editPanel": {
"groups": [
{
"parameters": [
"width",
"depth",
"height"
],
"translationKey": "edit_panel.groups.dimensions"
},
{
"parameters": [
"leftCoverPanel",
"rightCoverPanel",
"topCoverPanel"
],
"translationKey": "edit_panel.groups.cover_panels"
},
{
"parameters": [
"autoLeftFillerOption",
"autoRightFillerOption",
"autoTopFillerOption"
],
"translationKey": "edit_panel.groups.fillers"
}
]
}
The above example produces the following product panel:
search
The search
attribute groups settings related to the search configuration.
aggregationParameters
Status | Type | Default value |
---|---|---|
Optional | array of string | [] |
These aggregation parameters are used in the product browser, replace catalog and the search bar.
For a parameter to be used as a filter, it must be set as a searchable parameter on the product(s) and defined in the API and in application distribution parameters in 3dcloud.
β‘οΈ See the Searchable Parameters π for a further explanation of how to set the parameters.
{
"aggregationParameters": [
"commercialDepth",
"commercialWidth"
]
}
sortStringFilter
Status | Type | Default value |
---|---|---|
Optional | string | "desc" |
sortStringFilter
defines the sorting order of the string type filters in the Catalog Browser. If the value of the sortStringFilter
is asc
it will be sorted in alphabetical order. And If the value is desc
, it will be sorted in reverse alphabetical order.
The default value for the key is desc
. If no value is provided for the key, by default the filter will be sorted in the reverse alphabetical order.
{
"sortStringFilter": "desc",
}
sortNumericFilter
Status | Type | Default value |
---|---|---|
Optional | string | "desc" |
sortNumericFilter
defines the sorting order of the number type filters in the Catalog Browser. If the value of the sortNumericFilter
is asc
it will be sorted in ascending order. And If the value is desc
, it will be sorted in descending order.
The default value for the key is desc
. If no value is provided for the key, by default the filter will be sorted in the descending order.
{
"sortNumericFilter": "desc"
}
plans2d
The plans2d
attribute groups settings related to the generation of 2d plans.
β‘οΈ Refer to 2D Plan Information π
version
Status | Type | Default value |
---|---|---|
Mandatory | number | β |
The 2d plans configuration version. The current last version is 2.
showInfoGrid
Status | Type | Default value |
---|---|---|
Optional | number | β |
To apply Information Grid on the 2DPlans generated.
configs
Status | Type | Default value |
---|---|---|
Optional | array of config objects | [] |
The list of 2D plans configurations. Each config object will result in 1 generated plan. You can generate several 2D plans of the same view with different visible elements on each view.
Possible parameters for a configuration object are:
Name | Mandatory | Type | Possible Values | Description |
---|---|---|---|---|
typePlan | yes | string | "Top" "Face" "TopGround" "TopWall" | the type of plan to compute |
showFurniture | β | num | 0 or 1 | draws the furniture. (default value: 1) |
showFurnitureDimension | β | num | 0 or 1 | draws the furniture dimensions. (default value: 0) |
showDepthDimension | β | num | 0 or 1 | draws the furniture depth dimensions. (default value: 0) |
showWallDimension | β | num | 0 or 1 | draws the wall and bay dimensions. (default value: 0) |
showNumbering | β | num | 0 or 1 | draws the furniture numbers. (default value: 0) |
showFronts | β | num | 0 or 1 | draws the front and handles of the products (default value: 1) |
tagsToShow | β | Array<num> | [...] | a list of product tags to show in the 2D Plans |
tagsToHide | β | Array<num> | [...] | a list of product tags to hide in the 2D Plans |
tagsToMeasure | β | Array<num> | [...] | a list of product tags to measure in the 2D Plans |
roomsOnly | β | num | 0 or 1 | draws a plan for each room that contains products (default value: 1) |
resol | β | num | 1 - 1000 | Resolution in PPI. (default value: 300) |
scale | β | num | 0 or 1 | Scale of the plan when printed at the current resol (20 means 1/20 scale) (default value: 20) |
imageWidth | β | num | 0 or 1 | Width of the 2D plans in pixels |
imageHeight | β | num | 0 or 1 | Height of the 2D plans in pixels |
Example
"plans2d": {
"version": 2,
"showInfoGrid": 0,
"configs": [
{
"resol": 300,
"scale": 20,
"typePlan": "Top",
"roomsOnly": 1,
"showFronts": 1,
"imageWidth": 2244,
"imageHeight": 1772,
"showFurniture": 1,
"showNumbering": 1,
"showWallDimension": 1,
"showFurnitureDimension": 1
}
]
},
widgets
The widgets
attribute is used to configure the use of default widgets in the configurator. It contains a key for each supported widget in the configurator.
productSheet
Status | Type | Default value |
---|---|---|
Optional | object | false |
Defines the configuration of the Product Sheet π default widget that is used for displaying product information.
It supports the following keys/values:
dimensions
Status | Type | Default value |
---|---|---|
Optional | boolean | true |
Defines if the dimensions of the product are displayed or not.
price
Status | Type | Default value |
---|---|---|
Optional | boolean | true |
Defines if the price of the product is displayed or not.
Example where the dimensions and price are disabled:
"productSheet": {
"price": true,
"dimensions": false
}
autoFillers
The autoFillers
attribute is used to configure the use of automatic fillers in the configurator. Below are the supported keys for this object.
baseFillerIds
Status | Type | Default value |
---|---|---|
Optional | array of strings | [] |
Defines the base filler ID that is inserted by the configurator when adding an automatic base filler (i.e. filler touching the floor). The setting must be defined as an array of IDs, and the first available filler (at the time of configurator startup) from this list will be used by the configurator.
topFillerIds
Status | Type | Default value |
---|---|---|
Optional | array of strings | [] |
Defines the top filler ID that is inserted by the configurator when adding an automatic top filler (i.e. filler not touching the floor). The setting must be defined as an array of IDs, and the first available filler (at the time of configurator startup) from this list will be used by the configurator.
minWidth
Status | Type | Default value |
---|---|---|
Optional | number | 25 |
Defines the minimum dimension of the fillers. For base fillers, it is the horizontal width (from a box to the wall). For top fillers, it is the verical width (from the top of the box to the ceiling).
maxWidth
Status | Type | Default value |
---|---|---|
Optional | number | 200 |
Defines the minimum dimension of the fillers. For base fillers, it is the horizontal width (from a box to the wall). For top fillers, it is the verical width (from the top of the box to the ceiling).
features
The features
attribute groups settings used to enable/disable specific features of the configurator.
mailService
Status | Type | Default value |
---|---|---|
Optional | object | false |
Defines the availability of the "mail" service in the case the configurator is set to save without user.
Example
"features": {
"mailService": true
}
brandName
Status | Type | Default value |
---|---|---|
Optional | string | `` |
Defines the brand name to be displayed in legal text in the case the mail service is set to true.
Example
"brandName": "Bryo"
projectLinkUrl
Status | Type | Default value |
---|---|---|
Optional | string | `` |
Defines the project link base url in the case the configurator is set to save without user.
Example
"projectLinkUrl": "https://bryo.fr/planner"