1vtex install codeby.dorismobi 0.3.30
1peerDependencies {
2 “codeby.dorismobi”: “0.x”
3}
1{
2 “flex-layout.col#right-col”: {
3 “props”: {
4 “preventVerticalStretch”: true,
5 “rowGap”: 0
6 {,
7 “children”: [
8 “flex-layout.row#product-name”,
9 “product-rating-sumary”,
10 “flex-layout.row#list-price-savings”,
11 “flex-layout.row#selling-price”,
12 “product-installments”,
13 “product-separator”,
14 “product-identifier.product”,
15 “sku-selector”,
16 “product-quantity”,
17 “product-assembly-options”,
18 “product-gifts”,
19 “flex-layout.row#buy-button”,
20 “doris-button”,
21 “availability-subscriber”,
22 “shipping-simulator”,
23 “share#default”
24 ]
25 }
26 }
1<div id="doris-widget"></div>
1<script src="https://mix.doris.mobi/doris-widget.js">
Key | Value (type) | Description |
---|---|---|
apiKey (Required) | string | Partner's API key, previously provided by Doris. |
theme (optional) | { colors: { primary: string (hex) } } | Hexadecimal color to customize highlights and call-to-action (CTA) elements. |
splashImage (optional) | string | URL of the image displayed in the SplashScreen. It needs to be in an HTTPS environment. If not provided, the Widget will use a default Doris image. |
totemExperience (optional) | boolean | Activate camera flow for use in a kiosk. Default: false. |
handleBuyButton (optional) | function | Function to add products to the e-commerce cart. The partner needs to configure their own function that will be used by the widget for cart integration. The function must return true or false for success or failure when adding the product to the cart. The first one is an array of SKUs and the second one is an object with one key inside (“skus”) and inside this key there is an array of objects with the “identifier” and “sellerId” keys whose values are the sku and the seller id, respectively. Both of the values are strings. |
handleGoToCartButton (optional) | function | Function to redirect to the cart URL. The partner needs to configure their own function that will be used by the widget for cart integration. |
position (optional) | object | An object containing the key "x" whose value can be "right" or "left". The default value is "left" if you omit this key. |
language (optional) | string | Should be “en”, “pt” or “es”. If not provided the widget will use the language attribute from the html document. If the document language is not a supported language the widget will use the default language, which is english. |
1<body>
2 ...
3
4 <script src="https://mix.doris.mobi/doris-widget.js">
5 <script>
6 DorisWidget.init({
7 apiKey: 'cf854bbc-c239-11eb-8529-0242ac130003',
8 splashImage: 'https://doris-media-production.s3.sa-east-1.amazonaws.com/media/splash.png',
9 totemExperience: false,
10 language: 'pt',
11 position: {
12 x: 'right',
13 },
14 theme: {
15 colors: {
16 primary: '#00A2FF'
17 }
18 },
19 handleBuyButton: function (sku, data) {
20 addToCart(sku, data)
21 }
22 handleGoToCartButton: function () {
23 getGoToCart()
24 }
25 })
26 </script>
27</body>
Key | Value (type) | Description |
---|---|---|
sku (optional) | string | SKU of the product to be verified. If not provided, the function will always return true. |
apiKey (Required) | string | Partner's API key, provided previously by Doris. |
1<script>
2DorisWidget.verify({
3 sku: 'mI1u293p2nJHn1',
4 apiKey: 'cf854bbc-c239-11eb-8529-0242ac130003',
5})
6</script>
Key | Value (type) | Description |
---|---|---|
skus (optional) | array | List of SKUs that will be worn on the model if they exist. |
defaultGender (optional) | string | Valid values: "male" or "female". Specifies the gender in which the widget will be initially started for the user if no SKU is identified for dressing. In its absence, the default gender chosen by the partner will be used. |
1<script>
2 DorisWidget.start({
3 skus: ['mI1u293p2nJHn1'],
4 defaultGender: 'male'
5 })
6</script>
Key | Value (type) | Description |
---|---|---|
products | array | An array of products. |
products[] | object sku:string, quantity: number, total: float, identifier (opcional): number | string | An object containing the SKU of the product, the quantity purchased, the total value of the item (unit price X quantity), and an identifier (optional) - if this value is already used in the SKU, this information is not necessary. |
id | number | string | Order number. |
value | float | Total value of the order. |
currency | string | Used currency (standard ISO 4217, default value: BRL - Brazilian Real). |
1DorisWidget.order({
2 "id": 1,
3 "value": 389.9,
4 "currency": "BRL"
5 "products": [
6 {
7 "sku": "mI1u293p2nJHn1",
8 "quantity": 2,
9 "total": 389.9,
10 "identifier": "mI1u293p2nJHn1-Branca"
11 }
12 ]
13})
Key | Value (type) | Description |
---|---|---|
skus (optional) | array | List of product SKUs to be verified by the Verify method. If not provided, the function will always return true. Should be used in conjunction with the key validateSku: true. |
selector (required) | string | Selector pointing to the container (div, section, etc.) where the button will be injected. It's important to define width rules directly on this container, as the button will fill up the entire width. |
validateSku (required) | boolean | Defines whether the button should appear only if the product informed in the skus key is available in Doris. If false, the button will render without validation. We recommend true when used on product detail pages and false for use on landing or banners. |
apiKey (required) | string | Partner's API key. If not provided, the validateSku won't be performed. |
backgroundImages (optional) | string | Array of URLs of images that will be displayed within the injected button. Doris provides these images. Note: If you want a customized image from your own catalog, please contact Doris Support to arrange this. |
description (optional) | string | String to be displayed next to the button. If not provided, a default text will be shown. |
showBadge (optional) | boolean | It defines whether the 'NEW' tag will be displayed in red at the top left corner of the button. Doris recommends enabling the 'NEW' tag to bring more visibility to the Doris Widget. |
1DorisWidget.injectButton({
2 selector: '#doris-trigger-wrapper',
3 skus: ['A-SKU-CODE'],
4 validateSku: true,
5 apiKey: 'MY-API-KEY',
6 backgroundImages: [
7 'https://doris-media-production.s3.sa-east-1.amazonaws.com/mix-static-assets/doris-trigger-default-images/F09.png',
8 'https://doris-media-production.s3.sa-east-1.amazonaws.com/mix-static-assets/doris-trigger-default-images/F13.png',
9 'https://doris-media-production.s3.sa-east-1.amazonaws.com/mix-static-assets/doris-trigger-default-images/M01.png',
10 'https://doris-media-production.s3.sa-east-1.amazonaws.com/mix-static-assets/doris-trigger-default-images/M02.png',
11 ],
12 description: 'This is a custom description',
13 showBadge: true,
14 })
Copyright © 2024 Doris. All rights reserved.