-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommentSystem.js
85 lines (73 loc) · 3.6 KB
/
commentSystem.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// FileName: commentSystem.js
document.addEventListener('DOMContentLoaded', function() {
const commentSystemContainer = document.getElementById('comment-system');
// File paths as variables
const commentSystemUIPath = 'commentSystemUI.html';
const commentHandlerPath = 'commentHandler.php';
// Check if the container exists
if (commentSystemContainer) {
// Fetch and insert comment form HTML from an external HTML file
fetch(commentSystemUIPath)
.then(response => response.text())
.then(html => {
commentSystemContainer.innerHTML = html;
initializeCommentSystem();
});
}
function initializeCommentSystem() {
const commentsContainer = document.getElementById('comments-container');
const commentForm = document.getElementById('comment-form');
const postUrl = window.location.href;
function fetchComments() {
fetch(`${commentHandlerPath}?post_url=` + encodeURIComponent(postUrl))
.then(response => response.json())
.then(comments => {
const commentsContainer = document.getElementById('comments-container');
commentsContainer.innerHTML = ''; // Clear existing comments
if (comments.length === 0) {
// Display message if there are no comments
commentsContainer.innerHTML = '<p>No Comments added. Be the first to add one!</p>';
} else {
const template = document.getElementById('comment-template').content;
comments.forEach(comment => {
const clone = document.importNode(template, true);
clone.querySelector('.comment-name').textContent = comment.name;
clone.querySelector('.comment-text').textContent = comment.comment;
// Format the date and time
const date = new Date(comment.posted_at);
const options = {
year: 'numeric',
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: '2-digit',
hour12: true // Use AM/PM format
};
const formattedDateTime = date.toLocaleString('en-US', options);
clone.querySelector('.comment-date').textContent = formattedDateTime;
commentsContainer.appendChild(clone);
});
}
});
}
// Fetch and display comments on load
fetchComments();
// Handle new comment submission
commentForm.addEventListener('submit', function(event) {
event.preventDefault();
const formData = new FormData(commentForm);
const data = Object.fromEntries(formData.entries());
data.post_url = postUrl;
fetch(commentHandlerPath, {
method: 'POST',
body: JSON.stringify(data),
headers: {
'Content-Type': 'application/json'
}
}).then(() => {
fetchComments(); // Reload comments after submission
commentForm.reset(); // Clear the form entries after successful submission
});
});
}
});