Austin Malerba
Austin Malerba
Would be appropriate to add a hook that always returns the value it’s passed on the first render Naming tbd: useFirst(value) useConstant(value) useInitial(value)
Though I believe 90% of the use-cases will leverage useConditionalEffect, there are other hooks that ship with react which should have equivalent representations. useConditionalLayoutEffect(effect, shouldExecute) useConditionalMemo(computation, shouldExecute) useConditionalCallback(callback, shouldUpdate) useConditionalRef(value,...
Need a webgl renderer for much needed perf boost
Something along the lines of import * as ts from "typescript"; const source = "let x: string = 'string'"; let result = ts.transpileModule(source, { compilerOptions: { module: ts.ModuleKind.CommonJS } });...
**Is your feature request related to a problem? Please describe.** People often use tools like typescript, scss, less, markdown **Describe the solution you'd like** Add some of this functionality to...
Look into adding crossorigin="anonymous" and SRI to dependencies
Need authenticated routes with redirect
**Problem**: Applications that load large amounts of data in a paginated manner could end up with large entity stores if no hard page refresh occurs. This is not necessarily a...
Right now, mergeEntities and updateStoredQuery trigger every component that useDB to rerender even if the update didn’t affect the data that the component cares about. Look into memoizing denormalize in...
mergeEntities could take an inspectionKey and createDB could take an inspector function that would except one arg {inspectionKey, prevState, patch, nextState}. this info could be logged every time entities were...