Skip to content

Commit 0197deb

Browse files
rozelefacebook-github-bot
authored andcommitted
Allow value extraction from folly::dynamic events (#50032)
Summary: In the new architecture, Android dispatches all events with folly::dynamic payloads. Various other callsites in some host platforms similarly dispatch events with folly::dynamic payloads. Events disptached with folly::dynamic payloads have alignment with the `EventPayload::extractValue` method, added for integration with other capabilities like native animations. When combined with a general pupose synchronous listener on facebook::react::EventEmitter, this should allow easier integration with host platform native event animation drivers. ## Changelog [Internal] Differential Revision: D71198197
1 parent fa69821 commit 0197deb

File tree

3 files changed

+79
-7
lines changed

3 files changed

+79
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
#include "DynamicEventPayload.h"
9+
10+
#include <jsi/JSIDynamic.h>
11+
12+
namespace facebook::react {
13+
14+
DynamicEventPayload::DynamicEventPayload(folly::dynamic&& payload)
15+
: payload_(std::move(payload)) {}
16+
17+
jsi::Value DynamicEventPayload::asJSIValue(jsi::Runtime& runtime) const {
18+
return jsi::valueFromDynamic(runtime, payload_);
19+
}
20+
21+
EventPayloadType DynamicEventPayload::getType() const {
22+
return EventPayloadType::ValueFactory;
23+
}
24+
25+
std::optional<double> DynamicEventPayload::extractValue(
26+
const std::vector<std::string>& path) const {
27+
auto dynamic = payload_;
28+
for (auto& key : path) {
29+
auto type = dynamic.type();
30+
if ((type == folly::dynamic::Type::OBJECT ||
31+
type == folly::dynamic::Type::ARRAY) &&
32+
!dynamic.empty()) {
33+
dynamic = folly::dynamic(dynamic[key]);
34+
}
35+
}
36+
if (dynamic.type() == folly::dynamic::Type::DOUBLE) {
37+
return dynamic.asDouble();
38+
} else if (dynamic.type() == folly::dynamic::Type::INT64) {
39+
return dynamic.asInt();
40+
}
41+
return std::nullopt;
42+
}
43+
44+
} // namespace facebook::react
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
#pragma once
9+
10+
#include <folly/dynamic.h>
11+
#include <react/renderer/core/EventPayload.h>
12+
13+
namespace facebook::react {
14+
15+
struct DynamicEventPayload : public EventPayload {
16+
explicit DynamicEventPayload(folly::dynamic&& payload);
17+
18+
/*
19+
* EventPayload implementations
20+
*/
21+
jsi::Value asJSIValue(jsi::Runtime& runtime) const override;
22+
EventPayloadType getType() const override;
23+
std::optional<double> extractValue(
24+
const std::vector<std::string>& path) const override;
25+
26+
private:
27+
folly::dynamic payload_;
28+
};
29+
30+
} // namespace facebook::react

packages/react-native/ReactCommon/react/renderer/core/EventEmitter.cpp

+5-7
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
#include <cxxreact/TraceSection.h>
1111
#include <folly/dynamic.h>
12-
#include <jsi/JSIDynamic.h>
1312
#include <jsi/jsi.h>
1413

14+
#include "DynamicEventPayload.h"
1515
#include "RawEvent.h"
1616

1717
namespace facebook::react {
@@ -61,18 +61,16 @@ void EventEmitter::dispatchEvent(
6161
RawEvent::Category category) const {
6262
dispatchEvent(
6363
std::move(type),
64-
[payload](jsi::Runtime& runtime) {
65-
return valueFromDynamic(runtime, payload);
66-
},
64+
std::make_shared<DynamicEventPayload>(folly::dynamic(payload)),
6765
category);
6866
}
6967

7068
void EventEmitter::dispatchUniqueEvent(
7169
std::string type,
7270
const folly::dynamic& payload) const {
73-
dispatchUniqueEvent(std::move(type), [payload](jsi::Runtime& runtime) {
74-
return valueFromDynamic(runtime, payload);
75-
});
71+
dispatchUniqueEvent(
72+
std::move(type),
73+
std::make_shared<DynamicEventPayload>(folly::dynamic(payload)));
7674
}
7775

7876
void EventEmitter::dispatchEvent(

0 commit comments

Comments
 (0)