- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <FBReactNativeSpec/FBReactNativeSpecJSI.h>
|
|
#include <react/renderer/observers/intersection/IntersectionObserverManager.h>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <vector>
|
|
|
|
namespace facebook::react {
|
|
|
|
using NativeIntersectionObserverIntersectionObserverId = int32_t;
|
|
using RectAsTuple = std::tuple<Float, Float, Float, Float>;
|
|
|
|
using NativeIntersectionObserverObserveOptions =
|
|
NativeIntersectionObserverCxxNativeIntersectionObserverObserveOptions<
|
|
// intersectionObserverId
|
|
NativeIntersectionObserverIntersectionObserverId,
|
|
// targetShadowNode
|
|
jsi::Object,
|
|
// thresholds
|
|
std::vector<Float>>;
|
|
|
|
template <>
|
|
struct Bridging<NativeIntersectionObserverObserveOptions>
|
|
: NativeIntersectionObserverCxxNativeIntersectionObserverObserveOptionsBridging<
|
|
NativeIntersectionObserverObserveOptions> {};
|
|
|
|
using NativeIntersectionObserverEntry =
|
|
NativeIntersectionObserverCxxNativeIntersectionObserverEntry<
|
|
// intersectionObserverId
|
|
NativeIntersectionObserverIntersectionObserverId,
|
|
// targetInstanceHandle
|
|
jsi::Value,
|
|
// targetRect
|
|
RectAsTuple,
|
|
// rootRect
|
|
RectAsTuple,
|
|
// intersectionRect
|
|
std::optional<RectAsTuple>,
|
|
// isIntersectingAboveThresholds
|
|
bool,
|
|
// time
|
|
double>;
|
|
|
|
template <>
|
|
struct Bridging<NativeIntersectionObserverEntry>
|
|
: NativeIntersectionObserverCxxNativeIntersectionObserverEntryBridging<
|
|
NativeIntersectionObserverEntry> {};
|
|
|
|
class NativeIntersectionObserver
|
|
: public NativeIntersectionObserverCxxSpec<NativeIntersectionObserver>,
|
|
std::enable_shared_from_this<NativeIntersectionObserver> {
|
|
public:
|
|
NativeIntersectionObserver(std::shared_ptr<CallInvoker> jsInvoker);
|
|
|
|
void observe(
|
|
jsi::Runtime& runtime,
|
|
NativeIntersectionObserverObserveOptions options);
|
|
|
|
void unobserve(
|
|
jsi::Runtime& runtime,
|
|
IntersectionObserverObserverId intersectionObserverId,
|
|
jsi::Object targetShadowNode);
|
|
|
|
void connect(
|
|
jsi::Runtime& runtime,
|
|
AsyncCallback<> notifyIntersectionObserversCallback);
|
|
|
|
void disconnect(jsi::Runtime& runtime);
|
|
|
|
std::vector<NativeIntersectionObserverEntry> takeRecords(
|
|
jsi::Runtime& runtime);
|
|
|
|
private:
|
|
IntersectionObserverManager intersectionObserverManager_{};
|
|
|
|
static UIManager& getUIManagerFromRuntime(jsi::Runtime& runtime);
|
|
static NativeIntersectionObserverEntry convertToNativeModuleEntry(
|
|
IntersectionObserverEntry entry,
|
|
jsi::Runtime& runtime);
|
|
};
|
|
|
|
} // namespace facebook::react
|