useSettingsChange.ts
hooks/useSettingsChange.ts
No strong subsystem tag
26
Lines
946
Bytes
1
Exports
5
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with general runtime concerns. It contains 26 lines, 5 detected imports, and 1 detected exports.
Important relationships
Detected exports
useSettingsChange
Keywords
settingsutilssettingsourceonchangesourcehandlechangeusecallbackuseeffectsettingschangedetectorchangedetector
Detected imports
react../utils/settings/changeDetector.js../utils/settings/constants.js../utils/settings/settings.js../utils/settings/types.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import { useCallback, useEffect } from 'react'
import { settingsChangeDetector } from '../utils/settings/changeDetector.js'
import type { SettingSource } from '../utils/settings/constants.js'
import { getSettings_DEPRECATED } from '../utils/settings/settings.js'
import type { SettingsJson } from '../utils/settings/types.js'
export function useSettingsChange(
onChange: (source: SettingSource, settings: SettingsJson) => void,
): void {
const handleChange = useCallback(
(source: SettingSource) => {
// Cache is already reset by the notifier (changeDetector.fanOut) —
// resetting here caused N-way thrashing with N subscribers: each
// cleared the cache, re-read from disk, then the next cleared again.
const newSettings = getSettings_DEPRECATED()
onChange(source, newSettings)
},
[onChange],
)
useEffect(
() => settingsChangeDetector.subscribe(handleChange),
[handleChange],
)
}