151 lines
6.9 KiB
PHP
151 lines
6.9 KiB
PHP
<div class="comments-section" style="margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border-color);">
|
|
<h3 style="font-size: 18px; font-weight: 600; margin-bottom: 16px;">
|
|
Comments <span style="color: var(--text-secondary); font-weight: 400;">({{ $video->comment_count }})</span>
|
|
</h3>
|
|
|
|
@auth
|
|
<div class="comment-form" style="display: flex; gap: 12px; margin-bottom: 24px;">
|
|
<img src="{{ Auth::user()->avatar_url }}" class="channel-avatar" style="width: 40px; height: 40px;"
|
|
alt="{{ Auth::user()->name }}">
|
|
<div style="flex: 1; display: flex; align-items: center; gap: 8px;">
|
|
<textarea id="commentBody{{ $video->id }}" class="form-control"
|
|
placeholder="Add a comment... Use @ to mention someone" rows="1"
|
|
style="background: transparent; border: none; border-bottom: 2px solid var(--border-color); color: var(--text-primary); border-radius: 0; padding: 12px 0 8px 0; flex: 1; margin: 0; height: 40px; font-size: 14px; outline: none; overflow: hidden;"></textarea>
|
|
<button type="button" class="action-btn comment-btn" onclick="submitComment({{ $video->id }})"
|
|
style="flex-shrink: 0;">
|
|
<span>Send</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
@else
|
|
<div
|
|
style="margin-bottom: 24px; padding: 16px; background: var(--bg-secondary); border-radius: 8px; text-align: center;">
|
|
<a href="{{ route('login') }}" style="color: var(--brand-red);">Sign in</a> to comment
|
|
</div>
|
|
@endauth
|
|
|
|
<div id="commentsList{{ $video->id }}">
|
|
@forelse($video->comments()->whereNull('parent_id')->with('user', 'replies.user')->latest()->get() as $comment)
|
|
@include('videos.partials.comment', ['comment' => $comment])
|
|
@empty
|
|
<p style="color: var(--text-secondary); text-align: center; padding: 20px;">No comments yet. Be the first to
|
|
comment!</p>
|
|
@endforelse
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function submitComment(videoId) {
|
|
const body = document.getElementById('commentBody' + videoId).value.trim();
|
|
if (!body) return;
|
|
|
|
fetch(`/videos/${videoId}/comments`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-CSRF-TOKEN': '{{ csrf_token() }}'
|
|
},
|
|
body: JSON.stringify({
|
|
body: body
|
|
})
|
|
})
|
|
.then(response => response.json())
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
alert('Failed to post comment: ' + error);
|
|
})
|
|
.then(data => {
|
|
if (data & amp; & amp; data.success) {
|
|
document.getElementById('commentBody' + videoId).value = '';
|
|
addCommentToList(data.comment, videoId);
|
|
} else {
|
|
alert('Failed to post comment');
|
|
}
|
|
});
|
|
}
|
|
|
|
function addCommentToList(comment, videoId) {
|
|
const commentsList = document.getElementById('commentsList' + videoId);
|
|
const commentHtml = `
|
|
<div class="comment-item" style="display: flex; gap: 12px; margin-bottom: 16px;" id="comment-${comment.id}">
|
|
<img src="${comment.user.avatar_url}" class="channel-avatar" style="width: 36px; height: 36px; flex-shrink: 0;" alt="${comment.user.name}">
|
|
<div style="flex: 1;">
|
|
<div style="display: flex; align-items: center; gap: 8px; margin-bottom: 4px;">
|
|
<span style="font-weight: 600; font-size: 14px;">${comment.user.name}</span>
|
|
<span style="color: var(--text-secondary); font-size: 12px;">just now</span>
|
|
</div>
|
|
<div class="comment-body" style="font-size: 14px; line-height: 1.5; word-wrap: break-word;">
|
|
${comment.body.replace(/@(\\\\w+)/g, '<span style="color: #3ea6ff; font-weight: 500;">@$1</span>')}
|
|
</div>
|
|
<div style="display: flex; gap: 12px; margin-top: 8px;">
|
|
<button onclick="toggleReplyForm(${comment.id})" style="background: none; border: none; color: var(--text-secondary); font-size: 12px; font-weight: 600; cursor: pointer; padding: 0;">
|
|
Reply
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
commentsList.insertAdjacentHTML('afterbegin', commentHtml);
|
|
const commentCount = commentsList.closest('.comments-section').querySelector('h3 span');
|
|
if (commentCount) {
|
|
const count = parseInt(commentCount.textContent.match(/\\((\\d+)\\)/)?.[2] || 0) + 1;
|
|
commentCount.textContent = `(${count})`;
|
|
}
|
|
}
|
|
|
|
function deleteComment(commentId) {
|
|
if (confirm('Are you sure you want to delete this comment?')) {
|
|
fetch(`/comments/${commentId}`, {
|
|
method: 'DELETE',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '{{ csrf_token() }}'
|
|
}
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
document.getElementById('comment-' + commentId).remove();
|
|
// Update comment count for all comment sections (simplified)
|
|
document.querySelectorAll('.comments-section h3 span').forEach(span => {
|
|
const count = parseInt(span.textContent.match(/\\((\\d+)\\)/)?.[2] || 0) - 1;
|
|
span.textContent = `(${Math.max(0, count)})`;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const commentTexts = document.querySelectorAll('.comment-body');
|
|
commentTexts.forEach(text => {
|
|
const html = text.innerHTML.replace(/@(\\w+)/g,
|
|
'<span style="color: #3ea6ff; font-weight: 500;">@$1</span>');
|
|
text.innerHTML = html;
|
|
});
|
|
});
|
|
|
|
function submitReply(videoId, parentId) {
|
|
const textarea = document.querySelector(`#replyForm${parentId} textarea`);
|
|
const body = textarea.value.trim();
|
|
if (!body) return;
|
|
|
|
fetch(`/videos/${videoId}/comments`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-CSRF-TOKEN': '{{ csrf_token() }}'
|
|
},
|
|
body: JSON.stringify({
|
|
body: body,
|
|
parent_id: parentId
|
|
})
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
location.reload();
|
|
}
|
|
});
|
|
}
|
|
</script>
|