// ignore_for_file: avoid_web_libraries_in_flutter import 'dart:convert'; import 'dart:typed_data'; import 'dart:js'; import '../common.dart'; import 'dart:html'; import 'dart:async'; final List> mouseListeners = []; final List> keyListeners = []; class PlatformFFI { static String getByName(String name, [String arg = '']) { return context.callMethod('getByName', [name, arg]); } static void setByName(String name, [String value = '']) { context.callMethod('setByName', [name, value]); } PlatformFFI._(); static final PlatformFFI instance = PlatformFFI._(); static get localeName => window.navigator.language; static Future init(String _appType) async { isWeb = true; isWebDesktop = !context.callMethod('isMobile'); context.callMethod('init'); version = getByName('version'); } static void setEventCallback(void Function(Map) fun) { context["onGlobalEvent"] = (String message) { try { Map event = json.decode(message); fun(event); } catch (e) { print('json.decode fail(): $e'); } }; } static void setRgbaCallback(void Function(Uint8List) fun) { context["onRgba"] = (Uint8List? rgba) { if (rgba != null) { fun(rgba); } }; } static void startDesktopWebListener() { mouseListeners.add( window.document.onContextMenu.listen((evt) => evt.preventDefault())); } static void stopDesktopWebListener() { for (var ml in mouseListeners) { ml.cancel(); } mouseListeners.clear(); for (var kl in keyListeners) { kl.cancel(); } keyListeners.clear(); } static void setMethodCallHandler(FMethod callback) {} static Future invokeMethod(String method, [dynamic arguments]) async { return true; } }