Существуют ли библиотеки React для создания перетаскиваемых пользовательских интерфейсов на основе компонентов?.
В настоящее время я создаю более крупное веб-приложение с ReactJS, которое должно заменить одно из наших настольных приложений. Интерфейс должен быть перетаскиваемым пользовательским интерфейсом на основе компонентов, таким как Photoshop, Premiere Pro и т. Д... https://www.reddit.com/r/reactjs/comments/mmtjvw/are_there_react_libraries_for_creating_draggable/
В настоящее время я создаю более крупное веб-приложение с ReactJS, которое должно заменить одно из наших настольных приложений. Интерфейс должен быть перетаскиваемым пользовательским интерфейсом на основе компонентов, таким как Photoshop, Premiere Pro и т. Д... https://www.reddit.com/r/reactjs/comments/mmtjvw/are_there_react_libraries_for_creating_draggable/
reddit
Are there React Libraries for creating draggable component-based UIs?
Hey, I am currently building a larger webapp with ReactJS that should replace one of our desktop apps. The interface should be a draggable...
Неизменяемость с помощью Immer in React.
В приложениях React наиболее важной частью является состояние приложения. Мы можем поддерживать локальное состояние в компоненте или глобальное состояние во всем приложении с помощью Redux. https://blog.joshsoftware.com/2021/04/05/immutability-with-immer-in-react/
В приложениях React наиболее важной частью является состояние приложения. Мы можем поддерживать локальное состояние в компоненте или глобальное состояние во всем приложении с помощью Redux. https://blog.joshsoftware.com/2021/04/05/immutability-with-immer-in-react/
Josh Software
Immutability with Immer in React
In React applications the most important part is the application state. We can maintain local state within the component or global state across the application using Redux. Managing the state becom…
Дорожная карта React 🏁 10 шагов, чтобы стать разработчиком React в 2021 году https://devdojo.com/reedbarger/the-react-roadmap-10-steps-to-become-a-react-developer-in-2021
DevDojo
The React Roadmap 🏁 10 Steps to Become a React Developer in 2021
Learning how to become a confident React developer takes hard work, but not knowing the right way to become one can make it much harder. Learning React doesn't have to be a chore. Let's break down the...
Перехватчики маршрутизатора React: изучение того, как они работают https://blog.asayer.io/react-router-hooks-exploring-how-they-work
OpenReplay Blog
React Router Hooks: Exploring How They Work
React Router keeps your UI in sync with the URL, learn how to take advantage of its hooks using these examples.
Как реализовать функции корзины покупок с помощью файлов cookie в React https://javascript.plainenglish.io/cookies-in-react-202c3df273c6
Medium
How to implement ‘Shopping Cart’ features using Cookies in React
The problem I solve in my project is similar to the problem of making a user’s shopping cart persist.
Полное руководство по профилированию приложений React
https://blog.asayer.io/the-definitive-guide-to-profiling-react-applications
https://blog.asayer.io/the-definitive-guide-to-profiling-react-applications
Openreplay
The definitive guide to profiling React applications
Learn how to properly profile a React application to understand where the performance bottlenecks can be found
Создавайте файлы PDF с помощью React.
https://clck.Ru/UMdAE
https://clck.Ru/UMdAE
React.js Examples
Create PDF files using React
React renderer for creating PDF files on the browser and server.
Доска задач с функцией перетаскивания для React.
https://clck.ru/UNPqY
https://clck.ru/UNPqY
React.js Examples
A Task Board with drag and drop feature For React
A taskboard application with drag and drop feature.
Бесконечная прокрутка с использованием FlatList | В духе Instagram ⚛️.
https://clck.ru/UNPqS
https://clck.ru/UNPqS
Шпаргалка по маршрутизатору React - все, что вам нужно знать https://www.freecodecamp.org/news/react-router-cheatsheet/
freeCodeCamp.org
The React Router Cheatsheet – Everything You Need to Know
If you're building React applications for the web, you're going to need to use a dedicated router to display pages and navigate your user around them. That's why today we're going to go over the most popular and most powerful router for React applic...
Зачем и как использовать композицию компонентов в React.
https://clck.ru/UQwdk
https://clck.ru/UQwdk
Medium
Why and How to Use Component Composition in React
Unnecessary props and irrelevant conditionals are avoided with this approach, and our component is much more maintainable and reusable.
Как автоматически развернуть ваши приложения React с помощью Cloudflare Pages https://www.freecodecamp.org/news/how-to-auto-deploy-your-react-apps-with-cloudflare-pages/
freeCodeCamp.org
How to Auto-Deploy Your React Apps with Cloudflare Pages
In this article, I'm going to show you how to very quickly deploy any React application with the help of Cloudflare pages. You'll see how to not only build and deploy your app within minutes using just a few tools, but also how to auto-deploy any future…
Создайте безопасное настольное приложение с помощью Electron Forge и React https://www.sitepoint.com/electron-forge-react-build-secure-desktop-app
SitePoint
Build a Secure Desktop App with Electron Forge and React
Creating a cross-platform desktop app is easy thanks to Electron. Learn how to create a secure desktop app using React, Electron and Electron Forge.
Шпаргалка по React - 9 распространенных случаев рендеринга HTML, о которых вы должны знать https://www.freecodecamp.org/news/react-cheatsheet-html-rendering/
freeCodeCamp.org
React Cheatsheet – 9 Common HTML Rendering Cases You Should Know
Whenever I'm starting with a new framework or it's been a while since I've used it, I always end up searching for the same simple things. I'll Google how to render raw HTML, how to display a component based on a condition, how to assign a class to an element…
This media is not supported in your browser
VIEW IN TELEGRAM
Система компонентов-сущностей для React https://reactjsexample.com/an-entity-component-system-for-react/
React - Помимо основ (исключая хуки): Context, Errors, Refs, HOCs, Render Props. В этой статье предполагается, что вы понимаете основы React, и вы пытаетесь прояснить более сложные концепции.
Я буду говорить о контексте, ошибках, ссылках, компонентах высокого порядка и свойствах рендеринга. https://medium.com/nerd-for-tech/react-beyond-the-basics-excluding-hooks-context-errors-refs-hocs-render-props-52df90d61229
Я буду говорить о контексте, ошибках, ссылках, компонентах высокого порядка и свойствах рендеринга. https://medium.com/nerd-for-tech/react-beyond-the-basics-excluding-hooks-context-errors-refs-hocs-render-props-52df90d61229
Medium
React — Beyond the basics (excluding hooks): Context, Errors, Refs, HOCs, Render Props.
This article assumes you understand the basics of React and tries to clarify the more advanced concepts.
Использование Material UI в React Native https://blog.logrocket.com/using-material-ui-in-react-native/
LogRocket Blog
Using Material UI in React Native - LogRocket Blog
If you’re building a cross-platform mobile app, it’s a good idea to base your app’s UI/UX on Material Design, Google’s own design language, which it uses in all its mobile apps. Why? One of the best reasons is that many of the most popular mobile apps heavily…
Ультра-настраиваемый фреймворк карусели для React.JS https://reactjsexample.com/ultra-customizable-carousel-framework-for-react-js/
React.js Examples
Ultra-customizable carousel framework for React.JS
Ultra-customizable carousel framework for React.JS.
Компонент React для выбора элементов из списка столбцов https://reactjsexample.com/react-component-to-select-items-from-a-column-list/
React.js Examples
React component to select items from a column list
React component to select items from a column list.
10 советов по настройке производительности React UI https://www.infoworld.com/article/3616579/10-tips-for-tuning-react-ui-performance.html
InfoWorld
10 tips for tuning React UI performance
Nobody likes a slow web UI. Fortunately, React gives you a number of ways to tune UI performance, from ways to optimize updates to the DOM to the ability to render and fetch simultaneously using the new concurrent mode.