Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Created April 11, 2017 02:20
Show Gist options
  • Save midnightcodr/bd8f9cd4414f5571774c141d1e0865d8 to your computer and use it in GitHub Desktop.
Save midnightcodr/bd8f9cd4414f5571774c141d1e0865d8 to your computer and use it in GitHub Desktop.
inquirer with async/await
const inquirer = require('inquirer')
const genList = (list) => {
const choices = list.map((item, index) => {
return {
key: index,
name: `${item.id}: ${item.quantity}@${item.price}`,
value: item.id
}
})
return {
type: 'rawlist',
message: 'Which order to pick',
name: 'orders',
choices: choices
}
}
const getList = () => {
return Promise.resolve([
{
id: 'A001',
quantity: 20,
price: 103
},
{
id: 'A002',
quantity: 75,
price: 2.03
},
{
id: 'A003',
quantity: 16,
price: 900.01
}
])
}
const confirmUpdate = (id) => {
return {
type: 'confirm',
name: 'toUpdate',
message: `Would you like to update ${id}?`
}
}
/*
// Without using async/await:
inquirer.prompt({
type: 'input',
name: 'account',
message: 'What is the account?'
}).then(answers => {
return getList().then(list => {
return inquirer.prompt(genList(list)).then( answers1 => {
return answers1.orders
})
})
}).then(id => {
return inquirer.prompt(confirmUpdate(id))
}).then(answers => {
// it's not easy to access the order id selected
if(answers.toUpdate) {
return 'to update'
} else {
return 'NOT to update'
}
}).then(console.log)
*/
// async/await awesomeness
async function main() {
const getAccount = await inquirer.prompt({
type: 'input',
name: 'account',
message: 'What is the account?'
})
const orderList = await getList()
const getOrder = await inquirer.prompt(genList(orderList))
const getConfirm = await inquirer.prompt(confirmUpdate(getOrder.orders))
if(getConfirm.toUpdate) {
console.log('to update', getOrder.orders, 'for account', getAccount.account)
} else {
console.log('NOT to update', getOrder.orders)
}
}
main()
@tck517
Copy link

tck517 commented May 18, 2021

Thank you!

@adriaan29A
Copy link

And about a year later, thank you also! This simple example is really helpful. There is a lot of confusing/bad info out there on promises/async/await etc and I'm glad I managed to stumble upon this!

@NeelCheo
Copy link

Amazing, Thankyou.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment