Advertisement
Onesible

Untitled

Apr 3rd, 2025
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function attachEvents() {
  2.     let postUrl = 'http://localhost:3030/jsonstore/blog/posts';
  3.     let commentsUrl = 'http://localhost:3030/jsonstore/blog/comments';
  4.  
  5.     document.getElementById('btnLoadPosts').addEventListener('click', () => { onPostsRequest(postUrl) });
  6.     document.getElementById('btnViewPost').addEventListener('click', () => { onViewPost(commentsUrl) });
  7. }
  8.  
  9. async function onPostsRequest(url) {
  10.     let data;
  11.  
  12.     try {
  13.         let response = await fetch(url);
  14.         data = await response.json();
  15.     } catch {
  16.         return;
  17.     }
  18.  
  19.     let selectPost = document.getElementById('posts');
  20.  
  21.     for (let [key, value] of Object.entries(data)) {
  22.         let option = document.createElement('option');
  23.  
  24.         option.textContent = value.title;
  25.         option.value = key;
  26.  
  27.         selectPost.appendChild(option);
  28.     }
  29. }
  30.  
  31. async function onViewPost(url) {
  32.     let post = document.getElementById('posts');
  33.     let postComments;
  34.     let postData;
  35.  
  36.     try {
  37.         const [postResponse, commentsResponse] = await Promise.all([
  38.             fetch('http://localhost:3030/jsonstore/blog/posts'),
  39.             fetch(url)
  40.         ]);
  41.  
  42.         postData = await postResponse.json();
  43.  
  44.         let commentsData = await commentsResponse.json();
  45.         postComments = Object.values(commentsData).filter(comment => comment.postId === post.value);
  46.     } catch {
  47.         return;
  48.     }
  49.  
  50.     // Fetch-вах поста с URL-а + post.value и после долните две ги сетвах
  51.     // с postData.title и postData.body. При мен се показваше правилно,
  52.     // 3ти и 4ти тест не минаваха.
  53.  
  54.     document.getElementById('post-title').textContent = post.selectedOptions[0].textContent;
  55.     document.getElementById('post-body').textContent = postData[post.value].body;
  56.    
  57.     let comments = document.getElementById('post-comments');
  58.     comments.replaceChildren();
  59.  
  60.     for (let comment of postComments) {
  61.         let li = document.createElement('li');
  62.         li.textContent = comment.text;
  63.         li.id = comment.id;
  64.  
  65.         comments.appendChild(li);
  66.     }
  67. }  
  68.  
  69. attachEvents();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement