-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I'm working with threejs and here using usePromise to load an external model it works the first time, but not on successive use of the loader on the same resource. Would be nice to have the ability to assign a function that defines the copy logic, with threejs this can be done with mesh.clone(); for example.
This is how the usePromise could work.
const data = usePromise(
fetchJson, [
'https://pokeapi.co/api/v2/pokemon/ditto/',
{ method: 'GET' },
],
{
// options object instead of single argument for lifespan
lifespan: 1000,
onCache: (originalResponse) => myCustomCloneFunction(originalResponse)
}
);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels