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
| import { ref, onMounted, onUnmounted } from 'vue'
export function useDebounce(fn, delay = 300) { let timeoutId = null const debouncedFn = (...args) => { clearTimeout(timeoutId) timeoutId = setTimeout(() => fn(...args), delay) } const cancel = () => { clearTimeout(timeoutId) } const flush = (...args) => { cancel() fn(...args) } onUnmounted(() => { cancel() }) return { debouncedFn, cancel, flush } }
export function useThrottle(fn, delay = 300) { let lastExecTime = 0 let timeoutId = null const throttledFn = (...args) => { const now = Date.now() if (now - lastExecTime >= delay) { lastExecTime = now fn(...args) } else { clearTimeout(timeoutId) timeoutId = setTimeout(() => { lastExecTime = Date.now() fn(...args) }, delay - (now - lastExecTime)) } } const cancel = () => { clearTimeout(timeoutId) } onUnmounted(() => { cancel() }) return { throttledFn, cancel } }
export function useWindowEvent(event, handler, options = {}) { const { passive = true, capture = false } = options onMounted(() => { window.addEventListener(event, handler, { passive, capture }) }) onUnmounted(() => { window.removeEventListener(event, handler, { passive, capture }) }) }
export function useEventListener(target, event, handler, options = {}) { const { passive = true, capture = false } = options const cleanup = () => { if (target.value) { target.value.removeEventListener(event, handler, { passive, capture }) } } watch( target, (newTarget, oldTarget) => { if (oldTarget) { oldTarget.removeEventListener(event, handler, { passive, capture }) } if (newTarget) { newTarget.addEventListener(event, handler, { passive, capture }) } }, { immediate: true } ) onUnmounted(cleanup) return cleanup }
export function useKeyboard(keyMap) { const pressedKeys = ref(new Set()) const handleKeyDown = (event) => { pressedKeys.value.add(event.code) for (const [combination, handler] of Object.entries(keyMap)) { const keys = combination.split('+') const isMatch = keys.every(key => { if (key === 'ctrl') return event.ctrlKey if (key === 'alt') return event.altKey if (key === 'shift') return event.shiftKey if (key === 'meta') return event.metaKey return pressedKeys.value.has(key) }) if (isMatch) { event.preventDefault() handler(event) break } } } const handleKeyUp = (event) => { pressedKeys.value.delete(event.code) } useWindowEvent('keydown', handleKeyDown) useWindowEvent('keyup', handleKeyUp) return { pressedKeys: readonly(pressedKeys) } }
export function useSearchInput() { const searchQuery = ref('') const searchResults = ref([]) const isSearching = ref(false) const performSearch = async (query) => { if (!query.trim()) { searchResults.value = [] return } isSearching.value = true try { const response = await fetch(`/api/search?q=${encodeURIComponent(query)}`) const results = await response.json() searchResults.value = results } catch (error) { console.error('搜索失败:', error) searchResults.value = [] } finally { isSearching.value = false } } const { debouncedFn: debouncedSearch } = useDebounce(performSearch, 300) watch(searchQuery, (newQuery) => { debouncedSearch(newQuery) }) return { searchQuery, searchResults: readonly(searchResults), isSearching: readonly(isSearching) } }
|