mac
2024-01-29 96f2b56c103c53b17cf946d2c733d4cb03d2f39d
app/src/main/java/com/hdl/photovoltaic/uni/HDLUniMPSDKManager.java
@@ -12,7 +12,9 @@
import com.hdl.photovoltaic.config.AppConfigManage;
import com.hdl.photovoltaic.other.HdlLogLogic;
import com.hdl.photovoltaic.other.HdlThreadLogic;
import com.hdl.sdk.link.core.bean.eventbus.BaseEventBus;
import org.greenrobot.eventbus.EventBus;
import org.json.JSONException;
import org.json.JSONObject;
@@ -111,6 +113,12 @@
                if (appid.equals(mCurrentAppId)) {
                    mCurrentAppId = "";
                }
                //小程序被关闭了通知给原生
                BaseEventBus baseEventBus = new BaseEventBus();
                baseEventBus.setType(HDLUniMP.UNI_EVENT_REPLY_HOME_CLOSE_HOME_DETAILS_PAGE);
                EventBus.getDefault().post(baseEventBus);
            }
        });
@@ -137,7 +145,7 @@
                    //回传数据给小程序
                    JSONObject params = getAppParams();
                    callback.invoke(params);
                    HdlLogLogic.print( "uni_GetAppParams callback:" + params.toString());
                    HdlLogLogic.print("uni_GetAppParams callback:" + params.toString());
                } else {
                    //除了统一处理,剩余其它特定场景的事件通知
                    if (onOtherUniMPEventCallBack != null) {
@@ -218,7 +226,7 @@
                }
            });
        } else {
            HdlLogLogic.print( "wgt包本地不存在");
            HdlLogLogic.print("wgt包本地不存在");
        }
    }
@@ -253,7 +261,7 @@
    public void openUniMP(String uniAppId, String path, JSONObject jsonObject, IOnOtherUniMPEventCallBack callBack) {
        if (TextUtils.isEmpty(uniAppId)) {
            HdlThreadLogic.toast(mContext, "uni Id null");
            HdlLogLogic.print( "小程序ID 不能为空");
            HdlLogLogic.print("小程序ID 不能为空");
            return;
        }
        try {
@@ -327,7 +335,7 @@
            mUniMPCaches.put(uniMP.getAppid(), uniMP);
        } catch (Exception e) {
            e.printStackTrace();
            HdlLogLogic.print( "打开失败===" + e.getMessage());
            HdlLogLogic.print("打开失败===" + e.getMessage());
        }
    }
@@ -336,20 +344,20 @@
     * 注意:需要提前小程序在运行才可成功
     *
     * @param uniAppId 小程序指定
     * @param event    小程序指定主题
     * @param topic    小程序指定主题
     * @param data     String或JSON
     */
    public void sendUniMPEvent(String uniAppId, String event, Object data) {
    public void sendUniMPEvent(String uniAppId, String topic, Object data) {
        if (mUniMPCaches.containsKey(uniAppId)) {
            if (mUniMPCaches.get(uniAppId) != null) {
                mUniMPCaches.get(uniAppId).sendUniMPEvent(event, data);
                HdlLogLogic.print("发送通知成功:event:" + event + " data:" + new Gson().toJson(data));
                mUniMPCaches.get(uniAppId).sendUniMPEvent(topic, data);
                HdlLogLogic.print("发送通知成功:event:" + topic + " data:" + new Gson().toJson(data));
            } else {
                HdlLogLogic.print("发送失败,小程序对象为空:" + uniAppId);
            }
        } else {
            HdlLogLogic.print( "发送失败,找不到对应的小程序:" + uniAppId);
            HdlLogLogic.print("发送失败,找不到对应的小程序:" + uniAppId);
        }
    }