From 456b942ebd628fb358635d8cc5cc36fc917fe092 Mon Sep 17 00:00:00 2001 From: wangzhaoyao Date: Wed, 11 Jan 2023 14:55:08 +0800 Subject: [PATCH] 1.update --- ios/Classes/Api/MOPAppletDelegate.m | 9 ++++----- ios/Classes/MopPlugin.m | 8 -------- ios/Classes/Utils/MopShareView.m | 2 +- ios/mop.podspec | 4 ++-- lib/api.dart | 5 +++-- lib/mop.dart | 28 +++++++++++++++++----------- 6 files changed, 27 insertions(+), 29 deletions(-) diff --git a/ios/Classes/Api/MOPAppletDelegate.m b/ios/Classes/Api/MOPAppletDelegate.m index 8947600..eb8372f 100644 --- a/ios/Classes/Api/MOPAppletDelegate.m +++ b/ios/Classes/Api/MOPAppletDelegate.m @@ -44,8 +44,7 @@ }]; } -- (NSDictionary *)getUserInfoWithAppletInfo:(FATAppletInfo *)appletInfo -{ +- (NSDictionary *)getUserInfoWithAppletInfo:(FATAppletInfo *)appletInfo { NSLog(@"getUserInfoWithAppletInfo"); __block NSDictionary *userInfo; FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel]; @@ -77,8 +76,7 @@ NSString *imageUrl = data[@"image"]; if ([imageUrl hasPrefix:@"http"]) { // 需要异步加载,待优化! - NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]]; - model.menuIconImage = [UIImage imageWithData:data]; + model.menuIconImage = [UIImage fat_getImageWithUrl:imageUrl]; } else { model.menuIconImage = [UIImage imageNamed:imageUrl]; } @@ -103,7 +101,8 @@ @"appId": contentInfo[@"appId"], @"path": contentInfo[@"path"], @"menuId": contentInfo[@"menuId"], - @"appInfo": jsonString + @"appInfo": jsonString, + @"query" : contentInfo[@"query"] }; FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel]; [channel invokeMethod:@"extensionApi:onCustomMenuClick" arguments:arguments result:^(id _Nullable result) { diff --git a/ios/Classes/MopPlugin.m b/ios/Classes/MopPlugin.m index 08cbf9b..dcf2649 100644 --- a/ios/Classes/MopPlugin.m +++ b/ios/Classes/MopPlugin.m @@ -86,7 +86,6 @@ static MopPlugin *_instance; result(dict); } else if ([@"copyFileAsFinFile" isEqualToString:call.method]) { -// NSString *appId = call.arguments[@"appId"]; NSString *path = call.arguments[@"path"]; NSString *fileName = [path componentsSeparatedByString:@"/"].lastObject; NSMutableDictionary *dict = [NSMutableDictionary dictionary]; @@ -94,7 +93,6 @@ static MopPlugin *_instance; result(dict); } else if ([@"showShareAppletDialog" isEqualToString:call.method]) { -// dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ UIImage *image = [[FATClient sharedClient] getDefaultCurrentAppletImage:440.0f]; MopShareView *view = [MopShareView viewWithData:call.arguments]; view.image = image; @@ -102,7 +100,6 @@ static MopPlugin *_instance; [view setDidSelcetTypeBlock:^(NSString *type) { result(type); }]; -// }); } else if ([@"showLoading" isEqualToString:call.method]) { UIViewController *currentVC = [MOPTools topViewController]; @@ -123,15 +120,10 @@ static MopPlugin *_instance; result([self appInfoDictWithAppId:call.arguments[@"appId"]]); } else if ([@"getScreenshot" isEqualToString:call.method]) { -// UIViewController *currentVC = [MOPTools topViewController]; -// [currentVC.view fatHideToastActivity]; -// [currentVC.view fatHideAllToasts]; -// dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ UIImage *image = [[FATClient sharedClient] getDefaultCurrentAppletImage:0.0f]; NSString *filePtah = [[FATClient sharedClient] saveFile:UIImagePNGRepresentation(image) fileName:[NSString stringWithFormat:@"%@",call.arguments[@"appId"]]]; filePtah = [[FATClient sharedClient] fat_absolutePathWithPath:filePtah]; result(filePtah); -// }); } else if ([@"getPhoneNumberResult" isEqualToString:call.method]) { if ([MOPAppletDelegate instance].bindGetPhoneNumbers) { diff --git a/ios/Classes/Utils/MopShareView.m b/ios/Classes/Utils/MopShareView.m index fe55b73..946850a 100644 --- a/ios/Classes/Utils/MopShareView.m +++ b/ios/Classes/Utils/MopShareView.m @@ -56,7 +56,7 @@ returnInsets = inset;\ @{@"lightImage":@"share_link",@"title":@"复制链接", @"type":@"links"}]; self.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.4f]; - self.shareView = [[UIView alloc] initWithFrame:CGRectMake(52.5 , 46 + kFinoSafeAreaTop, 270, 380)]; + self.shareView = [[UIView alloc] initWithFrame:CGRectMake((self.frame.size.width - 270) / 2 , 46 + kFinoSafeAreaTop, 270, 380)]; self.shareView.layer.cornerRadius = 6; self.shareView.backgroundColor = UIColor.whiteColor; diff --git a/ios/mop.podspec b/ios/mop.podspec index 8753ae0..493ad01 100644 --- a/ios/mop.podspec +++ b/ios/mop.podspec @@ -17,7 +17,7 @@ A finclip miniprogram flutter sdk. s.dependency 'Flutter' s.ios.deployment_target = '9.0' - s.dependency 'FinApplet' , '2.39.3' - s.dependency 'FinAppletExt' , '2.39.3' + s.dependency 'FinApplet' , '2.39.4-alpha20230111v01' + s.dependency 'FinAppletExt' , '2.39.4-alpha20230111v01' end diff --git a/lib/api.dart b/lib/api.dart index df521ca..1b36487 100644 --- a/lib/api.dart +++ b/lib/api.dart @@ -6,7 +6,8 @@ class CustomMenu { CustomMenu(this.menuId, this.image, this.title, this.type); - Map toJson() => {'menuId': menuId, 'image': image, 'title': title, 'type': type}; + Map toJson() => + {'menuId': menuId, 'image': image, 'title': title, 'type': type}; } abstract class AppletHandler { @@ -32,7 +33,7 @@ abstract class AppletHandler { ///自定义菜单点击处理 Future onCustomMenuClick( - String appId, String path, String menuId, String appInfo); + String appId, String path, String menuId, String appInfo, String query); ///打开小程序 Future appletDidOpen(String appId); diff --git a/lib/mop.dart b/lib/mop.dart index 6744fd6..a275ded 100644 --- a/lib/mop.dart +++ b/lib/mop.dart @@ -7,7 +7,8 @@ import 'package:mop/api.dart'; typedef MopEventCallback = void Function(dynamic event); typedef MopEventErrorCallback = void Function(dynamic event); -typedef ExtensionApiHandler = Future> Function(dynamic params); +typedef ExtensionApiHandler = Future> Function( + dynamic params); typedef MopAppletHandler = Future Function(dynamic params); class FinStoreConfig { @@ -235,7 +236,7 @@ class BaseAppletRequest { this.startParams, this.animated = true, this.isSingleProcess = false, - }); + }); Map toMap() { return { @@ -275,7 +276,7 @@ class RemoteAppletRequest { this.offlineFrameworkZipPath, this.animated = true, this.isSingleProcess = false, - }); + }); @override Map toMap() { @@ -286,8 +287,10 @@ class RemoteAppletRequest { "isSingleProcess": isSingleProcess, }; if (startParams != null) result["startParams"] = startParams; - if (offlineMiniprogramZipPath != null) result["offlineMiniprogramZipPath"] = offlineMiniprogramZipPath; - if (offlineFrameworkZipPath != null) result["offlineFrameworkZipPath"] = offlineFrameworkZipPath; + if (offlineMiniprogramZipPath != null) + result["offlineMiniprogramZipPath"] = offlineMiniprogramZipPath; + if (offlineFrameworkZipPath != null) + result["offlineFrameworkZipPath"] = offlineFrameworkZipPath; if (sequence != null) result["sequence"] = sequence; return result; @@ -374,9 +377,9 @@ class Mop { if (handler != null) { return await handler(call.arguments); } - + final apiHandler = _appletHandlerApis[name]; - if (apiHandler != null) { + if (apiHandler != null) { return await apiHandler(call.arguments); } } else if (call.method.startsWith("webExtentionApi:")) { @@ -481,7 +484,6 @@ class Mop { return ret; } - Future startApplet(RemoteAppletRequest request) async { Map params = request.toMap(); final Map ret = await _channel.invokeMethod('startApplet', params); @@ -602,7 +604,12 @@ class Mop { }; _appletHandlerApis["onCustomMenuClick"] = (params) async { return handler.onCustomMenuClick( - params["appId"], params["path"], params["menuId"], params["appInfo"]); + params["appId"], + params["path"], + params["menuId"], + params["appInfo"], + params["query"], + ); }; _appletHandlerApis["appletDidOpen"] = (params) async { return handler.appletDidOpen(params["appId"]); @@ -660,8 +667,7 @@ class Mop { /// 设置小程序切换动画 安卓 /// Future setActivityTransitionAnim(Anim anim) async { - await _channel - .invokeMethod("setActivityTransitionAnim", {"anim": ""}); + await _channel.invokeMethod("setActivityTransitionAnim", {"anim": ""}); return; }