wip
This commit is contained in:
parent
e99b2745bd
commit
16e8490b30
6 changed files with 330 additions and 90 deletions
|
@ -1,5 +1,7 @@
|
||||||
/* Beautiful modal styles */
|
/* Modal Styles */
|
||||||
.modal {
|
.modal,
|
||||||
|
.upload-modal,
|
||||||
|
[class*="-modal"] {
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -13,7 +15,9 @@
|
||||||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal.active {
|
.modal.active,
|
||||||
|
.upload-modal.active,
|
||||||
|
[class*="-modal"].active {
|
||||||
display: flex;
|
display: flex;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
|
|
@ -1150,3 +1150,118 @@ body {
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Upload Files Panel */
|
||||||
|
.upload-files-panel {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 320px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--card-bg);
|
||||||
|
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
|
||||||
|
z-index: 1000;
|
||||||
|
transform: translateX(100%);
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-panel.active {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 15px;
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header h3 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header .close-btn {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: 1.2rem;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header .close-btn:hover {
|
||||||
|
color: var(--danger-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-content {
|
||||||
|
flex: 1;
|
||||||
|
padding: 15px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area {
|
||||||
|
border: 2px dashed var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 30px 20px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
transition: border-color 0.2s ease, background-color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area.drag-over {
|
||||||
|
border-color: var(--primary-color);
|
||||||
|
background-color: rgba(var(--primary-rgb), 0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area i {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area p {
|
||||||
|
margin: 10px 0;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-footer {
|
||||||
|
padding: 15px;
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-label {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-bar {
|
||||||
|
height: 6px;
|
||||||
|
background-color: var(--border-color);
|
||||||
|
border-radius: 3px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-bar-fill {
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
width: 0%;
|
||||||
|
transition: width 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-actions {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
|
@ -300,3 +300,118 @@
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Upload Files Panel */
|
||||||
|
.upload-files-panel {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 320px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--card-bg);
|
||||||
|
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
|
||||||
|
z-index: 1000;
|
||||||
|
transform: translateX(100%);
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-panel.active {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 15px;
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header h3 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header .close-btn {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: 1.2rem;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-header .close-btn:hover {
|
||||||
|
color: var(--danger-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-content {
|
||||||
|
flex: 1;
|
||||||
|
padding: 15px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area {
|
||||||
|
border: 2px dashed var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 30px 20px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
transition: border-color 0.2s ease, background-color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area.drag-over {
|
||||||
|
border-color: var(--primary-color);
|
||||||
|
background-color: rgba(var(--primary-rgb), 0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area i {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-drop-area p {
|
||||||
|
margin: 10px 0;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-files-footer {
|
||||||
|
padding: 15px;
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-label {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-bar {
|
||||||
|
height: 6px;
|
||||||
|
background-color: var(--border-color);
|
||||||
|
border-radius: 3px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-progress-bar-fill {
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
width: 0%;
|
||||||
|
transition: width 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.upload-actions {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
|
@ -88,38 +88,38 @@ function initializeFolderNavigation() {
|
||||||
|
|
||||||
// Modal handling
|
// Modal handling
|
||||||
function initializeModals() {
|
function initializeModals() {
|
||||||
// New folder modal
|
// Hide all modals by default
|
||||||
const newFolderBtn = document.getElementById('new-folder-btn');
|
document.querySelectorAll('.modal, .upload-modal, [class*="-modal"]').forEach(modal => {
|
||||||
const newFolderModal = document.getElementById('new-folder-modal');
|
modal.style.display = 'none';
|
||||||
const emptyNewFolderBtn = document.getElementById('empty-new-folder-btn');
|
modal.style.opacity = '0';
|
||||||
|
modal.style.visibility = 'hidden';
|
||||||
|
|
||||||
if (newFolderBtn && newFolderModal) {
|
// Get close buttons
|
||||||
newFolderBtn.addEventListener('click', function () {
|
const closeButtons = modal.querySelectorAll('.modal-close, .close-btn, .modal-cancel');
|
||||||
newFolderModal.style.display = 'flex';
|
closeButtons.forEach(btn => {
|
||||||
document.getElementById('folder-name').focus();
|
|
||||||
});
|
|
||||||
|
|
||||||
if (emptyNewFolderBtn) {
|
|
||||||
emptyNewFolderBtn.addEventListener('click', function () {
|
|
||||||
newFolderModal.style.display = 'flex';
|
|
||||||
document.getElementById('folder-name').focus();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Close modal
|
|
||||||
document.querySelectorAll('.modal-close, .modal-cancel').forEach(btn => {
|
|
||||||
btn.addEventListener('click', function () {
|
btn.addEventListener('click', function () {
|
||||||
newFolderModal.style.display = 'none';
|
modal.classList.remove('active');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Close on click outside
|
// Close when clicking outside
|
||||||
window.addEventListener('click', function (event) {
|
modal.addEventListener('click', function (e) {
|
||||||
if (event.target === newFolderModal) {
|
if (e.target === modal) {
|
||||||
newFolderModal.style.display = 'none';
|
modal.classList.remove('active');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Setup modal triggers
|
||||||
|
document.querySelectorAll('[data-modal]').forEach(trigger => {
|
||||||
|
trigger.addEventListener('click', function () {
|
||||||
|
const modalId = this.dataset.modal;
|
||||||
|
const modal = document.getElementById(modalId);
|
||||||
|
if (modal) {
|
||||||
|
modal.classList.add('active');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Context menu for right-click on files/folders
|
// Context menu for right-click on files/folders
|
||||||
|
|
|
@ -472,28 +472,39 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
// File upload functionality
|
// File upload functionality
|
||||||
const uploadBtn = document.querySelector('.btn.primary [class*="fa-upload"]');
|
const uploadButton = document.getElementById('upload-button');
|
||||||
const fileInput = document.getElementById('file-upload');
|
const uploadModal = document.querySelector('.upload-modal');
|
||||||
|
|
||||||
// Check if we're on upload page or have upload elements
|
// Hide upload modal by default if it exists
|
||||||
if (uploadBtn && fileInput) {
|
if (uploadModal) {
|
||||||
uploadBtn.addEventListener('click', function (e) {
|
uploadModal.style.display = 'none';
|
||||||
// Trigger the hidden file input
|
uploadModal.style.opacity = '0';
|
||||||
|
uploadModal.style.visibility = 'hidden';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setup upload button
|
||||||
|
if (uploadButton && fileInput) {
|
||||||
|
uploadButton.addEventListener('click', function () {
|
||||||
fileInput.click();
|
fileInput.click();
|
||||||
});
|
});
|
||||||
|
|
||||||
fileInput.addEventListener('change', function () {
|
fileInput.addEventListener('change', function () {
|
||||||
if (this.files.length) {
|
if (this.files.length > 0) {
|
||||||
|
// Handle file upload
|
||||||
handleFileUpload(this.files);
|
handleFileUpload(this.files);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Setup drag and drop zone if exists
|
// Close upload modal when close button is clicked
|
||||||
const dropzone = document.getElementById('dropzone');
|
const closeButtons = document.querySelectorAll('.upload-modal .close-btn, .upload-modal .modal-close');
|
||||||
if (dropzone) {
|
closeButtons.forEach(btn => {
|
||||||
setupDragAndDrop(dropzone);
|
btn.addEventListener('click', function () {
|
||||||
}
|
if (uploadModal) {
|
||||||
|
uploadModal.classList.remove('active');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// Handle file upload process
|
// Handle file upload process
|
||||||
function handleFileUpload(files) {
|
function handleFileUpload(files) {
|
||||||
|
|
|
@ -59,6 +59,50 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Upload Files Panel - hidden by default -->
|
||||||
|
<div id="upload-files-panel" class="upload-files-panel">
|
||||||
|
<div class="upload-files-header">
|
||||||
|
<h3><i class="fas fa-cloud-upload-alt"></i> Upload Files</h3>
|
||||||
|
<button class="close-btn" id="close-upload-panel">×</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="upload-files-content">
|
||||||
|
<div class="upload-drop-area" id="upload-drop-area">
|
||||||
|
<i class="fas fa-cloud-upload-alt"></i>
|
||||||
|
<p>Drag & drop files or folders here</p>
|
||||||
|
<p>or</p>
|
||||||
|
<button class="btn primary" id="select-files-btn">
|
||||||
|
<i class="fas fa-file"></i> Select Files
|
||||||
|
</button>
|
||||||
|
<input type="file" id="file-upload-input" multiple style="display: none">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="upload-queue">
|
||||||
|
<h4>Upload Queue</h4>
|
||||||
|
<div class="upload-files-list" id="upload-files-list">
|
||||||
|
<!-- Files will be added here dynamically -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="upload-files-footer">
|
||||||
|
<div class="upload-progress">
|
||||||
|
<div class="upload-progress-label">
|
||||||
|
<span>Overall Progress</span>
|
||||||
|
<span id="upload-progress-percentage">0%</span>
|
||||||
|
</div>
|
||||||
|
<div class="upload-progress-bar">
|
||||||
|
<div class="upload-progress-bar-fill" id="upload-progress-bar-fill"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="upload-actions">
|
||||||
|
<button class="btn secondary" id="cancel-upload-btn">Cancel</button>
|
||||||
|
<button class="btn primary" id="start-upload-btn">Start Upload</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<!-- Sidebar Navigation -->
|
<!-- Sidebar Navigation -->
|
||||||
|
@ -168,55 +212,6 @@
|
||||||
{% include 'components/mobile_menu.html' %}
|
{% include 'components/mobile_menu.html' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<!-- Add this right before the closing </body> tag -->
|
|
||||||
<div id="upload-overlay" class="upload-overlay">
|
|
||||||
<div class="upload-modal">
|
|
||||||
<div class="upload-header">
|
|
||||||
<h3><i class="fas fa-cloud-upload-alt"></i> Upload Files</h3>
|
|
||||||
<button class="close-upload" id="close-upload-btn">×</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="upload-body">
|
|
||||||
<div class="upload-dropzone" id="dropzone">
|
|
||||||
<i class="fas fa-cloud-upload-alt upload-icon"></i>
|
|
||||||
<p>Drag & drop files or folders here</p>
|
|
||||||
<p>or</p>
|
|
||||||
<div class="upload-buttons">
|
|
||||||
<label class="btn primary">
|
|
||||||
<i class="fas fa-file"></i> Select Files
|
|
||||||
<input type="file" id="file-upload" multiple style="display: none">
|
|
||||||
</label>
|
|
||||||
<label class="btn">
|
|
||||||
<i class="fas fa-folder"></i> Select Folder
|
|
||||||
<input type="file" id="folder-upload" webkitdirectory directory multiple
|
|
||||||
style="display: none">
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="upload-list" id="upload-list">
|
|
||||||
<h4>Upload Queue</h4>
|
|
||||||
<div class="upload-items" id="upload-items"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="upload-progress-overall">
|
|
||||||
<div class="progress-label">
|
|
||||||
<span>Overall Progress</span>
|
|
||||||
<span id="upload-percentage">0%</span>
|
|
||||||
</div>
|
|
||||||
<div class="progress-bar-container">
|
|
||||||
<div class="progress-bar" id="total-progress-bar" style="width: 0%"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="upload-footer">
|
|
||||||
<button class="btn" id="cancel-upload-btn">Cancel</button>
|
|
||||||
<button class="btn primary" id="start-upload-btn">Start Upload</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Common JS file with shared functions -->
|
<!-- Common JS file with shared functions -->
|
||||||
<script src="{{ url_for('static', filename='js/common.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/common.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/theme.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/theme.js') }}"></script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue