Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

pingdotgg/uploadthing

dsj7419 starred pingdotgg/uploadthing
hbsnow starred pingdotgg/uploadthing
rlan starred pingdotgg/uploadthing
Navidtm starred pingdotgg/uploadthing
coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Update Dropzone example for accuracy and completeness.** The example needs several improvements: 1. Remove `as` prop usage since it's not implemented yet 2. Add erro...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Optimize PrimitiveSlot component with memoization** The component re-renders on every parent update. Consider using `useMemo` for the function result: ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Enhance error handling in uploadFiles** Consider adding specific error handling for common upload scenarios: ```diff startUpload(files, fileRouteInpu...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Simplify state computation logic** The state computation can be simplified using early returns: ```diff const state = (() => { if (props.__interna...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Enhance button loading state feedback.** The button's state indication could be more informative. Consider adding a loading spinner and disabled state ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Enhance component with comprehensive state handling.** The current implementation has several areas for improvement: 1. The state prop is named `state` but PR object...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Replace alert with in-component feedback.** Using `alert()` for upload completion feedback creates a poor user experience. Consider handling the feedback within the ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Add basic error handling for setFiles.** Consider adding basic error handling when clearing files to gracefully handle potential failures. ```diff on...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Use JSX children pattern instead of children prop.** The `children` prop should be passed using JSX syntax rather than as a prop to follow React conventions. ```dif...

View on GitHub

coderabbitai[bot] created a review on a pull request on pingdotgg/uploadthing
**Actionable comments posted: 9** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (7)</summary><blockquote> <details> <summary>examples/with-clerk-pagesdir/src/pages/index.tsx (1)</s...

View on GitHub

coderabbitai[bot] created a review on a pull request on pingdotgg/uploadthing
**Actionable comments posted: 9** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (7)</summary><blockquote> <details> <summary>examples/with-clerk-pagesdir/src/pages/index.tsx (1)</s...

View on GitHub

veloii created a comment on a pull request on pingdotgg/uploadthing
Sorry this took so long. I've fixed all the merge conflicts, but I'm not very experienced with documentation and lack the time at the moment so I've added some extremely basic examples for the docs...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Consider splitting the hook into smaller, more focused hooks.** The `useDropzone` hook has grown quite large and handles multiple responsibilities. Con...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Simplify the onDragEnter handler logic.** The `onDragEnter` handler contains nested Promise handling and complex state updates. Consider extracting the...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Improve error handling for file operations.** The file processing logic uses Promise.resolve but only has a basic catch handler that calls `noop`. Consider adding pr...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Update usage of deprecated onDrop prop** The `onDrop` prop is marked as deprecated in favor of `onChange` in the type definitions, but it's still being used here. C...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Consider memoizing primitiveValues object** The `primitiveValues` object is recreated on every render. Consider using `useMemo` to optimize performance...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Consider extracting style computation logic** The render logic contains multiple inline style computations that could be extracted for better readabili...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Enhance error handling in uploadFiles** While the error handling distinguishes between abort errors and other errors, it might be beneficial to add spe...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Remove 'any' casting by properly typing primitive props** The `any` casting on `rootProps` bypasses TypeScript's type checking. Consider: 1. Explicitly defining the ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Consider refining type casting for better type safety** The double casting through `unknown` could mask potential type errors. Consider creating a unif...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:hammer_and_wrench: Refactor suggestion_ **Consider type-safe primitive re-exports.** The spread operator on primitives (`...primitives`) could lead to type mismatches if the primitive exports c...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Enhance accessibility implementation.** The `aria-disabled` attribute is set, but the component lacks the corresponding `disabled` prop implementation. Apply this d...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on pingdotgg/uploadthing
_:warning: Potential issue_ **Use JSX children pattern instead of children prop.** The `children` prop should be passed directly in JSX rather than as a prop to follow React conventions. Apply t...

View on GitHub

coderabbitai[bot] created a review on a pull request on pingdotgg/uploadthing
**Actionable comments posted: 12** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (4)</summary><blockquote> <details> <summary>packages/react/src/components/primitive/root.tsx (1)</...

View on GitHub

coderabbitai[bot] created a review on a pull request on pingdotgg/uploadthing
**Actionable comments posted: 12** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (4)</summary><blockquote> <details> <summary>packages/react/src/components/primitive/root.tsx (1)</...

View on GitHub

Load more