xxxxxxxxxx
34
// Coding Train Video: https://www.youtube.com/watch?v=ziBO-U2_t3k
let data;
let txt = '$$Exclamation$$! they said $$Adverb$$ as they jumped into their $$Noun$$ and flew off with their $$Adjective$$ $$PluralNoun$$.'
function setup() {
noCanvas();
Papa.parse('https://docs.google.com/spreadsheets/d/e/2PACX-1vSiJDczupcvlAJxd70RJ9hZina9cqweCiTj1EkYrH_17FhFBjdMFTEY2TOMmhwGBHGR05y7QRXLNbo6/pub?output=csv', {
download: true,
header: true,
// Call back function
complete: function(results) {
let stuff = results.data
data = stuff
// For testing
console.log(stuff)
}
})
var button = createButton('generate madlib');
button.mousePressed(generate);
}
function replacer(match, pos) {
let entry = random(data);
return entry[pos];
}
function generate() {
// console.log('generate');
let madlib = txt.replace(/\$\$(.*?)\$\$/g, replacer);
createP(madlib);
}