typeform-payload-helpers

Helper functions to crawl form payload responses data from Typeform

Usage no npm install needed!

<script type="module">
  import typeformPayloadHelpers from 'https://cdn.skypack.dev/typeform-payload-helpers';
</script>

README

typeform-payload-helpers

Build Status

Helper functions to crawl form payload responses data from Typeform.

This library is in beta since it needs stronger tests around different Typeform block types.

Table of contents

Motivations

The payload of a webhook from Typeform contains a definition property which holds an array of field descriptors and an array of the answers from the respondent.

A field descriptor looks similar to this:

payload object

{
  "definition": {
    "fields": [
      {
        "id": "JwWggjAKtOkA",
        "title": "What is your first name?",
        "type": "short_text",
        "ref": "fhg908-ewb047-gfp261-mxw563",
        "allow_multiple_selections": false,
        "allow_other_choice": false
      }
    ]
  },
  "answers": [ ]
}

The answer to that field will contain the type, value and the reference of the field:

payload object

{
  "definition": {
    "fields": [ ]
  },
  "answers": [
    {
      "type": "text",
      "text": "Laura",
      "field": {
        "id": "JwWggjAKtOkA",
        "type": "short_text"
      }
    }
  ]
}

When processing these responses, it can be difficult to identify to which question the answer belongs, but we can use Typeform's Create API to PUT a new version of the form definition with more readable ref values we can access to.

Read more about this in Typeform's developer portal.

Once we have more readable refs in our form definition we can use it to get the field id from it, and with that id get the answer block.

In order to make this process less repetitive and avoid copy pasting the same approach when processing responses, this library provides a set of helpers available for web or node applications.

Installation

Add it to your application using a package manager.

# npm
npm i typeform-payload-helpers --save

# yarn
yarn add typeform-payload-helpers

Main helpers

getAnswerValueFromRef

Given a ref string and a payload object containing both the definition and the answers arrays, returns the value of the corresponding answer.

import { getAnswerValueFromRef } from 'typeform-payload-helpers';

getAnswerValueFromRef('first_name', payload);
// 'Phoebe'

getAnswerValueFromId

In case you rely on an id mapping instead of refs, you can use this method. Given an id string and a payload object containing both the definition and the answers arrays, returns the value of the corresponding answer.

import { getAnswerValueFromId } from 'typeform-payload-helpers';

getAnswerValueFromId('JjpjdSGicVx1', payload);
// 'Phoebe'

Extended helpers

Though these methods are used internally by getAnswerValueFromRef and getAnswerValueFromId to get answer values, they are available in case a developer finds them useful.

getIdFromRef

Given a ref string and an object containing the form definition returns the corresponding field id.

import { getIdFromRef } from 'typeform-payload-helpers';

getIdFromRef('first_name', payload);
// returns 'JwWggjAKtOkA'

getAnswerFromId

Given an id and an object containing the form definition and an answers array returns the corresponding answer block.

import { getAnswerFromId } from 'typeform-payload-helpers';

getAnswerFromId('JwWggjAKtOkA', payload);

//  returns {
//     "type": "text",
//     "text": "Laura",
//     "field": {
//       "id": "JwWggjAKtOkA",
//       "type": "short_text"
//     }
//   }

getAnswerValue

Given an answer object returns the corresponding response value.

import { getAnswerValue } from 'typeform-payload-helpers';

const answer = {
  type: 'text',
  text: 'Laura',
  field: {
    id: 'JwWggjAKtOkA',
    type: 'short_text'
  }
};

getAnswerValue(answer);
// 'Laura'

About the payload parameter

Notice that all payload parameters have the same structure as an object received from a Webhooks post. You can see an example on the platform's documentation.

If you have a form definition stored in other format pass it inside an object.

import { getIdFromRef } from 'typeform-payload-helpers';
import customFormDefinition from './custom-form-definition.js'

// pass the object with the 'definition' property name
getIdFromRef('some_custom_ref', { definition: customFormDefinition });

Contributing

This repository use yarn for managind the dependencies.

  • Clone or fork this repository.
  • Run yarn to install the dependencies.
  • Apply your fixes or features.

Update or add tests if necessary.

  • Run yarn test to make sure there's no regression.
  • Submit a PR 🎉

-You can do yarn test --watch when working on TDD mode.

TODO

  • Add linting and precommit hooks.