2018-05-31 15:31:03 -07:00
|
|
|
// Copyright (c) 2004-present, Facebook, Inc.
|
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
2018-04-10 12:45:59 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fabric/core/ShadowNode.h>
|
2018-09-03 22:53:18 -07:00
|
|
|
#include <fabric/uimanager/ShadowViewMutation.h>
|
2018-04-10 12:45:59 -07:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
/*
|
2018-09-03 22:53:18 -07:00
|
|
|
* Calculates a list of view mutations which describes how the old
|
|
|
|
* `ShadowTree` can be transformed to the new one.
|
|
|
|
* The list of mutations might be and might not be optimal.
|
2018-04-10 12:45:59 -07:00
|
|
|
*/
|
2018-09-03 22:53:18 -07:00
|
|
|
ShadowViewMutationList calculateShadowViewMutations(
|
|
|
|
const ShadowNode &oldRootShadowNode,
|
|
|
|
const ShadowNode &newRootShadowNode
|
2018-04-10 12:45:59 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
} // namespace react
|
|
|
|
} // namespace facebook
|