Skip to content
#

Redux

redux logo

Redux is an open source JavaScript library, designed to allow for state management of JavaScript applications. Inspired by Elm, Redux is a debugging tool and supports robust application data-flow architecture. Redux is frequently used in combination with React.

Here are 22,634 public repositories matching this topic...

react-boilerplate
markerikson
markerikson commented Nov 18, 2019

Is your feature request related to a problem? Please describe.
Hi, I'm a Redux maintainer. I'd like to offer a couple suggestions.

The current Redux example implementation shows use of reducers with "hand-written" immutable update logic, and has a somewhat complex store configuration. In addition, the project's current "feature folder" structure results in multiple separate files for the

langpavel
langpavel commented Oct 24, 2017

Too wide (and falsy) segregation of GraphQL Types and Resolvers

The first example of this is new ObjectType in src/data/queries/index.js importing fields.
Fields should be taken in context of parent type, not as standalone information.

This can ensure some users that custom types cannot have own field resolvers which is false.

In fact, much of fields which can have own resolvers

daffodil11
daffodil11 commented Nov 21, 2019

Problem

When following the instructions in the README in the redux example project, a crash occurs.

Input

Here's how I'm using normalizr:
clone this repo
run yarn in the root dir
run yarn in the examples/redux dir
run yarn start

Output

Here's what I expect to see when I run the above:
An inquirer prompt.

Here's what I actually see when I run the above:

> no
ayush000
ayush000 commented Mar 8, 2017

feature suggestion

Hey,

I suggest to use a standard documentation format like JSDoc to document all functions and APIs. Otherwise, you can use long strings as name for test cases, instead of just writing the name of the function being tested. This will improve readability of code and ensure better practices by people using it. Thanks.

cal0610
cal0610 commented May 10, 2018

Documentation now:

const taxSelector = createSelector(
  subtotalSelector,
  taxPercentSelector,
  (subtotal, taxPercent) => subtotal * (taxPercent / 100)
)

Documentation for immutable js:

const taxSelector = createSelector(
  subtotalSelector(),
  taxPercentSelector(),
  (subtotal, taxPercent) => subtotal * (taxPercent / 100)
)

Been through the docs and cou

hannojg
hannojg commented Aug 9, 2019

I have issues to get Reactotron working in my jest react-native test environment.
Before running a test I simply do
jest.mock("reactotron-react-native");, but then I receive an error stating
TypeError: Cannot read property 'useReactNative' of undefined
![Screenshot 2019-08-09 at 18 01 26](https://user-images.githubusercontent.com/16821682/62792504-bd64b080-bacf-11e9-96a8-0d33089332ac.pn

TalAmuyal
TalAmuyal commented Feb 28, 2019

Looking for help from the community regarding this issue.

Issue:
Unclear CI test failure.

Expected behavior:
Failed test would indicate the failure with some extra info for investigation.

Actual behavior:
Prints Expected: true, Actual: false which is less than optimal.

Steps to reproduce:
Run a failing test.

Would help to have more verbose logging for the tests

santoshyadav198613
santoshyadav198613 commented Oct 5, 2019

Hi Team,

As per docs https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/API/Arguments.md#features

Note that except true/false, import and export can be set as custom (which is by default for Redux enhancer), meaning that the importing/exporting occurs on the client side. Otherwise, you'll get/set the data right from the monitor part.

But when we set import : true

joemaffei
joemaffei commented Aug 19, 2019

There are two mentions of a reactide.config.js file in the README:

The component tree works out-of-the-box by finding the entry point to your React application that you provide inside the reactide.config.js file.

Go to the reactide.config.js file and change the .html and .js entry points to the relative path of your respective files.

But I could not find any examples or documentation

markerikson
markerikson commented Nov 18, 2019

Hi, I'm a Redux maintainer. I'd like to offer a couple suggestions.

Is your feature request related to a problem? Please describe.

The current Redux example implementation shows use of reducers with "hand-written" immutable update logic, and has a somewhat complex store configuration. In addition, the project currently uses a "folder-by-type" folder structure.

**Describe the solutio

Nemecsek
Nemecsek commented Jan 24, 2020

Environment info

  • OS: Windows 10
  • App Version: 1.8.2

Description of the problem / feature request / question:

The scrollbar in EDIT is completely missing.
It is possible to scroll using the mouse wheel, but the standard scrollbar should show the relative position in the text.

wmwart
wmwart commented Oct 9, 2019

Hello!
I wrote a Notification service for my application, and use a subscription to a new notification for the user, according to the selected topics.

After changing the topics for the user, it is logical to resubscribe to notifications with new parameters, but nowhere in the documentation for useSubscription hook there is no mention or example for such a common scenario.

I ask you to help

devhub
gnumoksha
gnumoksha commented Nov 19, 2019
$ chmod +x DevHub-0.98.5.AppImage
$ ./DevHub-0.98.5.AppImage
[74678:1119/111718.741581:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_DevHubUcWLlF/chrome-sandbox is owned by root and has mode 4755.
[1]    74678 trace trap  ./D
oyo-ravi-yadav
oyo-ravi-yadav commented Jan 16, 2020

Describe the bug
Getting this warning when building prod webpack config and running it

You are currently using minified code outside of NODE_ENV === 'production'. This means that you are
running a slower development build of Redux. You can use loose-envify
(https://github.com/zertosh/loose-envify) for browserify or DefinePlugin for webpack
(http://stackoverflow.com/questions/30030

Created by Dan Abramov and Andrew Clark

Released June 2, 2015

Repository
reactjs/redux
Website
redux.js.org
Wikipedia
Wikipedia

Related Topics

javascript react
You can’t perform that action at this time.