fix: Improve formatting and spacing in blog edit and index pages

This commit is contained in:
Wini_Fy
2026-02-03 17:04:54 +07:00
parent 538317eade
commit 8ceb5684e4
2 changed files with 137 additions and 127 deletions

View File

@@ -211,28 +211,30 @@
<label class="form-label fw-medium">Categories</label>
<div class="d-flex gap-2 mb-2">
<input type="text" class="form-control form-control-sm"
id="newCategoryInput"
placeholder="Enter new category name">
id="newCategoryInput" placeholder="Enter new category name">
<button type="button" class="btn btn-sm btn-outline-primary"
id="addCategoryBtn">
<i class="fas fa-plus me-1"></i>Add
</button>
</div>
<div class="form-check-group" id="categoriesContainer" style="max-height: 300px; overflow-y: auto;">
<div class="form-check-group" id="categoriesContainer"
style="max-height: 300px; overflow-y: auto;">
<% categories.forEach(category=> { %>
<div class="form-check d-flex align-items-center justify-content-between mb-2" data-category-id="<%= category._id %>">
<div class="form-check d-flex align-items-center justify-content-between mb-2"
data-category-id="<%= category._id %>">
<div class="d-flex align-items-center">
<input class="form-check-input" type="checkbox"
name="category" value="<%= category.name %>"
id="category_<%= category._id %>" <%=blog.category &&
blog.category.includes(category.name) ? 'checked' : ''
%>>
id="category_<%= category._id %>" <%=blog.category
&& blog.category.includes(category.name) ? 'checked'
: '' %>>
<label class="form-check-label ms-2"
for="category_<%= category._id %>">
<%= category.name %>
</label>
</div>
<button type="button" class="btn btn-sm btn-outline-danger delete-category-btn"
<button type="button"
class="btn btn-sm btn-outline-danger delete-category-btn"
data-category-id="<%= category._id %>"
data-category-name="<%= category.name %>"
title="Delete category">
@@ -241,7 +243,8 @@
</div>
<% }); %>
</div>
<div class="form-text">Select one or more categories for this blog post.</div>
<div class="form-text">Select one or more categories for this blog post.
</div>
</div>
<!-- Tags Column -->
@@ -249,29 +252,31 @@
<label class="form-label fw-medium">Tags</label>
<div class="d-flex gap-2 mb-2">
<input type="text" class="form-control form-control-sm"
id="newTagInput"
placeholder="Enter new tag name">
id="newTagInput" placeholder="Enter new tag name">
<button type="button" class="btn btn-sm btn-outline-primary"
id="addTagBtn">
<i class="fas fa-plus me-1"></i>Add
</button>
</div>
<div class="form-check-group" id="tagsContainer" style="max-height: 300px; overflow-y: auto;">
<div class="form-check-group" id="tagsContainer"
style="max-height: 300px; overflow-y: auto;">
<% tags.forEach(tag=> { %>
<div class="form-check d-flex align-items-center justify-content-between mb-2" data-tag-id="<%= tag._id %>">
<div class="form-check d-flex align-items-center justify-content-between mb-2"
data-tag-id="<%= tag._id %>">
<div class="d-flex align-items-center">
<input class="form-check-input" type="checkbox" name="tags"
value="<%= tag.name %>" id="tag_<%= tag._id %>"
<%=blog.tags && blog.tags.includes(tag.name) ? 'checked'
: '' %>>
<label class="form-check-label ms-2" for="tag_<%= tag._id %>">
<input class="form-check-input" type="checkbox"
name="tags" value="<%= tag.name %>"
id="tag_<%= tag._id %>" <%=blog.tags &&
blog.tags.includes(tag.name) ? 'checked' : '' %>>
<label class="form-check-label ms-2"
for="tag_<%= tag._id %>">
<%= tag.name %>
</label>
</div>
<button type="button" class="btn btn-sm btn-outline-danger delete-tag-btn"
<button type="button"
class="btn btn-sm btn-outline-danger delete-tag-btn"
data-tag-id="<%= tag._id %>"
data-tag-name="<%= tag.name %>"
title="Delete tag">
data-tag-name="<%= tag.name %>" title="Delete tag">
<i class="fas fa-trash"></i>
</button>
</div>
@@ -314,7 +319,8 @@
Mark as Featured Post
</label>
</div>
<div class="form-text">Featured posts can be highlighted on the blog page.</div>
<div class="form-text">Featured posts can be highlighted on the blog
page.</div>
</div>
</div>
</div>
@@ -371,7 +377,7 @@
try {
<% if (blog.content) { %>
const blogContentRaw = <%- JSON.stringify(blog.content) %>;
const blogContentRaw = <% - JSON.stringify(blog.content) %>;
if (blogContentRaw) {
if (typeof blogContentRaw === 'string' && blogContentRaw.trim()) {
// Try to parse as JSON string
@@ -416,7 +422,7 @@
try {
<% if (blog.contentAfterQuote) { %>
const blogContentAfterQuoteRaw = <%- JSON.stringify(blog.contentAfterQuote) %>;
const blogContentAfterQuoteRaw = <% - JSON.stringify(blog.contentAfterQuote) %>;
if (blogContentAfterQuoteRaw) {
if (typeof blogContentAfterQuoteRaw === 'string' && blogContentAfterQuoteRaw.trim()) {
// Try to parse as JSON string
@@ -750,7 +756,7 @@
const newCategoryInput = document.getElementById('newCategoryInput');
const categoriesContainer = document.getElementById('categoriesContainer');
addCategoryBtn.addEventListener('click', async function() {
addCategoryBtn.addEventListener('click', async function () {
const categoryName = newCategoryInput.value.trim();
if (!categoryName) {
alert('Please enter a category name');
@@ -815,7 +821,7 @@
});
// Allow Enter key to add category
newCategoryInput.addEventListener('keypress', function(e) {
newCategoryInput.addEventListener('keypress', function (e) {
if (e.key === 'Enter') {
e.preventDefault();
addCategoryBtn.click();
@@ -827,7 +833,7 @@
const newTagInput = document.getElementById('newTagInput');
const tagsContainer = document.getElementById('tagsContainer');
addTagBtn.addEventListener('click', async function() {
addTagBtn.addEventListener('click', async function () {
const tagName = newTagInput.value.trim();
if (!tagName) {
alert('Please enter a tag name');
@@ -891,7 +897,7 @@
});
// Allow Enter key to add tag
newTagInput.addEventListener('keypress', function(e) {
newTagInput.addEventListener('keypress', function (e) {
if (e.key === 'Enter') {
e.preventDefault();
addTagBtn.click();
@@ -902,8 +908,8 @@
</script>
<!-- Delete Category Confirmation Modal -->
<div class="modal fade" id="deleteCategoryModal" tabindex="-1" aria-labelledby="deleteCategoryModalLabel" aria-hidden="true"
data-bs-backdrop="true" data-bs-keyboard="true">
<div class="modal fade" id="deleteCategoryModal" tabindex="-1" aria-labelledby="deleteCategoryModalLabel"
aria-hidden="true" data-bs-backdrop="true" data-bs-keyboard="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-danger text-white">
@@ -914,7 +920,8 @@
aria-label="Close"></button>
</div>
<div class="modal-body">
<p>Are you sure you want to delete the category "<span id="deleteCategoryName" class="fw-bold"></span>"?</p>
<p>Are you sure you want to delete the category "<span id="deleteCategoryName" class="fw-bold"></span>"?
</p>
<p class="text-danger mb-0">
<small>
<i class="fas fa-exclamation-triangle me-1"></i>This action cannot be undone.</small>
@@ -961,16 +968,19 @@
<style>
/* Fix modal z-index */
#deleteCategoryModal, #deleteTagModal {
#deleteCategoryModal,
#deleteTagModal {
z-index: 2050 !important;
}
#deleteCategoryModal .modal-content, #deleteTagModal .modal-content {
#deleteCategoryModal .modal-content,
#deleteTagModal .modal-content {
z-index: 2070 !important;
position: relative;
}
#deleteCategoryModal.show, #deleteTagModal.show {
#deleteCategoryModal.show,
#deleteTagModal.show {
display: block !important;
}
</style>
@@ -989,7 +999,7 @@
let currentCategoryBtn = null;
// Handle category delete buttons
document.addEventListener('click', function(e) {
document.addEventListener('click', function (e) {
if (e.target.closest('.delete-category-btn')) {
e.preventDefault();
const btn = e.target.closest('.delete-category-btn');
@@ -1006,7 +1016,7 @@
});
// Handle confirm delete category
document.getElementById('confirmDeleteCategoryBtn').addEventListener('click', async function() {
document.getElementById('confirmDeleteCategoryBtn').addEventListener('click', async function () {
if (!currentCategoryId || !currentCategoryBtn) return;
const btn = currentCategoryBtn;
@@ -1070,7 +1080,7 @@
let currentTagBtn = null;
// Handle tag delete buttons
document.addEventListener('click', function(e) {
document.addEventListener('click', function (e) {
if (e.target.closest('.delete-tag-btn')) {
e.preventDefault();
const btn = e.target.closest('.delete-tag-btn');
@@ -1087,7 +1097,7 @@
});
// Handle confirm delete tag
document.getElementById('confirmDeleteTagBtn').addEventListener('click', async function() {
document.getElementById('confirmDeleteTagBtn').addEventListener('click', async function () {
if (!currentTagId || !currentTagBtn) return;
const btn = currentTagBtn;

View File

@@ -136,7 +136,7 @@
</td>
<td>
<div class="btn-group" role="group">
<% if (typeof frontendUrl !== 'undefined') { %>
<% if (typeof frontendUrl !=='undefined' ) { %>
<a href="<%= frontendUrl %>/blog/<%= blog.slug %>" target="_blank"
class="btn btn-sm btn-outline-secondary">
<i class="fas fa-external-link-alt me-1"></i>View