-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nextjs 15, Tailwind 4 and ShadCN Integrated #59
Conversation
…and updated logout functionality
Good update, this probably won't get merged as the team is working on new starterkits, see: #58 (comment) so I think it's best you maintain your own starter kit until then Other than that I have the following suggestions:
Not related to this PR exactly but please implement some form of auth check using middleware: https://nextjs.org/docs/app/building-your-application/authentication#session-management. |
Thanks a lot for the great suggestions, @Willem-Jaap ! It's really helpful to get insights from someone other than just myself. I hope you don’t mind me asking, but if you ever have time, I'd really appreciate it if you could keep an eye on my repo and share any suggestions. I'm aiming to improve my approach more realistically. I implemented these changes within 8-9 hours while testing each build to ensure it aligns with a production environment. Also, I’d love your input on the best approach for this: Regarding server-side pagination, search, and filtering:
Would Server Actions be the ideal solution here? [Next.js Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations) seem like a potential approach. Looking forward to your thoughts! 🚀 |
Regarding the query parameters, they actually should be visible. This ensures that the state is preserved when reloading the page or sharing the URL. Otherwise, users might lose their search, sorting, or pagination settings when navigating away and back. A great library for managing this in React is nuqs. We use this strategy heavily internally:
This approach makes everything feel smooth while still keeping the URL in sync with the app state. You could also use a more server driven approach using serverside search params and fetching serverside. I wouldn't use server actions for this as it is not a POST or PUT, rather just update searchParams which refreshes page using updated search params. If you have more questions we should probably move out of this PR, feel free to reach me on x |
Please check this out, if this requires any other critical changes, i did best of my knowledge to upgrade this.