1 /* 2 * Copyright (c) 2025 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 #ifndef CM_NAPI_OPEN_CERTIFICATE_OPERATION_H 17 #define CM_NAPI_OPEN_CERTIFICATE_OPERATION_H 18 19 #include "cm_napi_open_dialog.h" 20 21 namespace CMNapi { 22 class CmOperationUIExtensionCallback : public CmUIExtensionCallback { 23 public: 24 explicit CmOperationUIExtensionCallback(std::shared_ptr<CmUIExtensionRequestContext>& reqContext); 25 ~CmOperationUIExtensionCallback() override; 26 void OnRelease(const int32_t releaseCode) override; 27 void OnResult(const int32_t resultCode, const OHOS::AAFwk::Want& result) override; 28 void OnReceive(const OHOS::AAFwk::WantParams& request) override; 29 void ProcessCallback(napi_env env, const CommonAsyncContext* asyncContext) override; 30 void OnDestroy() override; 31 32 private: 33 bool SetErrorCode(int32_t errCode); 34 int32_t resultCode_ = 0; 35 OHOS::AAFwk::Want resultWant_; 36 std::shared_ptr<CmUIExtensionRequestContext> reqContext_ = nullptr; 37 bool alreadyCallback_ = false; 38 }; 39 } // namespace CMNapi 40 41 #endif // CM_NAPI_OPEN_CERTIFICATE_OPERATION_H 42