Files
zeroclock/src/views/Settings.vue

275 lines
10 KiB
Vue

<template>
<div class="p-6 max-w-xl">
<h1 class="text-[1.5rem] font-medium text-text-primary mb-8">Settings</h1>
<!-- 1. Appearance most frequently adjusted -->
<section class="bg-bg-surface rounded-lg p-5 mb-4">
<h2 class="text-xs text-text-tertiary uppercase tracking-[0.08em] font-medium mb-4">Appearance</h2>
<div class="flex items-center justify-between">
<p class="text-[0.8125rem] text-text-primary">UI Scale</p>
<div class="flex items-center gap-2">
<button
@click="decreaseZoom"
class="w-8 h-8 flex items-center justify-center border border-border-visible rounded text-text-secondary hover:text-text-primary hover:bg-bg-elevated transition-colors disabled:opacity-40 disabled:cursor-not-allowed"
:disabled="zoomLevel <= 80"
>
<Minus class="w-3.5 h-3.5" />
</button>
<span class="w-12 text-center text-sm font-mono text-text-primary">{{ zoomLevel }}%</span>
<button
@click="increaseZoom"
class="w-8 h-8 flex items-center justify-center border border-border-visible rounded text-text-secondary hover:text-text-primary hover:bg-bg-elevated transition-colors disabled:opacity-40 disabled:cursor-not-allowed"
:disabled="zoomLevel >= 150"
>
<Plus class="w-3.5 h-3.5" />
</button>
</div>
</div>
</section>
<!-- 2. Timer behavioral settings -->
<section class="bg-bg-surface rounded-lg p-5 mb-4">
<h2 class="text-xs text-text-tertiary uppercase tracking-[0.08em] font-medium mb-4">Timer</h2>
<div class="space-y-4">
<!-- Idle Detection toggle -->
<div class="flex items-center justify-between">
<p class="text-[0.8125rem] text-text-primary">Idle Detection</p>
<button
@click="toggleIdleDetection"
:class="[
'relative inline-flex h-5 w-9 items-center rounded-full transition-colors duration-150',
idleDetection ? 'bg-status-running' : 'bg-bg-elevated'
]"
>
<span
:class="[
'inline-block h-3.5 w-3.5 transform rounded-full bg-text-primary transition-transform duration-150',
idleDetection ? 'translate-x-[18px]' : 'translate-x-[3px]'
]"
/>
</button>
</div>
<!-- Reminder Interval indented child of idle detection, progressive disclosure -->
<div
v-if="idleDetection"
class="flex items-center justify-between pl-4 border-l-2 border-border-subtle ml-1"
>
<div>
<p class="text-[0.8125rem] text-text-primary">Reminder Interval</p>
<p class="text-[0.6875rem] text-text-tertiary mt-0.5">Minutes between reminders while running</p>
</div>
<input
v-model.number="reminderInterval"
type="number"
min="0"
max="120"
class="w-20 px-3 py-1.5 bg-bg-inset border border-border-subtle rounded text-[0.8125rem] text-text-primary text-right font-mono focus:outline-none focus:border-border-visible"
@change="saveSettings"
/>
</div>
</div>
</section>
<!-- 3. Billing less frequently changed -->
<section class="bg-bg-surface rounded-lg p-5 mb-4">
<h2 class="text-xs text-text-tertiary uppercase tracking-[0.08em] font-medium mb-4">Billing</h2>
<div class="flex items-center justify-between">
<div>
<p class="text-[0.8125rem] text-text-primary">Default Hourly Rate</p>
<p class="text-[0.6875rem] text-text-tertiary mt-0.5">Applied to new projects</p>
</div>
<div class="flex items-center gap-1">
<span class="text-[0.8125rem] text-text-tertiary">$</span>
<input
v-model.number="hourlyRate"
type="number"
min="0"
step="0.01"
class="w-24 px-3 py-1.5 bg-bg-inset border border-border-subtle rounded text-[0.8125rem] text-text-primary text-right font-mono focus:outline-none focus:border-border-visible"
placeholder="0.00"
@change="saveSettings"
/>
</div>
</div>
</section>
<!-- 4. Data export and management -->
<section class="bg-bg-surface rounded-lg p-5 mb-4">
<h2 class="text-xs text-text-tertiary uppercase tracking-[0.08em] font-medium mb-4">Data</h2>
<div class="flex items-center justify-between">
<div>
<p class="text-[0.8125rem] text-text-primary">Export All Data</p>
<p class="text-[0.6875rem] text-text-tertiary mt-0.5">Download as JSON backup</p>
</div>
<button
@click="exportData"
class="px-4 py-1.5 border border-border-visible text-text-primary text-[0.8125rem] rounded hover:bg-bg-elevated transition-colors duration-150"
>
Export
</button>
</div>
</section>
<!-- 5. Danger Zone destructive actions, isolated at bottom -->
<section class="mt-8 rounded-lg border border-status-error/20 p-5">
<h2 class="text-xs text-status-error uppercase tracking-[0.08em] font-medium mb-4">Danger Zone</h2>
<div class="flex items-center justify-between">
<div>
<p class="text-[0.8125rem] text-text-primary">Clear All Data</p>
<p class="text-[0.6875rem] text-text-tertiary mt-0.5">Permanently delete all entries, projects, clients, and invoices</p>
</div>
<button
@click="showClearDataDialog = true"
class="px-4 py-1.5 border border-status-error text-status-error text-[0.8125rem] font-medium rounded hover:bg-status-error/10 transition-colors duration-150"
>
Clear Data
</button>
</div>
</section>
<!-- Clear Data Confirmation Dialog -->
<div
v-if="showClearDataDialog"
class="fixed inset-0 bg-black/70 backdrop-blur-[4px] flex items-center justify-center z-50"
@click.self="showClearDataDialog = false"
>
<div class="bg-bg-surface border border-border-subtle rounded shadow-[0_1px_3px_rgba(0,0,0,0.3)] w-full max-w-sm mx-4 p-6 animate-modal-enter">
<h2 class="text-[1rem] font-semibold text-text-primary mb-2">Clear All Data</h2>
<p class="text-[0.75rem] text-text-secondary mb-4">
Are you sure? This action cannot be undone.
</p>
<p class="text-[0.6875rem] text-status-error mb-6">
All time entries, projects, clients, and invoices will be permanently deleted.
</p>
<div class="flex justify-end gap-3">
<button
@click="showClearDataDialog = false"
class="px-4 py-2 border border-border-subtle text-text-secondary rounded hover:bg-bg-elevated transition-colors duration-150"
>
Cancel
</button>
<button
@click="clearAllData"
class="px-4 py-2 bg-status-error text-white font-medium rounded hover:bg-status-error/80 transition-colors duration-150"
>
Delete Everything
</button>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { invoke } from '@tauri-apps/api/core'
import { Plus, Minus } from 'lucide-vue-next'
import { useSettingsStore } from '../stores/settings'
import { useToastStore } from '../stores/toast'
const settingsStore = useSettingsStore()
const toastStore = useToastStore()
// Settings state
const hourlyRate = ref(0)
const idleDetection = ref(true)
const reminderInterval = ref(15)
const zoomLevel = ref(100)
// Dialog state
const showClearDataDialog = ref(false)
// Zoom steps
const zoomSteps = [80, 90, 100, 110, 120, 130, 150]
function increaseZoom() {
const currentIndex = zoomSteps.indexOf(zoomLevel.value)
if (currentIndex < zoomSteps.length - 1) {
zoomLevel.value = zoomSteps[currentIndex + 1]
} else if (currentIndex === -1) {
const next = zoomSteps.find(s => s > zoomLevel.value)
if (next) zoomLevel.value = next
}
applyZoom()
}
function decreaseZoom() {
const currentIndex = zoomSteps.indexOf(zoomLevel.value)
if (currentIndex > 0) {
zoomLevel.value = zoomSteps[currentIndex - 1]
} else if (currentIndex === -1) {
const prev = [...zoomSteps].reverse().find(s => s < zoomLevel.value)
if (prev) zoomLevel.value = prev
}
applyZoom()
}
function applyZoom() {
const app = document.getElementById('app')
if (app) {
(app.style as any).zoom = `${zoomLevel.value}%`
}
settingsStore.updateSetting('ui_zoom', zoomLevel.value.toString())
}
// Toggle idle detection with auto-save
function toggleIdleDetection() {
idleDetection.value = !idleDetection.value
saveSettings()
}
// Save settings (called on any change)
async function saveSettings() {
try {
await settingsStore.updateSetting('hourly_rate', hourlyRate.value.toString())
await settingsStore.updateSetting('idle_detection', idleDetection.value.toString())
await settingsStore.updateSetting('reminder_interval', reminderInterval.value.toString())
} catch (error) {
console.error('Failed to save settings:', error)
toastStore.error('Failed to save settings')
}
}
// Export all data
async function exportData() {
try {
const data = await invoke('export_data')
const json = JSON.stringify(data, null, 2)
const blob = new Blob([json], { type: 'application/json' })
const url = URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
a.download = `zeroclock-export-${new Date().toISOString().split('T')[0]}.json`
a.click()
URL.revokeObjectURL(url)
} catch (error) {
console.error('Failed to export data:', error)
toastStore.error('Failed to export data')
}
}
// Clear all data
async function clearAllData() {
try {
await invoke('clear_all_data')
showClearDataDialog.value = false
toastStore.success('All data has been cleared')
} catch (error) {
console.error('Failed to clear data:', error)
toastStore.error('Failed to clear data')
}
}
// Load settings on mount
onMounted(async () => {
await settingsStore.fetchSettings()
hourlyRate.value = parseFloat(settingsStore.settings.hourly_rate) || 0
idleDetection.value = settingsStore.settings.idle_detection !== 'false'
reminderInterval.value = parseInt(settingsStore.settings.reminder_interval) || 15
zoomLevel.value = parseInt(settingsStore.settings.ui_zoom) || 100
})
</script>