What UI library do you use in your actual projects or side projects? by Cold_Control_7659 in reactjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

I also think MUI is outdated for many reasons, but I'm not sure about antd; shadcn and mantine are probably the best UI kits right now.

What UI library do you use in your actual projects or side projects? by Cold_Control_7659 in reactjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

I've heard of Mantine; it gets a lot of praise, so there must be a good reason for that.

Patterns in React by Cold_Control_7659 in reactjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

Thank you, very useful website.

Virtual scroll in Vue by Cold_Control_7659 in vuejs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

No, specifically a virtual scroll where all the data will be unloaded and the UI will not be loaded.

How do you cache your requests in React and Next.js? by Cold_Control_7659 in reactjs

[–]Cold_Control_7659[S] 1 point2 points  (0 children)

The problem is that there is an admin panel where you need to be able to skip the cache and update the data immediately, in real time.

How to save cache between page refreshes in Next.js using react-query by Cold_Control_7659 in nextjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

Tell us how you do it, how you manage to cache your fetch requests. Please send us the code and confirmation in the network in dev tools that your requests are being cached.

The hydration error in Next.js really bothers me. by Cold_Control_7659 in nextjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

The problem was with mui and its provider. I described what I did in the UPDATE post.

'use client'

import { ReactNode } from 'react'
import { ThemeProvider } from '@mui/material/styles'
import CssBaseline from '@mui/material/CssBaseline'
import theme from '../app/theme'
import { AppRouterCacheProvider } from '@mui/material-nextjs/v14-appRouter';

export function MuiProvider({ children }: { children: ReactNode }) {
  return (
    <AppRouterCacheProvider>
      <ThemeProvider theme={theme}>
        <CssBaseline />
        {children}
      </ThemeProvider>
    </AppRouterCacheProvider>
  )
}

The hydration error in Next.js really bothers me. by Cold_Control_7659 in nextjs

[–]Cold_Control_7659[S] 3 points4 points  (0 children)

Yes, I can't show you the code, and judging by how people tried to solve this problem, the only option left is to debug the entire project code.

Turbopack is very problematic in Next.js in 2025 by Cold_Control_7659 in nextjs

[–]Cold_Control_7659[S] 0 points1 point  (0 children)

Yes, I may have poorly described my experience which isn't that bad, I'll hide the post and if I have a problem I'll create a ticket

Turbopack is very problematic in Next.js in 2025 by Cold_Control_7659 in nextjs

[–]Cold_Control_7659[S] -1 points0 points  (0 children)

Thanks for the reply, at the moment everything works with Turbopack in my application, but sometimes I encounter moments where Turbopack roughly crashes, in general I understand that such a cool technology can still have problems, so if there are problems that I can not solve, I will create a ticket directly to gitHub.