Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 38 additions & 33 deletions adaptors/kobotoolbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,43 +113,48 @@ With this OpenFn job snippet we fetch submission data from a list of surveys,
indicated by their IDs.

```js
// set the cursor to use for this run
cursor($.lastEnd || $.manualCursor || '2020-11-20T14:32:43.325+01:00');

// set the cursor for the next run
cursor('now', {
key: 'lastEnd',
format: c => dateFns(c, 'YYYY-MM-DD:HH:mm:ss'),
});

fn(state => {
console.log('Current cursor value:', state.lastEnd);
// Set a manual cursor if you'd like to only fetch data after this date.
const manualCursor = '2020-11-20T14:32:43.325+01:00';
state.data = {
surveys: [
//** Specify new forms to fetch here **//
{
id: 'aVdh90L9979L945lb02',
name: 'Initial Data Collection',
},
{
id: 'bkgIF96fK7v9n7Hfj2',
name: 'Follow-up',
},
].map(survey => ({
formId: survey.id,
name: survey.name,
url: `https://kf.kobotoolbox.org/api/v2/assets/${survey.id}/data/?format=json`,
query: `&query={"end":{"$gte":"${state.lastEnd || manualCursor}"}}`,
})),
};
console.log('Current cursor value:', state.cursor);

state.surveys = [
//** Specify new forms to fetch here **//
{
formId: 'aVdh90L9979L945lb02',
name: 'Initial Data Collection',
},
{
formId: 'bkgIF96fK7v9n7Hfj2',
name: 'Follow-up',
},
];
return state;
});

each(dataPath('surveys[*]'), state => {
const { url, query, formId, name } = state.data;
return get(`${url}${query}`, {}, state => {
state.data.submissions = state.data.results.map((submission, i) => {
return {
i,
// Here we append the names defined above to the Kobo form submission data
formName: name,
};
});
});
});
each(
$.surveys,
getSubmissions($.data.formId, {
query: { end: { $gte: `${$.cursor}` } },
}).then(state => {
// Lookup each form's id from the previous state
const { name, formId } = state.references.at(-1);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should have a comment here explaining this line. Like Lookup each form's id from the previous state

I also wish we had an easier answer to this. After the each it's always super hard to chain functionality based on the item under iteration. I guess this works but I wish we ad something more elegant.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I totally agree, every time i write that code my eyes squint a little and i get ptsd from my previous job writing training having to explain why references.at(-1) 😮‍💨


state.submissions[formId] = {
name,
submissions: state.data,
};

return state;
})
);
```

Check out some of our
Expand Down