1 /*
2  * Copyright (c) 2024 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "bridge/cj_frontend/interfaces/cj_ffi/cj_lazy_foreach_ffi.h"
17 
18 #include "bridge/cj_frontend/cppview/native_view.h"
19 #include "bridge/cj_frontend/interfaces/cj_ffi/cj_native_view_ffi.h"
20 #include "bridge/cj_frontend/cppview/lazy_foreach.h"
21 #include "bridge/cj_frontend/cppview/lazy_foreach_func.h"
22 #include "ffi_remote_data.h"
23 #include "core/common/container.h"
24 #include "core/components_ng/base/view_stack_model.h"
25 #include "core/components_ng/syntax/lazy_for_each_model.h"
26 
27 using namespace OHOS::Ace::Framework;
28 using namespace OHOS::Ace;
29 using namespace OHOS::FFI;
30 
31 extern "C" {
FfiOHOSAceFrameworkLazyForEachCreate(int64_t viewID,int64_t parentViewID,int64_t lazyForEachFuncsID)32 void FfiOHOSAceFrameworkLazyForEachCreate(int64_t viewID, int64_t parentViewID, int64_t lazyForEachFuncsID)
33 {
34     auto nativeParentView = FFIData::GetData<NativeView>(parentViewID);
35     if (nativeParentView == nullptr) {
36         return;
37     }
38     auto lazyForeachFunc = LazyForEachFuncs::Create<LazyForEachFuncs>(lazyForEachFuncsID);
39     auto builder = AceType::MakeRefPtr<CJLazyForEachBuilder>(std::move(lazyForeachFunc));
40     LazyForEachModel::GetInstance()->Create(builder);
41 }
42 
FfiOHOSAceFrameworkLazyForEachPop()43 void FfiOHOSAceFrameworkLazyForEachPop()
44 {
45     ViewStackModel::GetInstance()->PopContainer();
46 }
47 }
48