In a React-Redux application, I've got a state like this:
state = {
items: [
{ id: 1, first_name: "John", last_name: "Smith", country: "us" },
{ id: 2, first_name: "Jinping", last_name: "Xi", country: "cn" },
]
}
which I render using a React component.
Now I need a function that gives me the "full name" of a person. So it's not just "first_name + last_name" but it depends on the country (for example, it would be "last_name + first_name" in China), so there's some relatively complex logic, which I would like to wrap in a function usable from any React component.
In OOP I would create a Person::getFullName()
method that would give me this information. However the state
object is a "dumb" one where sub-objects don't have any specialized methods.
So what is the recommended way to manage this in React-Redux in general? All I can think of is create a global function such as user_getFullName(user)
which would take a user and return the full name, but that's not very elegant. Any suggestion?
question from:
https://stackoverflow.com/questions/40870777/where-to-put-utility-functions-in-a-react-redux-application 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…