تست: تفاوت میان نسخهها
ظاهر
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
خط ۱: | خط ۱: | ||
<!DOCTYPE html> | |||
<html lang="fa" dir="rtl"> | <html lang="fa" dir="rtl"> | ||
<head> | <head> | ||
خط ۲۲۹: | خط ۲۳۰: | ||
<label for="categorySelect">دستهبندی:</label> | <label for="categorySelect">دستهبندی:</label> | ||
<select id="categorySelect"> | <select id="categorySelect"> | ||
<option value="کتاب">کتاب</option> | <option value="کتاب">کتاب</option> | ||
<option value="مقاله">مقاله</option> | <option value="مقاله">مقاله</option> | ||
خط ۲۳۹: | خط ۲۳۹: | ||
<div class="custom-select-container"> | <div class="custom-select-container"> | ||
<select id="bookSelect" class="custom-select"> | <select id="bookSelect" class="custom-select"> | ||
<option value=""> | <option value="">لطفاً یک مورد انتخاب کنید</option> | ||
<!-- کتابها --> | <!-- کتابها --> | ||
<option value="عیسی" data-category="کتاب">عیسی</option> | <option value="عیسی" data-category="کتاب">عیسی</option> | ||
<option value="انجیل_متی" data-category="کتاب">انجیل متی</option> | <option value="انجیل_متی" data-category="کتاب">انجیل متی</option> | ||
<!-- مقالات --> | <!-- مقالات --> | ||
<option value="مسیح" data-category="مقاله">مسیح</option> | <option value="مسیح" data-category="مقاله">مسیح</option> | ||
<option value="تثلیث" data-category="مقاله">تثلیث</option> | <option value="تثلیث" data-category="مقاله">تثلیث</option> | ||
</select> | </select> | ||
خط ۲۷۲: | خط ۲۶۴: | ||
<div id="iframeContainer"> | <div id="iframeContainer"> | ||
<div class="iframe-placeholder" id="iframePlaceholder"> | <div class="iframe-placeholder" id="iframePlaceholder"> | ||
لطفاً یک کتاب یا مقاله از لیست انتخاب کنید | |||
</div> | </div> | ||
<iframe id="contentFrame" class="clean-frame" src="about:blank" style="display: none;"></iframe> | <iframe id="contentFrame" class="clean-frame" src="about:blank" style="display: none;"></iframe> | ||
خط ۲۷۸: | خط ۲۷۰: | ||
<div class="action-buttons"> | <div class="action-buttons"> | ||
<a href="https://www.pediabible.com" class="home-link" target="_blank"> | <a href="https://www.pediabible.com" class="home-link" target="_blank"> | ||
مشاهده صفحه اصلی پدیا بایبل | |||
</a> | </a> | ||
<a id="wikiLink" href="#" class="wiki-link" target="_blank" style="display: none;"> | <a id="wikiLink" href="#" class="wiki-link" target="_blank" style="display: none;"> | ||
مشاهده صفحه کامل در ویکی | |||
</a> | </a> | ||
</div> | </div> | ||
خط ۳۳۵: | خط ۳۲۷: | ||
const filteredBooks = allBooks.filter(book => { | const filteredBooks = allBooks.filter(book => { | ||
const | const bookCategory = book.getAttribute('data-category'); | ||
const matchesCategory = bookCategory === category; | |||
const matchesSearch = !searchTerm || book.text.toLowerCase().includes(searchLower); | const matchesSearch = !searchTerm || book.text.toLowerCase().includes(searchLower); | ||
return matchesCategory && matchesSearch; | return matchesCategory && matchesSearch; | ||
خط ۳۸۱: | خط ۳۷۴: | ||
// فیلتر کردن بر اساس دستهبندی | // فیلتر کردن بر اساس دستهبندی | ||
categorySelect.addEventListener('change', function() { | categorySelect.addEventListener('change', function() { | ||
bookSelect.value = ''; | |||
customSelect.textContent = 'لطفاً یک مورد انتخاب کنید'; | |||
showBook('', ''); | |||
populateDropdownOptions(); | |||
}); | }); | ||
خط ۴۰۰: | خط ۳۸۵: | ||
contentFrame.style.display = 'none'; | contentFrame.style.display = 'none'; | ||
iframePlaceholder.style.display = 'flex'; | iframePlaceholder.style.display = 'flex'; | ||
iframePlaceholder.textContent = ' | iframePlaceholder.textContent = 'لطفاً یک کتاب یا مقاله از لیست انتخاب کنید'; | ||
wikiLink.style.display = 'none'; | wikiLink.style.display = 'none'; | ||
return; | return; | ||
} | } | ||
// | // ساخت آدرس صحیح: https://www.pediabible.com/index.php/نام_صفحه | ||
const cleanContentUrl = `https://www.pediabible.com/index.php/${bookValue}?action=render`; | const cleanContentUrl = `https://www.pediabible.com/index.php/${bookValue}?action=render`; | ||
const wikiPageUrl = `https://www.pediabible.com/index.php/${bookValue}`; | const wikiPageUrl = `https://www.pediabible.com/index.php/${bookValue}`; | ||
خط ۴۱۴: | خط ۳۹۹: | ||
contentFrame.style.display = 'none'; | contentFrame.style.display = 'none'; | ||
iframePlaceholder.style.display = 'flex'; | iframePlaceholder.style.display = 'flex'; | ||
iframePlaceholder.textContent = ' | iframePlaceholder.textContent = 'در حال بارگذاری محتوا...'; | ||
// تنظیم iframe | // تنظیم iframe | ||
خط ۴۲۹: | خط ۴۱۴: | ||
contentFrame.onerror = function() { | contentFrame.onerror = function() { | ||
iframePlaceholder.style.display = 'flex'; | iframePlaceholder.style.display = 'flex'; | ||
iframePlaceholder.textContent = ' | iframePlaceholder.textContent = 'خطا در بارگذاری محتوا. لطفاً دوباره تلاش کنید.'; | ||
contentFrame.style.display = 'none'; | contentFrame.style.display = 'none'; | ||
console.error('خطا در بارگذاری iframe'); | console.error('خطا در بارگذاری iframe'); | ||
خط ۴۳۶: | خط ۴۲۱: | ||
// بهروزرسانی لینک ویکی | // بهروزرسانی لینک ویکی | ||
wikiLink.href = wikiPageUrl; | wikiLink.href = wikiPageUrl; | ||
wikiLink.textContent = ` | wikiLink.textContent = `مشاهده صفحه کامل "${bookText}"`; | ||
wikiLink.style.display = 'inline-block'; | wikiLink.style.display = 'inline-block'; | ||
} | } | ||
خط ۴۴۵: | خط ۴۳۰: | ||
// نمایش اولین مورد به صورت پیشفرض | // نمایش اولین مورد به صورت پیشفرض | ||
setTimeout(() => { | setTimeout(() => { | ||
const firstBook = allBooks.find(book => book.getAttribute('data-category') === 'کتاب'); | |||
if (firstBook) { | |||
bookSelect.value = firstBook.value; | bookSelect.value = firstBook.value; | ||
customSelect.textContent = firstBook.text; | customSelect.textContent = firstBook.text; |
نسخهٔ ۱۲ اکتبر ۲۰۲۵، ساعت ۱۹:۰۹
<!DOCTYPE html>
کتابخانه پدیا بایبل
در این بخش میتوانید کتابها و مقالات مختلف را مطالعه کنید.
برای شروع، دستهبندی و سپس مورد مورد نظر خود را انتخاب نمایید.
لطفاً یک کتاب یا مقاله از لیست انتخاب کنید