Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | 1x 1x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 6x 1x 6x 6x 18x 18x 30x 1x 1x 30x 1x 1x 30x 1x 1x 30x 1x 1x 30x 3x 3x 2x 2x 3x 30x 1x 1x 30x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 30x 3x 3x 1x 1x 3x 30x 3x 3x 2x 2x 2x 1x 1x 2x 3x 30x 1x 3x 3x 3x 1x 1x 1x 30x 2x 2x 30x 2x 2x 30x 30x 2x 2x 30x 3x 3x 3x 30x 1x 1x 1x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x | /**
* UI Store
*
* Manages UI state including modals, toasts, notifications, and loading states.
* Provides a centralized way to show user feedback and manage UI elements.
*/
import { defineStore } from 'pinia'
import { ref, computed } from 'vue'
export type ToastType = 'success' | 'error' | 'warning' | 'info'
export interface Toast {
id: string
type: ToastType
message: string
duration?: number
action?: {
label: string
callback: () => void
}
}
export interface Modal {
id: string
component: string
props?: Record<string, any>
onClose?: () => void
}
export const useUiStore = defineStore('ui', () => {
// ============================================================================
// State
// ============================================================================
const toasts = ref<Toast[]>([])
const modals = ref<Modal[]>([])
const isSidebarOpen = ref(false)
const isFullscreen = ref(false)
const globalLoading = ref(false)
const globalLoadingMessage = ref<string | null>(null)
// ============================================================================
// Getters
// ============================================================================
const hasToasts = computed(() => toasts.value.length > 0)
const hasModals = computed(() => modals.value.length > 0)
const currentModal = computed(() => modals.value[modals.value.length - 1] || null)
// ============================================================================
// Actions - Toasts
// ============================================================================
/**
* Show a toast notification
*/
function showToast(
message: string,
type: ToastType = 'info',
duration = 5000,
action?: Toast['action']
) {
const id = `toast-${Date.now()}-${Math.random()}`
const toast: Toast = {
id,
type,
message,
duration,
action,
}
toasts.value.push(toast)
// Auto-remove after duration
if (duration > 0) {
setTimeout(() => {
removeToast(id)
}, duration)
}
return id
}
/**
* Show success toast
*/
function showSuccess(message: string, duration = 5000) {
return showToast(message, 'success', duration)
}
/**
* Show error toast
*/
function showError(message: string, duration = 7000) {
return showToast(message, 'error', duration)
}
/**
* Show warning toast
*/
function showWarning(message: string, duration = 6000) {
return showToast(message, 'warning', duration)
}
/**
* Show info toast
*/
function showInfo(message: string, duration = 5000) {
return showToast(message, 'info', duration)
}
/**
* Remove a specific toast
*/
function removeToast(id: string) {
const index = toasts.value.findIndex(t => t.id === id)
if (index !== -1) {
toasts.value.splice(index, 1)
}
}
/**
* Clear all toasts
*/
function clearToasts() {
toasts.value = []
}
// ============================================================================
// Actions - Modals
// ============================================================================
/**
* Open a modal
*/
function openModal(component: string, props?: Record<string, any>, onClose?: () => void) {
const id = `modal-${Date.now()}-${Math.random()}`
const modal: Modal = {
id,
component,
props,
onClose,
}
modals.value.push(modal)
return id
}
/**
* Close the current modal (top of stack)
*/
function closeModal() {
const modal = modals.value.pop()
if (modal?.onClose) {
modal.onClose()
}
}
/**
* Close a specific modal by ID
*/
function closeModalById(id: string) {
const index = modals.value.findIndex(m => m.id === id)
if (index !== -1) {
const modal = modals.value[index]
modals.value.splice(index, 1)
if (modal?.onClose) {
modal.onClose()
}
}
}
/**
* Close all modals
*/
function closeAllModals() {
modals.value.forEach(modal => {
if (modal.onClose) {
modal.onClose()
}
})
modals.value = []
}
// ============================================================================
// Actions - UI State
// ============================================================================
/**
* Toggle sidebar
*/
function toggleSidebar() {
isSidebarOpen.value = !isSidebarOpen.value
}
/**
* Set sidebar state
*/
function setSidebarOpen(open: boolean) {
isSidebarOpen.value = open
}
/**
* Toggle fullscreen
*/
function toggleFullscreen() {
isFullscreen.value = !isFullscreen.value
if (process.client) {
if (isFullscreen.value) {
document.documentElement.requestFullscreen?.()
} else {
document.exitFullscreen?.()
}
}
}
/**
* Set fullscreen state
*/
function setFullscreen(fullscreen: boolean) {
isFullscreen.value = fullscreen
}
/**
* Show global loading overlay
*/
function showLoading(message?: string) {
globalLoading.value = true
globalLoadingMessage.value = message || null
}
/**
* Hide global loading overlay
*/
function hideLoading() {
globalLoading.value = false
globalLoadingMessage.value = null
}
// ============================================================================
// Return Store API
// ============================================================================
return {
// State
toasts: readonly(toasts),
modals: readonly(modals),
isSidebarOpen: readonly(isSidebarOpen),
isFullscreen: readonly(isFullscreen),
globalLoading: readonly(globalLoading),
globalLoadingMessage: readonly(globalLoadingMessage),
// Getters
hasToasts,
hasModals,
currentModal,
// Toast actions
showToast,
showSuccess,
showError,
showWarning,
showInfo,
removeToast,
clearToasts,
// Modal actions
openModal,
closeModal,
closeModalById,
closeAllModals,
// UI state actions
toggleSidebar,
setSidebarOpen,
toggleFullscreen,
setFullscreen,
showLoading,
hideLoading,
}
})
|