πŸͺ„HTML & JS Embed

If you are using a (currently) unsupported client framework, you can use our embedded script. This will show the Widget inside an iframe.

Add Script

You copy this snippet to your code before the closing body tag.

<script type="text/javascript" src="https://embed.impler.io/embed.umd.min.js" async></script>

It will add impler variable in window, so we can call its init and show methods later.

Add Import Button

Import widgets get opened when the user clicks on Import button. So let's add an import button,

<button disabled id="impler-btn">
  Import
</button>

Initialize Widget

Before the widget gets shown you have to call its init method. So write this code, after added embed script.

<script type="text/javascript">
  let uuid = generateUuid();
  let isImplerInitialized = false;
  const ImplerBtn = document.getElementById("impler-btn");

  function generateUuid() { // (1)
    return window.crypto.getRandomValues(new Uint32Array(1))[0];
  }

  window.onload = (e) => {
    if (window.impler) {
      window.impler.init(uuid); // (2)

      const readyCheckInterval = setInterval(() => {
        if (window.impler.isReady()) { // (3)
          clearInterval(readyCheckInterval);
          ImplerBtn.removeAttribute("disabled"); // (4)
        }
      }, 1000);

      ...
    }
  }
</script>

Here is the description of what we just did,

  1. generateUuid the function generates UUID which helps add multiple import widgets on the same page.

  2. init method on impler initializes impler widget.

  3. readyCheckInterval calls impler isReady() method in the interval of 1 second to check whether the impler widget is initiated or not.

  4. Once Impler is ready we remove disabled attribute from the import button, which the user can click to open the import widget.

Show Widget

After the initialization, when the user clicks on the Import button we will call show method to open the widget,

// at #L21
ImplerBtn.addEventListener("click", (e) => {
  window.impler.show({
    uuid,
    templateId: "", // templateId
    projectId: "", // projectId
    accessToken: "", // accessToken
  });
});

That's it, your app is now ready to onboard user data into your application.

Listening to Events

Impler instance provides message an event listener which gets called for various events happening with the widget. Here is how to attach event listener,

window.impler.on('message', (eventData) => {}, uuid);

eventData follows the { type, value } structure.

typevalueDescription

UPLOAD_STARTED

ImportData

User has started import by selecting file and clicking on See Mapping

UPLOAD_TERMINATED

ImportData

The user canceled the import in the middle of the import process.

UPLOAD_COMPLETED

ImportData

The user has completed the import.

CLOSE_WIDGET

Complete Code Example

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Acme Inc</title>
    <style>
      body {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      #btnOpenImpler {
        padding: 15px 0;
        width: 200px;
        border: none;
        outline: none;
        font-family: sans-serif;
        background-color: rgb(122, 122, 233);
        color: aliceblue;
        font-size: 16px;
        border-radius: 5px;
        transition: transform 0.1s ease;
        cursor: pointer;
      }
  
      #btnOpenImpler:hover {
        box-shadow: 0 5px 1rem 0 rgb(87, 87, 179, 50%);
      }
  
      #btnOpenImpler:active {
        transform: translateY(2px);
      }
    </style>
  </head>
  
  <body>
    <button class="btn btn-primary" disabled id="btnOpenImpler">
      Import
    </button>
  
    <script type="text/javascript" src="https://embed.impler.io/embed.umd.min.js" async></script>
    <script type="text/javascript">
      let uuid = generateUuid();
      let isImplerInitialized = false;
      const EleBtnOpenImpler = document.getElementById("impler-btn");
  
      function generateUuid() {
        return window.crypto.getRandomValues(new Uint32Array(1))[0];
      }
  
      window.onload = (e) => {
        if (window.impler) {
          window.impler.init(uuid);
  
          const readyCheckInterval = setInterval(() => {
            if (window.impler.isReady()) {
              clearInterval(readyCheckInterval);
              EleBtnOpenImpler.removeAttribute("disabled");
            }
          }, 1000);
  
          EleBtnOpenImpler.addEventListener("click", (e) => {
            window.impler.show({
              uuid,
              templateId: "",
              projectId: "",
              accessToken: "",
              // Get these credentials from https://web.impler.io, (create import, add columns, got to "snippet", open "Add Import Button" to find credentials)
              // find out about more options here: https://docs.impler.io/widget/react-embed#props
            });
          });
        }
      };
    </script>
  </body>
</html>

Data Seeding in Sample File

You can provide default data to fill in the Sample Excel file that gets generated from the Import widget. Default data act as a placeholder for the user to further add or update the data in the file.

Here is an example of how to provide data to fill in the sample file,

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  data: [
    { country: 'ABC' },
    { country: 'DEF' },
    { country: 'GHE' },
  ]
});

Providing Runtime Schema

The schema and output provided in the web.impler.io portal for any import behave as default values for any Import. It's possible to override the default schema and output, to adapt dynamic nature of Import.

Here is an example of how to provide dynamic schema and output,

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  schema: JSON.stringify([
    {
      key: 'country',
      name: 'Country',
      type: 'String'
    }
  ]),
  output: JSON.stringify({
      "%data%": {
        "country_id": "{{country}}"
      },
      "page": "{{page}}",
      "chunkSize": "{{chunkSize}}",
      "isInvalidRecords": "{{isInvalidRecords}}",
      "template": "{{template}}",
      "uploadId": "{{uploadId}}",
      "fileName": "{{fileName}}",
      "extra": "{{extra}}"
    })
});

Passing Extra Parameters

It's an obvious need that we want to pass userId or orgId representing who imported the data. In that case, you can pass that data in an extra parameter.

You can pass string, object, or array in extra. Here is an example of how to do it,

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  extra: JSON.stringify({
      userId: '4ddhodw3',
      time: new Date().this string()
  })
});

The extra parameters get sent to an application during the webhook call.

Changing Import Title

By default, the Import widget takes the name of the Import to show in the title. But it's possible to change the title from the implementation side too. Helpful to keep the title separate from what the name is given in the web portal.

Here is how,

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  title: "Employee Import"
});

Changing Theme Color

You can pass a primary color to the import widget, which will update the colors of all buttons accordingly to match your app's theme color.

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  primaryColor: '#5f45ff'
});

Providing Authentication Header Value

In case the backend endpoint is authenticated with the token, it's possible to provide token value from the implementation side.

window.impler.show({
  uuid,
  templateId: "",
  projectId: "",
  accessToken: "",
  authHeaderValue: '...'
});

Have any doubts? Shoot us a message directly on Discord.

Last updated