Steps Module

The use of this library is for the visualization of the steps only. This will be displayed throughout the job.

For the display of the steps it requires the use of the steps parameter call.

Consider the following examples:

<!DOCTYPE html>
<head>
    <title>LSW v3 Embed</title>
</head>
<body>
    <div id="instaleap-lsw-v3"></div>
</body>

<script src="https://xandar-lsw-v3.instaleap.io/lib/steps.js"></script>
<script>
    const params = {
        job: "myJob",
        token: "myToken",
        container: "#instaleap-lsw-v3"
    }
    window.instaleap.steps.render(params)
</script>
</html>
https://xandar-lsw-v3.instaleap.io/steps?job=myJob&token=myToken

Example:

The list of parameters is as follows

You can change the default colors used in the application by setting de primary and secondary colors parameters.

You can customize the color for the main background by setting the "backgroundColor" parameter.

📘

Color Value

You can change the default colors used in the application by setting de primary and secondary colors parameters.

You can customize the color for the main background by setting the "backgroundColor" parameter.

Specific configuration parameters

ParameterDescription
primaryColorUsed to change the primary color of the content.
secondaryColorUsed to change the secondary color of the content.
backgroundColorUsed to change the background color of the main content

You can change the font family used in the application by setting the fontFamily parameter

📘

Font Availability

Live status Web doesn't support any fonts by default, so make sure you have the fonts available on your site so that the widget can use them

Specific configuration parameters

ParameterDescription
fontFamilyAny font you have available in your platform
Example: monospace

The parameter "language" allows configuring the displaying locales on the application

Supported Locales

👍

Supported Languages

We Follow the ISO 639-1 standard language codes

es: Spanish (Spain)
en: English
pt: Portuguese (Portugal)
pt-br: Portuguese (Brazil)

📘

Default Locale

  • If no language is being set, the app will try to use the locale used by the browser.

  • If no supported language (listed above) is being set by neither the parameter nor the browser, the content will be displayed in Spanish

Specific configuration parameters

ParameterDescription
languageparameter used to change the language of the content
Default: Spanish

📘

Customize Text

Title
You can customize the step title in the view Steps using the parameter stepViewTitle.

Address
You can customize the destination or source address according to the type of operational model.

ParameterDescription
stepViewTitleParameter to customize the title of the step view
showAddressDisplays the address according to the operating model
default: false
options: true or false

📘

Hide parameters

Order number
You can hide text in the step view using the specified parameter.

Delivery code
You can hide the delivery code in the step view using the specified parameter.

ParameterDescription
Hide order numberAllows you to show or hide the number order in the header.
default: "false"
options: "false: || "true"
Hide Delivery CodeAllows you to show or hide the delivery code order.
default: "false"
options: "false: || "true"

📘

Text size

You can customize the size of the texts

  • Title
  • Subtitle
  • Steps
ParameterDescription
homeBarFontSizeTitleParameter to customize the font size (title)
homeBarFontSizeSubtitleParameter to customize the font size (subtitle)
homeBarFontSizeStepsParameter to customize the font size (steps)

Custom step names

You can change the default "Title" and "Help Text" used in the order steps by setting them via URL parameter on each step.

📘

Custom Title and Help Text with Locales

Beware that custom Title and Help Text are not affected by locale configurations

We recommend configuring also the language parameter when using custom step names, to avoid mixing the language of the content, retrieved from the browser, and the titles you are presenting.

📘

Library mode params Encoding

In library mode, the configuration is set in the "steps” attribute.

📘

URL Params Encoding

Remember that we require to comply with (UTF-8) encoding when sending query params. so that if your custom name string has whitespace, you should replace it with the symbol "%20".

ie: "stepConfirmed=Custom title to confirmed step" => stepConfirmed=Custom%20title%20to%20confirmed%20step"

Specific configuration parameters

ParameterDescription
stepConfirmedParameter used to change the name of the Confirmed step

- Default: Confirmed
stepPickingParameter used to change the name of the Picking step

- Default: Picking
stepGoingToDestinationParameter used to change the name of the Going To Destination step

- Default: Going to destination
stepReadyToPickupParameter used to change the name of the Ready To Pickup step

- Default: Picked up
stepDeliveredParameter used to change the name of the Delivered step

- Default: Delivered
stepPickedUpParameter used to change the name of the Picked up step

- Default: Picked up

You can change the default "Icon" used in the order steps by setting them via URL parameter on each step.

📘

Custom Icon with Locales

You can customize the icons.

Beware that custom Icon are not affected by primary color or secondary color

ParameterDescription
homeBarIconSizeParameter to customize the size of the icons for each step
stepConfirmedIconParameter used to change the icon of the Confirmed step
stepPickingIconParameter used to change the icon of the Picking step
stepPickingIconActiveString which will be used as display icon during the Picking order step when is in Active status.
stepPickingIconInactiveString which will be used as display icon during the Picking order step when is in Inactive status.
stepGoingToDestinationIconParameter used to change the icon of the Going To Destination step
stepGoingToDestinationIconActiveString which will be used as display icon during the Going To Destination order step when is in Active status.
stepGoingToDestinationIconInactiveString which will be used as display icon during the Going To Destination order step when is in Inactive status.
stepReadyToPickupIconParameter used to change the icon of the Ready To Pickup step
stepReadyToPickupIconActiveString which will be used as display icon during the Ready To Pickup order step when is in Active status.
stepReadyToPickupIconInactiveString which will be used as display icon during the Ready To Pickup order step when is in Inactive status.
stepPickedUpIconParameter used to change the icon of the Picked up step
stepPickedUpIconActiveString which will be used as display icon during the Picked Up order step when is in Active status.
stepPickedUpIconInactiveString which will be used as display icon during the Picked Up order step when is in Inactive status.
stepDeliveredIconParameter used to change the icon of the Delivered step
stepDeliveredIconActiveString which will be used as display icon during the Delivered order step when is in Active status.
stepDeliveredIconInactiveString which will be used as display icon during the Delivered order step when is in Inactive status.