[Navigator] Guard `navigator.state.routeStack` from accidental mutation

Summary:
A minor improvement suggestion: `Navigator.getCurrentRoutes()` probably shouldn't return its `routeStack` backing array as-is, because the caller may mutate it, causing the internal state of the navigator to go out of sync. Instead a shallow copy of the routes should be returned.

I stumbled on this problem in my app by attempting to read the navigator state as follows:
```
let routes = Navigator.getCurrentRoutes();
let current = routes.pop();
let previous = routes.pop();
```

Which led to an exception at next navigation event.

CLA signed.

Closes https://github.com/facebook/react-native/pull/1888
Github Author: Jani Evakallio <jani.evakallio@gmail.com>
This commit is contained in:
Jani Evakallio 2015-07-08 11:43:32 -07:00
Родитель 4b5b952c32
Коммит b5c1cd7918
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1002,7 +1002,8 @@ var Navigator = React.createClass({
},
getCurrentRoutes: function() {
return this.state.routeStack;
// Clone before returning to avoid caller mutating the stack
return this.state.routeStack.slice();
},
_handleItemRef: function(itemId, route, ref) {