You should use local state i.e. useState as much as possible. Redux state should be the last resort. Only use Redux state if you absolutely need to pass data from one end of the application all the way to another end . This is both good practice for tight coupling and good performance.
Read moreWhat is React useState?
useState is a Hook that allows you to have state variables in functional components . You pass the initial state to this function and it returns a variable with the current state value (not necessarily the initial state) and another function to update this value.4 Ara 2020
Read moreSide Effect nedir React?
React ile daha önce geliştirme yaptıysanız; API kullanımlarınıda, subscribes ve DOM’un manuel olarak değiştirilmesi gibi işlemlere side effects denir. Çünkü bu tarz yan etkiye sahip işlemler rendering sırasında tamamlanmayabilir veya diğer bileşenlere etki etmesi gerekiyor olabilir.
Read moreuseRef nedir?
useRef bir component içerisinde component’in tekrar render olmasını tetiklemeden “mutable” değişken tutmamızı sağlayan yapıdır.
Read moreHook nedir React?
React hooks bir class yazmadan react özelliklerini kullanmanıza olanak sağlayan bir yapıdır. React geliştiricilerinin hatırlayacağı üzere daha önce oluşturduğumuz class’ları react .component’ten extend ediyorduk ve bu sayede react özelliklerini kullanabiliyorduk.12 Oca 2019
Read moreYazılımda Hook nedir?
Hook ‘lar React 16.8’deki yeni bir eklentidir. Bir sınıf yazmadan state ve diğer React özelliklerini kullanmanıza olanak sağlarlar.
Read moreuseEffect ne zaman çalışır?
Bu özellik ise componentDidMount, componentDidUpdate ve componentWillUnmount gibi çalışmaktadır. Aslında her render işlemi sonrası çalışabildiği gibi bizim belirttiğimiz değişkenlerin değişmesi sonrasında da çalışabilir ya da sadece ilk render işlemi sonrası çalışabilir.
Read more