mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
47 lines
No EOL
1.3 KiB
JavaScript
47 lines
No EOL
1.3 KiB
JavaScript
import { useCallback, useState } from "react"
|
|
|
|
|
|
/**
|
|
* An hook similar to {@link useState} which stores an array of values.
|
|
*
|
|
* @param def - The starting value of the hook.
|
|
* @returns {{spliceValue, removeValue, setValue, appendValue, value}}
|
|
*/
|
|
export default function useArrayState(def) {
|
|
const [value, setValue] = useState(def ?? [])
|
|
|
|
const appendValue = useCallback(
|
|
newSingle => {
|
|
console.debug("Aggiungendo ", newSingle, " ad ArrayState")
|
|
setValue(
|
|
oldArray => [...oldArray, newSingle],
|
|
)
|
|
},
|
|
[],
|
|
)
|
|
|
|
const spliceValue = useCallback(
|
|
position => {
|
|
console.debug("Estraendo ", position, " da ArrayState")
|
|
setValue(
|
|
oldArray => {
|
|
oldArray.splice(position, 1)
|
|
return [...oldArray]
|
|
},
|
|
)
|
|
},
|
|
[],
|
|
)
|
|
|
|
const removeValue = useCallback(
|
|
remValue => {
|
|
console.debug("Removing ", remValue, " from ArrayState")
|
|
setValue(
|
|
oldArray => oldArray.filter(item => JSON.stringify(item) !== JSON.stringify(remValue)),
|
|
)
|
|
},
|
|
[],
|
|
)
|
|
|
|
return { value, setValue, appendValue, spliceValue, removeValue }
|
|
} |