This commit is contained in:
Keep Creating Online
2025-01-11 23:42:39 -05:00
parent 220c0041ff
commit 0b7b8cea39
3 changed files with 212 additions and 103 deletions

View File

@@ -0,0 +1,94 @@
<!-- components/video-modal.html -->
<div id="playerModal" class="hidden">
<!-- Navigation bar -->
<div
class="sticky top-0 z-60 bg-gray-900/95 backdrop-blur transition-transform duration-300"
id="modalNav"
>
<div
class="max-w-full w-full px-4 h-14 border-b border-gray-800 flex items-center"
>
<button
id="closeModal"
class="flex items-center gap-2 text-gray-400 hover:text-white transition-colors px-3 py-2 rounded-md hover:bg-gray-800/50"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="w-5 h-5"
>
<path d="m12 19-7-7 7-7" />
<path d="M19 12H5" />
</svg>
<span class="font-medium">Back</span>
</button>
</div>
</div>
<div class="modal-content">
<div class="video-container">
<video id="modalVideo" controls></video>
</div>
<div class="video-info">
<!-- Video Title -->
<h2 id="videoTitle" class="text-2xl font-bold mb-2 text-white"></h2>
<!-- Video Timestamp -->
<div class="flex items-center justify-between text-sm text-gray-400 mb-4">
<span id="videoTimestamp">just now</span>
<div id="modalStatus" class="text-gray-300">
Initializing... Just give it a sec.
</div>
</div>
<!-- Creator info -->
<div class="flex items-center mb-4 p-4 bg-gray-800 rounded-lg">
<div class="w-12 h-12 rounded-full bg-gray-700 overflow-hidden">
<img
id="creatorAvatar"
src=""
alt="Creator"
class="w-full h-full object-cover"
/>
</div>
<div class="ml-4">
<h3 id="creatorName" class="font-medium text-lg text-white">
Creator Name
</h3>
<p id="creatorNpub" class="text-sm text-gray-400">npub...</p>
</div>
</div>
<!-- Video Description -->
<div class="bg-gray-800 rounded-lg p-4 mb-4">
<p id="videoDescription" class="text-gray-300 whitespace-pre-wrap">
No description available.
</p>
</div>
<!-- Torrent stats -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="w-full bg-gray-700 rounded-full h-2 mb-2">
<div
class="bg-blue-500 h-2 rounded-full"
id="modalProgress"
style="width: 0%"
></div>
</div>
<div class="flex justify-between text-sm text-gray-400">
<span id="modalPeers">Peers: 0</span>
<span id="modalSpeed">Speed: 0 KB/s</span>
<span id="modalDownloaded">Downloaded: 0 MB / 0 MB</span>
</div>
</div>
</div>
</div>
</div>

View File

@@ -226,71 +226,9 @@
</div>
</div>
<!-- Improved Video Player Modal -->
<div id="playerModal" class="hidden">
<div class="modal-content">
<div class="video-container">
<video id="modalVideo" controls></video>
</div>
<!-- Imported Video Player Modal -->
<div id="modalContainer"></div>
<div class="video-info">
<!-- Video Title -->
<h2 id="videoTitle" class="text-2xl font-bold mb-2 text-white"></h2>
<!-- Video Timestamp -->
<div
class="flex items-center justify-between text-sm text-gray-400 mb-4"
>
<span id="videoTimestamp">just now</span>
<div id="modalStatus" class="text-gray-300">
Initializing... Just give it a sec.
</div>
</div>
<!-- Creator info -->
<div class="flex items-center mb-4 p-4 bg-gray-800 rounded-lg">
<div
id="creatorAvatar"
class="w-12 h-12 rounded-full bg-gray-700 overflow-hidden"
>
<img src="" alt="Creator" class="w-full h-full object-cover" />
</div>
<div class="ml-4">
<h3 id="creatorName" class="font-medium text-lg text-white">
Creator Name
</h3>
<p id="creatorNpub" class="text-sm text-gray-400">npub...</p>
</div>
</div>
<!-- Video Description -->
<div class="bg-gray-800 rounded-lg p-4 mb-4">
<p
id="videoDescription"
class="text-gray-300 whitespace-pre-wrap"
>
No description available.
</p>
</div>
<!-- Torrent stats -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="w-full bg-gray-700 rounded-full h-2 mb-2">
<div
class="bg-blue-500 h-2 rounded-full"
id="modalProgress"
style="width: 0%"
></div>
</div>
<div class="flex justify-between text-sm text-gray-400">
<span id="modalPeers">Peers: 0</span>
<span id="modalSpeed">Speed: 0 KB/s</span>
<span id="modalDownloaded">Downloaded: 0 MB / 0 MB</span>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mb-8">
<h2 class="text-2xl font-bold text-gray-500 tracking-wide">
seed. zap. subscribe.

View File

@@ -29,27 +29,21 @@ class bitvidApp {
this.speed = document.getElementById("speed");
this.downloaded = document.getElementById("downloaded");
// Modal Elements
this.playerModal = document.getElementById("playerModal");
this.modalVideo = document.getElementById("modalVideo");
this.modalStatus = document.getElementById("modalStatus");
this.modalProgress = document.getElementById("modalProgress");
this.modalPeers = document.getElementById("modalPeers");
this.modalSpeed = document.getElementById("modalSpeed");
this.modalDownloaded = document.getElementById("modalDownloaded");
this.closePlayerBtn = document.getElementById("closePlayer");
// Video Info Elements
this.videoTitle = document.getElementById("videoTitle");
this.videoDescription = document.getElementById("videoDescription");
this.videoTimestamp = document.getElementById("videoTimestamp");
// Creator Info Elements
this.creatorAvatar = document
.getElementById("creatorAvatar")
.querySelector("img");
this.creatorName = document.getElementById("creatorName");
this.creatorNpub = document.getElementById("creatorNpub");
// Initialize these as null - they'll be set after modal loads
this.playerModal = null;
this.modalVideo = null;
this.modalStatus = null;
this.modalProgress = null;
this.modalPeers = null;
this.modalSpeed = null;
this.modalDownloaded = null;
this.closePlayerBtn = null;
this.videoTitle = null;
this.videoDescription = null;
this.videoTimestamp = null;
this.creatorAvatar = null;
this.creatorName = null;
this.creatorNpub = null;
// Notification Containers
this.errorContainer = document.getElementById("errorContainer");
@@ -58,21 +52,22 @@ class bitvidApp {
this.pubkey = null;
this.currentMagnetUri = null;
// ADDED FOR VERSIONING/PRIVATE/DELETE:
// If you created an <input type="checkbox" id="isPrivate" /> in your HTML form:
// Private Video Checkbox
this.isPrivateCheckbox = document.getElementById("isPrivate");
}
/**
* Initializes the application by setting up the Nostr client and loading videos.
*/
// app.js
async init() {
try {
// Hide and reset player states
if (this.playerSection) {
this.playerSection.style.display = "none";
this.playerModal.style.display = "none";
this.currentMagnetUri = null;
}
// Initialize modal first
await this.initModal();
// Then update modal element references
this.updateModalElements();
// Initialize Nostr and check login
await nostrClient.init();
@@ -82,7 +77,7 @@ class bitvidApp {
}
this.setupEventListeners();
disclaimerModal.show(); // Add this line here
disclaimerModal.show();
await this.loadVideos();
} catch (error) {
console.error("Init failed:", error);
@@ -90,6 +85,87 @@ class bitvidApp {
}
}
async initModal() {
try {
console.log("Starting modal initialization...");
const response = await fetch("components/video-modal.html");
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const html = await response.text();
console.log("Modal HTML loaded successfully");
const modalContainer = document.getElementById("modalContainer");
if (!modalContainer) {
throw new Error("Modal container element not found!");
}
modalContainer.innerHTML = html;
console.log("Modal HTML inserted into DOM");
// Set up modal close handler
const closeButton = document.getElementById("closeModal");
if (!closeButton) {
throw new Error("Close button element not found!");
}
closeButton.addEventListener("click", () => {
this.hideModal();
});
// Set up scroll handler for nav show/hide
let lastScrollY = 0;
const modalNav = document.getElementById("modalNav");
const playerModal = document.getElementById("playerModal");
if (!modalNav || !playerModal) {
throw new Error("Modal navigation elements not found!");
}
playerModal.addEventListener("scroll", (e) => {
const currentScrollY = e.target.scrollTop;
const shouldShowNav =
currentScrollY <= lastScrollY || currentScrollY < 50;
modalNav.style.transform = shouldShowNav
? "translateY(0)"
: "translateY(-100%)";
lastScrollY = currentScrollY;
});
console.log("Modal initialization completed successfully");
return true;
} catch (error) {
console.error("Modal initialization failed:", error);
// You might want to show this error to the user
this.showError(`Failed to initialize video player: ${error.message}`);
return false;
}
}
updateModalElements() {
// Update Modal Elements
this.playerModal = document.getElementById("playerModal");
this.modalVideo = document.getElementById("modalVideo");
this.modalStatus = document.getElementById("modalStatus");
this.modalProgress = document.getElementById("modalProgress");
this.modalPeers = document.getElementById("modalPeers");
this.modalSpeed = document.getElementById("modalSpeed");
this.modalDownloaded = document.getElementById("modalDownloaded");
this.closePlayerBtn = document.getElementById("closeModal");
// Update Video Info Elements
this.videoTitle = document.getElementById("videoTitle");
this.videoDescription = document.getElementById("videoDescription");
this.videoTimestamp = document.getElementById("videoTimestamp");
// Update Creator Info Elements
this.creatorAvatar = document.getElementById("creatorAvatar");
this.creatorName = document.getElementById("creatorName");
this.creatorNpub = document.getElementById("creatorNpub");
}
/**
* Formats a timestamp into a "time ago" format.
*/
@@ -324,9 +400,10 @@ class bitvidApp {
* Loads and displays videos from Nostr.
*/
async loadVideos() {
console.log("Starting loadVideos...");
try {
const videos = await nostrClient.fetchVideos();
this.log("Fetched videos (raw):", videos);
console.log("Raw videos from nostrClient:", videos);
if (!videos) {
this.log("No videos received");
@@ -371,7 +448,7 @@ class bitvidApp {
});
// Now render only the displayedVideos
this.renderVideoList(displayedVideos);
await this.renderVideoList(displayedVideos);
this.log(`Rendered ${displayedVideos.length} videos successfully`);
} catch (error) {
this.log("Failed to fetch videos:", error);