Initial commit
App works locally. No intention to bring this live.
This commit is contained in:
327
static/app.js
Normal file
327
static/app.js
Normal file
@@ -0,0 +1,327 @@
|
||||
import { createApp, ref, reactive, computed, onMounted, onUnmounted } from 'https://unpkg.com/vue@3/dist/vue.esm-browser.prod.js'
|
||||
|
||||
const App = {
|
||||
setup() {
|
||||
const view = ref('settings')
|
||||
|
||||
const config = reactive({
|
||||
sources: '',
|
||||
date_start: '',
|
||||
date_end: '',
|
||||
destination: '',
|
||||
})
|
||||
const configError = ref('')
|
||||
|
||||
const downloadStatus = reactive({
|
||||
status: 'downloading',
|
||||
error_message: null,
|
||||
progress: { copied: 0, total: 0, current_folder: '' },
|
||||
})
|
||||
let pollInterval = null
|
||||
|
||||
const photo = reactive({
|
||||
filename: '',
|
||||
folder_name: '',
|
||||
folder_index: 0,
|
||||
folder_count: 1,
|
||||
photo_index: 0,
|
||||
photo_total: 0,
|
||||
already_accepted: false,
|
||||
session_done: false,
|
||||
loading: false,
|
||||
imageUrl: '',
|
||||
})
|
||||
|
||||
const upcomingUrls = ref([])
|
||||
|
||||
onMounted(async () => {
|
||||
document.addEventListener('keydown', handleKey)
|
||||
|
||||
const res = await fetch('/api/config')
|
||||
const data = await res.json()
|
||||
if (data.configured) {
|
||||
config.sources = data.sources.join('\n')
|
||||
config.date_start = data.date_start
|
||||
config.date_end = data.date_end
|
||||
config.destination = data.destination
|
||||
}
|
||||
|
||||
const statusRes = await fetch('/api/session/status')
|
||||
if (statusRes.ok) {
|
||||
const s = await statusRes.json()
|
||||
if (s.status === 'ready') {
|
||||
view.value = 'viewer'
|
||||
await loadCurrentPhoto()
|
||||
} else if (s.status === 'downloading') {
|
||||
Object.assign(downloadStatus, s)
|
||||
view.value = 'downloading'
|
||||
startPolling()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
document.removeEventListener('keydown', handleKey)
|
||||
stopPolling()
|
||||
})
|
||||
|
||||
function handleKey(e) {
|
||||
if (view.value !== 'viewer' || photo.loading) return
|
||||
if (e.key === 'ArrowRight') sendAction('accept')
|
||||
else if (e.key === 'ArrowLeft') sendAction('ignore')
|
||||
else if (e.key === 'ArrowUp') sendAction('remind')
|
||||
}
|
||||
|
||||
async function startSession() {
|
||||
configError.value = ''
|
||||
const sources = config.sources.split('\n').map(s => s.trim()).filter(Boolean)
|
||||
if (!sources.length) { configError.value = 'Enter at least one source path'; return }
|
||||
if (!config.date_start || !config.date_end) { configError.value = 'Select a date range'; return }
|
||||
if (!config.destination.trim()) { configError.value = 'Enter a destination folder'; return }
|
||||
|
||||
const cfgRes = await fetch('/api/config', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
sources,
|
||||
date_start: config.date_start,
|
||||
date_end: config.date_end,
|
||||
destination: config.destination.trim(),
|
||||
}),
|
||||
})
|
||||
if (!cfgRes.ok) {
|
||||
const err = await cfgRes.json()
|
||||
configError.value = err.detail || 'Failed to save config'
|
||||
return
|
||||
}
|
||||
|
||||
const startRes = await fetch('/api/session/start', { method: 'POST' })
|
||||
if (!startRes.ok) {
|
||||
const err = await startRes.json()
|
||||
configError.value = err.detail || 'Failed to start session'
|
||||
return
|
||||
}
|
||||
|
||||
downloadStatus.status = 'downloading'
|
||||
downloadStatus.error_message = null
|
||||
downloadStatus.progress = { copied: 0, total: 0, current_folder: sources[0] }
|
||||
view.value = 'downloading'
|
||||
startPolling()
|
||||
}
|
||||
|
||||
function startPolling() {
|
||||
pollInterval = setInterval(async () => {
|
||||
const res = await fetch('/api/session/status')
|
||||
if (!res.ok) { stopPolling(); return }
|
||||
const data = await res.json()
|
||||
Object.assign(downloadStatus, data)
|
||||
if (data.status === 'ready') {
|
||||
stopPolling()
|
||||
view.value = 'viewer'
|
||||
await loadCurrentPhoto()
|
||||
} else if (data.status === 'error' || data.status === 'empty') {
|
||||
stopPolling()
|
||||
}
|
||||
}, 1000)
|
||||
}
|
||||
|
||||
function stopPolling() {
|
||||
if (pollInterval) { clearInterval(pollInterval); pollInterval = null }
|
||||
}
|
||||
|
||||
function refreshUpcoming() {
|
||||
const t = Date.now()
|
||||
upcomingUrls.value = [1, 2, 3].map(offset => `/api/photo/image?offset=${offset}&t=${t}`)
|
||||
}
|
||||
|
||||
async function loadCurrentPhoto() {
|
||||
photo.loading = true
|
||||
const res = await fetch('/api/photo/current')
|
||||
if (!res.ok) { photo.loading = false; return }
|
||||
const data = await res.json()
|
||||
if (data.session_done) { view.value = 'done'; photo.loading = false; return }
|
||||
if (data.loading) {
|
||||
await new Promise(r => setTimeout(r, 2000))
|
||||
return loadCurrentPhoto()
|
||||
}
|
||||
Object.assign(photo, data)
|
||||
photo.imageUrl = `/api/photo/image?t=${Date.now()}`
|
||||
photo.loading = false
|
||||
refreshUpcoming()
|
||||
}
|
||||
|
||||
async function sendAction(action) {
|
||||
if (photo.loading) return
|
||||
photo.loading = true
|
||||
const res = await fetch('/api/photo/action', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ action }),
|
||||
})
|
||||
if (!res.ok) { photo.loading = false; return }
|
||||
const data = await res.json()
|
||||
if (data.next.session_done) { view.value = 'done'; photo.loading = false; return }
|
||||
if (data.next.loading) {
|
||||
await new Promise(r => setTimeout(r, 2000))
|
||||
return loadCurrentPhoto()
|
||||
}
|
||||
Object.assign(photo, data.next)
|
||||
photo.imageUrl = `/api/photo/image?t=${Date.now()}`
|
||||
photo.loading = false
|
||||
refreshUpcoming()
|
||||
}
|
||||
|
||||
async function resetSession() {
|
||||
await fetch('/api/session', { method: 'DELETE' })
|
||||
view.value = 'settings'
|
||||
}
|
||||
|
||||
const progressPct = computed(() => {
|
||||
const { copied, total } = downloadStatus.progress
|
||||
if (!total) return 0
|
||||
return Math.min(100, Math.round((copied / total) * 100))
|
||||
})
|
||||
|
||||
return {
|
||||
view, config, configError,
|
||||
downloadStatus, progressPct,
|
||||
photo, upcomingUrls,
|
||||
startSession, sendAction, resetSession,
|
||||
}
|
||||
},
|
||||
|
||||
template: `
|
||||
<!-- Settings -->
|
||||
<div v-if="view === 'settings'" class="view settings-view">
|
||||
<h1>tafa</h1>
|
||||
<div class="card">
|
||||
<div class="form-group">
|
||||
<label>Cloud source paths (one per line)</label>
|
||||
<textarea
|
||||
v-model="config.sources"
|
||||
rows="4"
|
||||
placeholder="remote:Photos/2024 remote:Photos/2025"
|
||||
></textarea>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group">
|
||||
<label>From</label>
|
||||
<input type="date" v-model="config.date_start">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>To</label>
|
||||
<input type="date" v-model="config.date_end">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Accepted photos destination</label>
|
||||
<input
|
||||
type="text"
|
||||
v-model="config.destination"
|
||||
placeholder="/home/user/Pictures/Accepted"
|
||||
>
|
||||
</div>
|
||||
<p v-if="configError" class="error-msg">{{ configError }}</p>
|
||||
<button class="btn btn-primary" @click="startSession">Start Triage</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Downloading -->
|
||||
<div v-else-if="view === 'downloading'" class="view downloading-view">
|
||||
<template v-if="downloadStatus.status === 'downloading'">
|
||||
<template v-if="downloadStatus.progress.phase === 'scanning'">
|
||||
<h2>Scanning folder…</h2>
|
||||
<p class="folder-label">{{ downloadStatus.progress.current_folder }}</p>
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill progress-indeterminate"></div>
|
||||
</div>
|
||||
<p class="progress-text">Reading file list from cloud</p>
|
||||
</template>
|
||||
<template v-else>
|
||||
<h2>Downloading photos…</h2>
|
||||
<p class="folder-label">{{ downloadStatus.progress.current_folder }}</p>
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" :style="{ width: progressPct + '%' }"></div>
|
||||
</div>
|
||||
<p class="progress-text">
|
||||
{{ downloadStatus.progress.copied }} / {{ downloadStatus.progress.total }} files
|
||||
</p>
|
||||
</template>
|
||||
</template>
|
||||
<template v-else-if="downloadStatus.status === 'error'">
|
||||
<h2>Download failed</h2>
|
||||
<p class="error-msg">{{ downloadStatus.error_message }}</p>
|
||||
<button class="btn btn-secondary" @click="resetSession">Back to Settings</button>
|
||||
</template>
|
||||
<template v-else-if="downloadStatus.status === 'empty'">
|
||||
<h2>No photos found</h2>
|
||||
<p style="color:#999">No photos matched the selected date range.</p>
|
||||
<button class="btn btn-secondary" @click="resetSession">Back to Settings</button>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
<!-- Viewer -->
|
||||
<div v-else-if="view === 'viewer'" class="view viewer-view">
|
||||
<div class="viewer-header">
|
||||
<span class="folder-info">
|
||||
{{ photo.folder_name }}
|
||||
<span v-if="photo.folder_count > 1"> ({{ photo.folder_index + 1 }}/{{ photo.folder_count }})</span>
|
||||
</span>
|
||||
<span class="photo-progress">{{ photo.photo_index + 1 }} / {{ photo.photo_total }}</span>
|
||||
</div>
|
||||
|
||||
<div class="viewer-image">
|
||||
<div v-if="photo.loading" class="loading-overlay">Loading…</div>
|
||||
<div v-if="photo.already_accepted" class="already-accepted-badge">Already accepted</div>
|
||||
<img
|
||||
v-if="photo.imageUrl"
|
||||
:src="photo.imageUrl"
|
||||
:key="photo.imageUrl"
|
||||
:class="{ 'already-accepted': photo.already_accepted }"
|
||||
@load="photo.loading = false"
|
||||
>
|
||||
</div>
|
||||
|
||||
<div class="viewer-actions">
|
||||
<button class="btn btn-ignore" :disabled="photo.loading" @click="sendAction('ignore')">
|
||||
← Ignore
|
||||
</button>
|
||||
<button class="btn btn-remind" :disabled="photo.loading" @click="sendAction('remind')">
|
||||
↑ Remind Me
|
||||
</button>
|
||||
<button class="btn btn-accept" :disabled="photo.loading" @click="sendAction('accept')">
|
||||
Accept →
|
||||
</button>
|
||||
</div>
|
||||
<div class="upcoming-strip">
|
||||
<span class="upcoming-label">Up next</span>
|
||||
<div class="upcoming-thumbs">
|
||||
<img
|
||||
v-for="(url, i) in upcomingUrls"
|
||||
:key="url"
|
||||
:src="url"
|
||||
class="upcoming-thumb"
|
||||
@error="e => e.target.style.display = 'none'"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div class="key-hints">
|
||||
<span class="key-hint"><kbd>←</kbd> ignore</span>
|
||||
<span class="key-hint"><kbd>↑</kbd> remind me</span>
|
||||
<span class="key-hint"><kbd>→</kbd> accept</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Done -->
|
||||
<div v-else-if="view === 'done'" class="view done-view">
|
||||
<h2>All done! 🎉</h2>
|
||||
<p>Accepted photos are in:</p>
|
||||
<code>{{ config.destination }}</code>
|
||||
<button class="btn btn-primary" style="margin-top:0.5rem; max-width:240px" @click="resetSession">
|
||||
Start New Session
|
||||
</button>
|
||||
</div>
|
||||
`
|
||||
}
|
||||
|
||||
createApp(App).mount('#app')
|
||||
Reference in New Issue
Block a user