46 lines
1.2 KiB
Dart
46 lines
1.2 KiB
Dart
|
import 'dart:async';
|
||
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
import 'dart:js' as js;
|
||
|
|
||
|
import 'web_platform_manager.dart';
|
||
|
|
||
|
class PlatformUtil {
|
||
|
late BinaryMessenger _messenger;
|
||
|
late MethodChannel? _channel;
|
||
|
|
||
|
PlatformUtil({required BinaryMessenger messenger}) {
|
||
|
this._messenger = messenger;
|
||
|
|
||
|
_channel = MethodChannel(
|
||
|
'com.pichillilorenzo/flutter_inappwebview_platformutil',
|
||
|
const StandardMethodCodec(),
|
||
|
_messenger,
|
||
|
);
|
||
|
|
||
|
this._channel?.setMethodCallHandler(handleMethodCall);
|
||
|
}
|
||
|
|
||
|
Future<dynamic> handleMethodCall(MethodCall call) async {
|
||
|
switch (call.method) {
|
||
|
case "getWebCookieExpirationDate":
|
||
|
int timestamp = call.arguments['date'];
|
||
|
return getWebCookieExpirationDate(timestamp);
|
||
|
default:
|
||
|
throw PlatformException(
|
||
|
code: 'Unimplemented',
|
||
|
details: 'flutter_inappwebview for web doesn\'t implement \'${call.method}\'',
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
String getWebCookieExpirationDate(int timestamp) {
|
||
|
var bridgeJsObject = js.JsObject.fromBrowserObject(js.context[WebPlatformManager.BRIDGE_JS_OBJECT_NAME]);
|
||
|
return bridgeJsObject.callMethod("getCookieExpirationDate", [timestamp]);
|
||
|
}
|
||
|
|
||
|
void dispose() {
|
||
|
_channel?.setMethodCallHandler(null);
|
||
|
_channel = null;
|
||
|
}
|
||
|
}
|