@@ -1,11 +1,4 @@ | |||||
/* | |||||
* @Author: your name | |||||
* @Date: 2020-06-16 15:37:18 | |||||
* @LastEditTime: 2020-06-19 17:13:52 | |||||
* @LastEditors: your name | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/android/src/main/kotlin/com/fnuoos/hairuyi_flutter_comm/HairuyiFlutterCommNativable.java | |||||
*/ | |||||
package cn.zhios.zhiying_comm; | package cn.zhios.zhiying_comm; | ||||
import java.util.Map; | import java.util.Map; | ||||
@@ -1,13 +1,47 @@ | |||||
package cn.zhios.zhiying_comm_example; | package cn.zhios.zhiying_comm_example; | ||||
import cn.zhios.zhiying_comm.ZhiyingFlutterCommHandler; | |||||
import cn.zhios.zhiying_comm.ZhiyingFlutterCommNativable; | |||||
import cn.zhios.zhiying_comm.ZhiyingFlutterCommNative; | |||||
import cn.zhios.zhiying_comm.ZhiyingFlutterCommNativeResult; | |||||
import java.util.HashMap; | |||||
import java.util.Map; | |||||
import androidx.annotation.NonNull; | import androidx.annotation.NonNull; | ||||
import io.flutter.embedding.android.FlutterActivity; | import io.flutter.embedding.android.FlutterActivity; | ||||
import io.flutter.embedding.engine.FlutterEngine; | import io.flutter.embedding.engine.FlutterEngine; | ||||
import io.flutter.plugins.GeneratedPluginRegistrant; | import io.flutter.plugins.GeneratedPluginRegistrant; | ||||
public class MainActivity extends FlutterActivity { | public class MainActivity extends FlutterActivity implements ZhiyingFlutterCommNativable { | ||||
@Override | @Override | ||||
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) { | public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) { | ||||
GeneratedPluginRegistrant.registerWith(flutterEngine); | GeneratedPluginRegistrant.registerWith(flutterEngine); | ||||
ZhiyingFlutterCommNative.getInstance().regist((ZhiyingFlutterCommNativable) this); | |||||
} | } | ||||
boolean localDebug = false; | |||||
@Override | |||||
public void openPage(Map params) { | |||||
} | |||||
@Override | |||||
public void openNativePage(Map params) { | |||||
} | |||||
@Override | |||||
public Map getSetting() { | |||||
Map map = new HashMap(); | |||||
map.put("domain", "http://120.76.175.204:8989"); | |||||
return map; | |||||
} | |||||
@Override | |||||
public void invokeMethod(String method, Map<String, Object> params, ZhiyingFlutterCommHandler handler) { | |||||
return ; | |||||
} | |||||
} | } |
@@ -21,13 +21,24 @@ class _MyAppState extends State<MyApp> { | |||||
Widget build(BuildContext context) { | Widget build(BuildContext context) { | ||||
return MaterialApp( | return MaterialApp( | ||||
home: Scaffold( | home: Scaffold( | ||||
appBar: AppBar( | appBar: AppBar( | ||||
title: const Text('智莺-基础库'), | title: const Text('智莺-基础库'), | ||||
), | ), | ||||
body: Center( | body: Wrap( | ||||
child: Text('123'), | direction: Axis.horizontal, | ||||
), | spacing: 5, | ||||
), | children: <Widget>[ | ||||
RaisedButton( | |||||
onPressed: () { | |||||
NetUtil.post('/siteapi/v1/ucenter/login/', params: { | |||||
'username': 'xiangguohui', | |||||
'password': 'fnuo123com' | |||||
}); | |||||
}, | |||||
child: Text('登录请求'), | |||||
) | |||||
], | |||||
)), | |||||
); | ); | ||||
} | } | ||||
} | } |
@@ -1,9 +1,3 @@ | |||||
// | |||||
// ZhiyingCommNative.h | |||||
// hairuyi_flutter_comm | |||||
// | |||||
// Created by Weller on 2020/5/16. | |||||
// | |||||
#import <Foundation/Foundation.h> | #import <Foundation/Foundation.h> | ||||
#import "ZhiyingCommNativeProtocol.h" | #import "ZhiyingCommNativeProtocol.h" | ||||
@@ -1,9 +1,4 @@ | |||||
// | |||||
// ZhiyingCommNative.m | |||||
// hairuyi_flutter_comm | |||||
// | |||||
// Created by Weller on 2020/5/16. | |||||
// | |||||
#import <Flutter/Flutter.h> | #import <Flutter/Flutter.h> | ||||
#import "ZhiyingCommNative.h" | #import "ZhiyingCommNative.h" | ||||
#import "ZhiyingCommNativeResult.h" | #import "ZhiyingCommNativeResult.h" | ||||
@@ -15,7 +10,7 @@ static id<ZhiyingCommNativeProtocol> _delegate; | |||||
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar { | + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar { | ||||
FlutterMethodChannel* channel = [FlutterMethodChannel | FlutterMethodChannel* channel = [FlutterMethodChannel | ||||
methodChannelWithName:@"hairuyi_flutter_comm://method" | methodChannelWithName:@"zhiying_comm://method" | ||||
binaryMessenger:[registrar messenger]]; | binaryMessenger:[registrar messenger]]; | ||||
ZhiyingCommNative* instance = [[ZhiyingCommNative alloc] init]; | ZhiyingCommNative* instance = [[ZhiyingCommNative alloc] init]; | ||||
[registrar addMethodCallDelegate:instance channel:channel]; | [registrar addMethodCallDelegate:instance channel:channel]; | ||||
@@ -1,17 +1,4 @@ | |||||
/* | |||||
* @Author: your name | |||||
* @Date: 2020-06-16 15:37:18 | |||||
* @LastEditTime: 2020-06-20 11:28:22 | |||||
* @LastEditors: Please set LastEditors | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/ios/Classes/HairuyiFlutterCommNativeProtocol.h | |||||
*/ | |||||
// | |||||
// ZhiyingCommNativeProtocol.h | |||||
// hairuyi_flutter_comm | |||||
// | |||||
// Created by Weller on 2020/5/16. | |||||
// | |||||
#import "ZhiyingCommNativeResult.h" | #import "ZhiyingCommNativeResult.h" | ||||
@@ -1,9 +1,3 @@ | |||||
// | |||||
// ZhiyingCommNativeResult.h | |||||
// hairuyi_flutter_comm | |||||
// | |||||
// Created by Weller on 2020/5/16. | |||||
// | |||||
#import <Foundation/Foundation.h> | #import <Foundation/Foundation.h> | ||||
@@ -1,9 +1,3 @@ | |||||
// | |||||
// ZhiyingCommNativeResult.m | |||||
// hairuyi_flutter_comm | |||||
// | |||||
// Created by Weller on 2020/5/16. | |||||
// | |||||
#import "ZhiyingCommNativeResult.h" | #import "ZhiyingCommNativeResult.h" | ||||
@@ -1,12 +1,3 @@ | |||||
/* | |||||
* @Author: your name | |||||
* @Date: 2020-06-19 14:59:26 | |||||
* @LastEditTime: 2020-06-24 16:37:35 | |||||
* @LastEditors: Please set LastEditors | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/lib/native/native_router.dart | |||||
*/ | |||||
// 重要!!!!! | // 重要!!!!! | ||||
// 重要!!!!! | // 重要!!!!! | ||||
// 重要!!!!! | // 重要!!!!! | ||||
@@ -20,15 +11,4 @@ | |||||
enum NativeRouter { | enum NativeRouter { | ||||
openModifyPayPassword, // 打开修改支付密码 | openModifyPayPassword, // 打开修改支付密码 | ||||
openVerifyByAlipay, // 打开支付宝实名认证 | |||||
openSettingAlipay, // 打开支付宝绑定页面 | |||||
openContacts, // 打开人脉 | |||||
openLiveAnchor, //打开主播开播页面 | |||||
openLiveWatch, //打开观看直播页面 | |||||
openLiveRecord, // 打开会看(录播) | |||||
openWeChatShare, // 分享到微信 | |||||
openSharePop, //打开分享弹窗 | |||||
openSearchKeyword, // 关键词搜索 | |||||
openWithdrawal, // 打开提现页面 | |||||
showIntegralPop, // 展示获得积分弹窗 | |||||
} | } |
@@ -1,10 +1,13 @@ | |||||
import 'package:flutter/material.dart'; | |||||
import 'package:flutter/widgets.dart'; | import 'package:flutter/widgets.dart'; | ||||
class EmptyPage extends StatelessWidget { | class EmptyPage extends StatelessWidget { | ||||
@override | @override | ||||
Widget build(BuildContext context) { | Widget build(BuildContext context) { | ||||
return Scaffold( | |||||
return Center(child: Text('Page has no regist'),); | body: Center( | ||||
child: Text('页面未注册'), | |||||
), | |||||
); | |||||
} | } | ||||
} | |||||
} |
@@ -1,12 +1,3 @@ | |||||
/* | |||||
* @Author: your name | |||||
* @Date: 2020-06-19 15:09:28 | |||||
* @LastEditTime: 2020-06-19 15:09:38 | |||||
* @LastEditors: Please set LastEditors | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/lib/utils/enum_util.dart | |||||
*/ | |||||
///枚举类型转string | ///枚举类型转string | ||||
String enumToString(o) => o.toString().split('.').last; | String enumToString(o) => o.toString().split('.').last; | ||||
@@ -1,15 +1,7 @@ | |||||
/* | |||||
* 与原生app进行交互 | |||||
* @Author: fnuoos | |||||
* @Date: 2020-05-15 11:53:06 | |||||
* @Last Modified by: mikey.zhaopeng | |||||
* @Last Modified time: 2020-05-15 11:53:58 | |||||
*/ | |||||
import 'package:flutter/material.dart'; | import 'package:flutter/material.dart'; | ||||
import 'package:flutter/services.dart'; | import 'package:flutter/services.dart'; | ||||
import 'package:fluttertoast/fluttertoast.dart'; | |||||
import 'package:zhiying_comm/zhiying_comm.dart'; | import 'package:zhiying_comm/zhiying_comm.dart'; | ||||
import 'package:zhiying_comm/pages/empty_page.dart'; | |||||
class NativeUtil { | class NativeUtil { | ||||
// 工厂模式 | // 工厂模式 | ||||
@@ -20,7 +12,7 @@ class NativeUtil { | |||||
MethodChannel _methodChannel; | MethodChannel _methodChannel; | ||||
NativeUtil._internal() { | NativeUtil._internal() { | ||||
// 初始化 | // 初始化 | ||||
_methodChannel = MethodChannel('hairuyi_flutter_comm://method'); | _methodChannel = MethodChannel('zhiying_comm://method'); | ||||
} | } | ||||
static NativeUtil _getInstance() { | static NativeUtil _getInstance() { | ||||
if (_instance == null) { | if (_instance == null) { | ||||
@@ -52,16 +44,14 @@ class NativeUtil { | |||||
} | } | ||||
// 公共跳转方法 | // 公共跳转方法 | ||||
static Future openPage(BuildContext context, Map params) { | static Future openPage(BuildContext context, Map<String, dynamic> params) { | ||||
// if (params.containsKey('is_to_flutter') && | return Navigator.of(context) | ||||
// params['is_to_flutter'].toString() == '1') { | .push(MaterialPageRoute(builder: (BuildContext context) { | ||||
// BasePageModel model = BasePageModel.fromJson(params); | if (!params.containsKey('SkipUIIdentifier')) { | ||||
// return Navigator.of(context).push(MaterialPageRoute( | return EmptyPage(); | ||||
// builder: (BuildContext context) => | } | ||||
// PageFactory.create(model.SkipUIIdentifier, model))); | return PageFactory.create(params['SkipUIIdentifier'], params); | ||||
// } | })); | ||||
return NativeUtil._invokeChannel('openPage', | |||||
params: new Map<String, dynamic>.from(params)); | |||||
} | } | ||||
//跳转原生普通页面,非公共跳转 | //跳转原生普通页面,非公共跳转 | ||||
@@ -78,65 +68,10 @@ class NativeUtil { | |||||
NativeUtil._invokeChannel('openGoodsDetail', params: params); | NativeUtil._invokeChannel('openGoodsDetail', params: params); | ||||
} | } | ||||
static Future<String> getToken() async { | |||||
Map<String, dynamic> data = await NativeUtil._invokeChannel('getToken'); | |||||
if (data.containsKey('token')) { | |||||
return data['token']; | |||||
} | |||||
return ''; | |||||
} | |||||
static Future<Map<String, dynamic>> getSetting() async { | static Future<Map<String, dynamic>> getSetting() async { | ||||
return NativeUtil._invokeChannel('getSetting'); | return NativeUtil._invokeChannel('getSetting'); | ||||
} | } | ||||
// 打开支付宝支付 | |||||
static Future<bool> payByAlipay(String payCode) async { | |||||
Map params = {"code": payCode}; | |||||
Map<String, dynamic> result = await NativeUtil._invokeChannel('openAliPay', | |||||
params: new Map<String, dynamic>.from(params)); | |||||
if (result.containsKey('msg')) { | |||||
Fluttertoast.showToast( | |||||
msg: result['msg'], | |||||
toastLength: Toast.LENGTH_SHORT, | |||||
gravity: ToastGravity.BOTTOM, | |||||
); | |||||
} | |||||
if (result.containsKey('success') && result['success'] == '1') { | |||||
return true; | |||||
} | |||||
return false; | |||||
} | |||||
// 打开微信支付 | |||||
static Future<bool> payByWechat(Map params) async { | |||||
Map<String, dynamic> result = await NativeUtil._invokeChannel( | |||||
'openWechatPay', | |||||
params: new Map<String, dynamic>.from(params)); | |||||
if (result.containsKey('msg')) { | |||||
Fluttertoast.showToast( | |||||
msg: result['msg'], | |||||
toastLength: Toast.LENGTH_SHORT, | |||||
gravity: ToastGravity.BOTTOM, | |||||
); | |||||
} | |||||
if (result.containsKey('success') && result['success'] == '1') { | |||||
return true; | |||||
} | |||||
return false; | |||||
} | |||||
static Future<Map<String, dynamic>> onPagePop(bool isTop) async { | |||||
NativeUtil._invokeChannel('pageDidPop', | |||||
params: new Map<String, dynamic>.from({'isTop': isTop})); | |||||
} | |||||
static Future<Map<String, dynamic>> onPagePush(bool isTop) async { | |||||
NativeUtil._invokeChannel('pageDidPush', | |||||
params: new Map<String, dynamic>.from({'isTop': isTop})); | |||||
} | |||||
static Future<Map<String, dynamic>> invokeMethod( | static Future<Map<String, dynamic>> invokeMethod( | ||||
String method, Map<String, dynamic> params) { | String method, Map<String, dynamic> params) { | ||||
Map<String, dynamic> request = {"method": method, "params": params}; | Map<String, dynamic> request = {"method": method, "params": params}; | ||||
@@ -21,13 +21,11 @@ class FNNavigatorObserver extends NavigatorObserver { | |||||
void didPush(Route<dynamic> route, Route<dynamic> previousRoute) { | void didPush(Route<dynamic> route, Route<dynamic> previousRoute) { | ||||
notifyHide(previousRoute); | notifyHide(previousRoute); | ||||
notifyShow(route); | notifyShow(route); | ||||
NativeUtil.onPagePush(previousRoute == null ? true : previousRoute.isFirst); | |||||
} | } | ||||
void didPop(Route<dynamic> route, Route<dynamic> previousRoute) { | void didPop(Route<dynamic> route, Route<dynamic> previousRoute) { | ||||
notifyHide(route); | notifyHide(route); | ||||
notifyShow(previousRoute); | notifyShow(previousRoute); | ||||
NativeUtil.onPagePush(previousRoute == null ? true : previousRoute.isFirst); | |||||
} | } | ||||
void didRemove(Route<dynamic> route, Route<dynamic> previousRoute) { | void didRemove(Route<dynamic> route, Route<dynamic> previousRoute) { | ||||
@@ -31,7 +31,6 @@ class NetUtil { | |||||
if (_dio == null) { | if (_dio == null) { | ||||
var setting = await NativeUtil.getSetting(); | var setting = await NativeUtil.getSetting(); | ||||
String domain = setting['domain']; //'http://www.hairuyi.com/'; | String domain = setting['domain']; //'http://www.hairuyi.com/'; | ||||
String version = setting['version']; //'42'; | |||||
_config(domain, apiVersion: _apiVersion); | _config(domain, apiVersion: _apiVersion); | ||||
} | } | ||||
return _dio; | return _dio; | ||||
@@ -45,9 +44,10 @@ class NetUtil { | |||||
baseUrl: baseUrl, | baseUrl: baseUrl, | ||||
connectTimeout: 15000, | connectTimeout: 15000, | ||||
receiveTimeout: 15000, | receiveTimeout: 15000, | ||||
contentType: Headers.formUrlEncodedContentType, | contentType: Headers.jsonContentType, | ||||
followRedirects: true)); | followRedirects: true)); | ||||
_dio.interceptors.add(_NetInterceptors()); | _dio.interceptors.add(_NetInterceptors()); | ||||
_dio.interceptors.add(LogInterceptor()); | |||||
_apiVersion = apiVersion; | _apiVersion = apiVersion; | ||||
const bool inProduction = const bool.fromEnvironment("dart.vm.product"); | const bool inProduction = const bool.fromEnvironment("dart.vm.product"); | ||||
@@ -93,7 +93,7 @@ class NetUtil { | |||||
int height = window.physicalSize.height.floor(); | int height = window.physicalSize.height.floor(); | ||||
params["resolutionRatio"] = "$width*$height"; | params["resolutionRatio"] = "$width*$height"; | ||||
String token = await NativeUtil.getToken(); | String token = ''; | ||||
if (token != null && | if (token != null && | ||||
token != '' && | token != '' && | ||||
(!params.containsKey('token') || params['token'] == '')) { | (!params.containsKey('token') || params['token'] == '')) { | ||||
@@ -144,13 +144,13 @@ class NetUtil { | |||||
return "$timestamp"; | return "$timestamp"; | ||||
} | } | ||||
@Deprecated('方法弃用,建议使用 NetUtil.requet') | |||||
static Future<dynamic> post(String path, | static Future<dynamic> post(String path, | ||||
{Map<String, dynamic> params}) async { | {Map<String, dynamic> params}) async { | ||||
if (params == null) { | if (params == null) { | ||||
params = {}; | params = {}; | ||||
} | } | ||||
Map<String, dynamic> sign = await signParams(params); | // Map<String, dynamic> sign = await signParams(params); | ||||
Map<String, dynamic> sign = params; | |||||
Response response; | Response response; | ||||
try { | try { | ||||
Dio dio = await NetUtil.getInstance().dio; | Dio dio = await NetUtil.getInstance().dio; | ||||
@@ -163,6 +163,7 @@ class NetUtil { | |||||
} | } | ||||
if (response.statusCode != 200) { | if (response.statusCode != 200) { | ||||
// 请求错误 | |||||
const bool inProduction = const bool.fromEnvironment("dart.vm.product"); | const bool inProduction = const bool.fromEnvironment("dart.vm.product"); | ||||
if (!inProduction) { | if (!inProduction) { | ||||
Fluttertoast.showToast(msg: response.statusMessage); | Fluttertoast.showToast(msg: response.statusMessage); | ||||
@@ -171,18 +172,18 @@ class NetUtil { | |||||
return {}; | return {}; | ||||
} | } | ||||
var result = jsonDecode(response.data); | var result = response.data; | ||||
if (result['success'] == 0 || result['success'] == '0') { | // if (result['success'] == 0 || result['success'] == '0') { | ||||
print('error: ' + result['msg']); | // print('error: ' + result['msg']); | ||||
Fluttertoast.showToast( | // Fluttertoast.showToast( | ||||
msg: result['msg'], | // msg: result['msg'], | ||||
toastLength: Toast.LENGTH_SHORT, | // toastLength: Toast.LENGTH_SHORT, | ||||
gravity: ToastGravity.BOTTOM, | // gravity: ToastGravity.BOTTOM, | ||||
); | // ); | ||||
return {}; | // return {}; | ||||
} | // } | ||||
return result['data']; | return result; | ||||
} | } | ||||
static Future<dynamic> post2(String path, | static Future<dynamic> post2(String path, | ||||
@@ -1,11 +1,3 @@ | |||||
/* | |||||
* @Author: Weller | |||||
* @Date: 2020-05-16 17:26:40 | |||||
* @LastEditTime: 2020-06-16 15:40:43 | |||||
* @LastEditors: Please set LastEditors | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/lib/router/page_factory.dart | |||||
*/ | |||||
import 'package:flutter/material.dart'; | import 'package:flutter/material.dart'; | ||||
import 'package:zhiying_comm/zhiying_comm.dart'; | import 'package:zhiying_comm/zhiying_comm.dart'; | ||||
@@ -1,11 +1,3 @@ | |||||
/* | |||||
* @Author: your name | |||||
* @Date: 2020-05-16 17:50:31 | |||||
* @LastEditTime: 2020-06-17 18:27:00 | |||||
* @LastEditors: Please set LastEditors | |||||
* @Description: In User Settings Edit | |||||
* @FilePath: /hairuyi_flutter_comm/lib/router/router_util.dart | |||||
*/ | |||||
import 'package:flutter/material.dart'; | import 'package:flutter/material.dart'; | ||||
import 'package:zhiying_comm/zhiying_comm.dart'; | import 'package:zhiying_comm/zhiying_comm.dart'; | ||||
@@ -0,0 +1,56 @@ | |||||
import 'package:flutter/material.dart'; | |||||
import 'package:zhiying_comm/zhiying_comm.dart'; | |||||
typedef Widget CreateWidget(Map<String, dynamic> model); | |||||
/* Widget生成工厂, 用于生成flutter端组件 */ | |||||
class WidgetFactory { | |||||
static Map<String, CreateWidget> widgetCreater = Map(); | |||||
/** | |||||
* @description: 注册组件 | |||||
* @param {name} 组件名,唯一 | |||||
* @return: | |||||
*/ | |||||
static void regist(String name, CreateWidget creater) { | |||||
if (widgetCreater.containsKey(name)) { | |||||
return; | |||||
} | |||||
widgetCreater[name] = creater; | |||||
} | |||||
/** | |||||
* @description: 创建组件 | |||||
* @param {String} 组件注册的名字 | |||||
* @return: | |||||
*/ | |||||
static Widget create(String name, Map<String, dynamic> model) { | |||||
if (widgetCreater.containsKey(name)) { | |||||
return widgetCreater[name](model); | |||||
} | |||||
const bool inProduction = const bool.fromEnvironment("dart.vm.product"); | |||||
if (!inProduction) { | |||||
return Container(); | |||||
} else { | |||||
return Container( | |||||
width: double.infinity, | |||||
height: 100, | |||||
color: Colors.redAccent, | |||||
child: Center( | |||||
child: Text('当前组件尚未注册'), | |||||
), | |||||
); | |||||
} | |||||
} | |||||
/** | |||||
* @description: 是否注册组件 | |||||
* @param {bool} | |||||
* @return: | |||||
*/ | |||||
static bool hasRegisted(String name) { | |||||
return widgetCreater.containsKey(name); | |||||
} | |||||
} |
@@ -9,6 +9,7 @@ export 'util/native_util.dart'; | |||||
export 'util/navigator_observer.dart'; | export 'util/navigator_observer.dart'; | ||||
export 'util/net_util.dart'; | export 'util/net_util.dart'; | ||||
export 'util/page_factory.dart'; | export 'util/page_factory.dart'; | ||||
export 'util/widget_factory.dart'; | |||||
export 'util/router_util.dart'; | export 'util/router_util.dart'; | ||||
export 'util/enum_util.dart'; | export 'util/enum_util.dart'; | ||||