//18. refreshPosts //a. Dependencies: removeButtonListeners, deleteChildElements, displayPosts, //addButtonListeners //b. Is an async function //c. Receives posts JSON data as a parameter //d. Call removeButtonListeners //e. Result of removeButtonListeners is the buttons returned from this function //f. Call deleteChildElements with the main element passed in as the parameter //g. Result of deleteChildElements is the return of the main element //h. Passes posts JSON data to displayPosts and awaits completion //i. Result of displayPosts is a document fragment //j. Call addButtonListeners //k. Result of addButtonListeners is the buttons returned from this function //l. Return an array of the results from the functions called: [removeButtons, main, //fragment, addButtons]
//18. refreshPosts
//a. Dependencies: removeButtonListeners, deleteChildElements, displayPosts,
//addButtonListeners
//b. Is an async function
//c. Receives posts JSON data as a parameter
//d. Call removeButtonListeners
//e. Result of removeButtonListeners is the buttons returned from this function
//f. Call deleteChildElements with the main element passed in as the parameter
//g. Result of deleteChildElements is the return of the main element
//h. Passes posts JSON data to displayPosts and awaits completion
//i. Result of displayPosts is a document fragment
//j. Call addButtonListeners
//k. Result of addButtonListeners is the buttons returned from this function
//l. Return an array of the results from the functions called: [removeButtons, main,
//fragment, addButtons]
Still fails help please
const refreshPosts = async (posts) => {
if (!posts){
return undefined;
}
let buttons = removeButtonListeners();
let myMain = deleteChildElements(document.querySelector("main"));
let fragment = await displayPosts(posts);
let button = addButtonListeners();
return [buttons, myMain, fragment, button];
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps