Files
react-native/ReactCommon/fabric/core/state/State.cpp
T
Valentin SherginandFacebook Github Bot b491e8725a Fabric: ShadowNode::getCommitedState() does not crash now in case if there is no comited state
Summary: `Target` inside the Stage can be empty; in this case, we should not try to extract `ShadowNode` from it.

Reviewed By: JoshuaGross, mdvacca

Differential Revision: D15982479

fbshipit-source-id: 83a4bebadc88b59d7fe77acbdf07e8ce9f2f6be1
2019-06-26 10:05:30 -07:00

55 lines
1.5 KiB
C++

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "State.h"
#include <glog/logging.h>
#include <react/core/ShadowNode.h>
#include <react/core/ShadowNodeFragment.h>
#include <react/core/State.h>
#include <react/core/StateTarget.h>
#include <react/core/StateUpdate.h>
#ifdef ANDROID
#include <folly/dynamic.h>
#endif
namespace facebook {
namespace react {
State::State(State const &state) : stateCoordinator_(state.stateCoordinator_){};
State::State(StateCoordinator::Shared const &stateCoordinator)
: stateCoordinator_(stateCoordinator){};
void State::commit(const ShadowNode &shadowNode) const {
stateCoordinator_->setTarget(StateTarget{shadowNode});
}
State::Shared State::getCommitedState() const {
auto target = stateCoordinator_->getTarget();
return target ? target.getShadowNode().getState()
: ShadowNodeFragment::statePlaceholder();
}
#ifdef ANDROID
const folly::dynamic State::getDynamic() const {
LOG(FATAL)
<< "State::getDynamic should never be called (some virtual method of a concrete implementation should be called instead)";
abort();
return folly::dynamic::object();
}
void State::updateState(folly::dynamic data) const {
LOG(FATAL)
<< "State::updateState should never be called (some virtual method of a concrete implementation should be called instead).";
abort();
}
#endif
} // namespace react
} // namespace facebook