Last active
September 14, 2022 06:42
-
-
Save mpj/ca167aad371c67372f3b to your computer and use it in GitHub Desktop.
This is the code from Monads - episode #21 of FunFunFunction (https://www.youtube.com/playlist?list=PL0zVEGEvSaeFSwPn06GKArptSxiP1Gff8)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require('node-fetch') | |
const Bacon = require('baconjs') | |
function getInPortuguese(word) { | |
// Google Translate API is a paid (but dirt cheap) service. This is my key | |
// and will be disabled by the time the video is out. To generate your own, | |
// go here: https://cloud.google.com/translate/v2/getting_started | |
const apiKey = | |
'AIzaSyB4DyRHIsNhogQXmH16YKbZfR-lTXrQpq0' | |
const url = | |
'https://www.googleapis.com' + | |
'/language/translate/v2' + | |
'?key=' + apiKey + | |
'&source=en' + | |
'&target=pt' + | |
'&q=' + encodeURIComponent(word) | |
const promise = fetch(url) | |
.then(response => response.json()) | |
.then(parsedResponse => | |
parsedResponse | |
.data | |
.translations[0] | |
.translatedText | |
) | |
const stream = Bacon.fromPromise(promise) | |
return stream | |
} | |
const stream = new Bacon.Bus() | |
stream | |
.flatMap(word => getInPortuguese(word)) | |
.map(word => word.toUpperCase()) | |
.onValue(word => console.log(word)) | |
stream.push('cat') | |
stream.push('meal') | |
stream.push('trumpet') | |
// Output of running this file will be: | |
// TROMBETA | |
// REFEIÇÃO | |
// GATO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For learning purpose, I am using this code, without the need of setting up Google Translate API 😉
Output using
map()
:Output using
flatMap()
:FunFunFunction!