Redux как хранилище состояния для json-render
★ 8.1 · productivity
Управление состоянием через Redux is a Claude Code skill that wires a Redux or Redux Toolkit store as the state backend for json-render via the @json-render/redux adapter, implementing json-render's StateStore interface. Reach for it when your React app already has a Redux store and you want json-render to read and write through it instead of maintaining a separate state; or when you need Redux DevTools visibility into UI state, want to keep json-render data inside a Redux slice, and synchronize it with the rest of the state tree. The core API is a single function, reduxStateStore, that accepts three required options: store (the Redux store instance), selector (picks the relevant slice from the state tree), and dispatch (fires the action that replaces the selected slice with the next state). Install via npm alongside @json-render/core, @json-render/react, and either redux or the recommended @reduxjs/toolkit; integrate by passing the resulting store to json-render's StateProvider component. The direction here is connecting an existing Redux store into json-render — not managing state outside json-render (for that, json-render's built-in StateStore is sufficient). Best suited for projects already committed to Redux; if Redux is not part of the stack, this adapter adds unnecessary overhead.
- #redux
- #redux-toolkit
- #state-management
- #json-render
- #integration