mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
12646d0541
GitOrigin-RevId: ed3c5937bafc984440ee262c8cb0c1ba63f0be7d
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import {
|
|
type Dispatch,
|
|
type SetStateAction,
|
|
useCallback,
|
|
useState,
|
|
} from 'react'
|
|
import { useIdeContext } from '../context/ide-context'
|
|
import _ from 'lodash'
|
|
|
|
/**
|
|
* Similar to `useScopeValue`, but instead of creating a two-way binding, only
|
|
* changes in react-> angular direction are propagated, with `value` remaining
|
|
* local and independent of its value in the Angular scope.
|
|
*
|
|
* The interface is compatible with React.useState(), including
|
|
* the option of passing a function to the setter.
|
|
*/
|
|
export default function useScopeValueSetterOnly<T = any>(
|
|
path: string, // dot '.' path of a property in the Angular scope.
|
|
defaultValue?: T
|
|
): [T | undefined, Dispatch<SetStateAction<T | undefined>>] {
|
|
const { scopeStore } = useIdeContext()
|
|
|
|
const [value, setValue] = useState<T | undefined>(defaultValue)
|
|
|
|
const scopeSetter = useCallback(
|
|
(newValue: SetStateAction<T | undefined>) => {
|
|
setValue(val => {
|
|
const actualNewValue = _.isFunction(newValue) ? newValue(val) : newValue
|
|
scopeStore.set(path, actualNewValue)
|
|
return actualNewValue
|
|
})
|
|
},
|
|
[path, scopeStore]
|
|
)
|
|
|
|
return [value, scopeSetter]
|
|
}
|