Skip to content
Snippets Groups Projects
Commit 72d93d20 authored by vjrj's avatar vjrj
Browse files

Detect unnsupported browsers

parent b3fe7dc5
No related branches found
No related tags found
No related merge requests found
......@@ -136,5 +136,6 @@
"notification_new_sent_title": "New payment sent",
"notification_new_sent_desc": "You have sent a {amount} to {to}",
"contact_already_exists": "Contact already exists",
"wrong_public_key": "Wrong public key"
"wrong_public_key": "Wrong public key",
"browser_warning": "You are using a browser we didn't test. Please use Chrome, Firefox or Brave."
}
......@@ -136,5 +136,6 @@
"notification_new_sent_title": "Nuevo pago enviado",
"notification_new_sent_desc": "Has enviado un nuevo pago de {amount} a {to}",
"contact_already_exists": "Contacto ya existente",
"wrong_public_key": "Clave pública incorrecta"
"wrong_public_key": "Clave pública incorrecta",
"browser_warning": "Estas usando un navegador que no hemos testeado. Por favor, usa Chrome, Firefox o Brave."
}
......@@ -9,6 +9,8 @@ class AppCubit extends HydratedCubit<AppState> {
bool get isWarningViewed => state.warningViewed;
bool get isWarningBrowserViewed => state.warningBrowserViewed;
bool get isExpertMode => state.expertMode;
void introViewed() {
......@@ -19,6 +21,10 @@ class AppCubit extends HydratedCubit<AppState> {
emit(state.copyWith(warningViewed: true));
}
void warningBrowserViewed() {
emit(state.copyWith(warningBrowserViewed: true));
}
@override
AppState fromJson(Map<String, dynamic> json) {
return AppState.fromJson(json);
......
......@@ -10,6 +10,7 @@ class AppState extends Equatable implements IsJsonSerializable<AppState> {
const AppState({
this.introViewed = false,
this.warningViewed = false,
this.warningBrowserViewed = false,
this.expertMode = false,
});
......@@ -18,17 +19,20 @@ class AppState extends Equatable implements IsJsonSerializable<AppState> {
final bool introViewed;
final bool warningViewed;
final bool warningBrowserViewed;
final bool expertMode;
AppState copyWith({
bool? introViewed,
bool? warningViewed,
bool? warningBrowserViewed,
bool? expertMode,
String? locale,
}) {
return AppState(
introViewed: introViewed ?? this.introViewed,
warningViewed: warningViewed ?? this.warningViewed,
warningBrowserViewed: warningBrowserViewed ?? this.warningBrowserViewed,
expertMode: expertMode ?? this.expertMode);
}
......@@ -39,5 +43,6 @@ class AppState extends Equatable implements IsJsonSerializable<AppState> {
Map<String, dynamic> toJson() => _$AppStateToJson(this);
@override
List<Object?> get props => <Object>[introViewed, warningViewed, expertMode];
List<Object?> get props =>
<Object>[introViewed, warningViewed, expertMode, warningBrowserViewed];
}
......@@ -9,11 +9,13 @@ part of 'app_state.dart';
AppState _$AppStateFromJson(Map<String, dynamic> json) => AppState(
introViewed: json['introViewed'] as bool? ?? false,
warningViewed: json['warningViewed'] as bool? ?? false,
warningBrowserViewed: json['warningBrowserViewed'] as bool? ?? false,
expertMode: json['expertMode'] as bool? ?? false,
);
Map<String, dynamic> _$AppStateToJson(AppState instance) => <String, dynamic>{
'introViewed': instance.introViewed,
'warningViewed': instance.warningViewed,
'warningBrowserViewed': instance.warningBrowserViewed,
'expertMode': instance.expertMode,
};
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:web_browser_detect/web_browser_detect.dart';
import '../../data/models/app_cubit.dart';
import '../../data/models/app_state.dart';
......@@ -38,7 +40,28 @@ class _FirstScreenState extends State<FirstScreen> {
),
);
}
if (kIsWeb) {
final Browser? browser = Browser.detectOrNull();
if (browser == null ||
(browser.browserAgent != BrowserAgent.Chrome ||
browser.browserAgent != BrowserAgent.Firefox)) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(tr('browser_warning')),
action: SnackBarAction(
label: 'OK',
onPressed: () {
ScaffoldMessenger.of(context).hideCurrentSnackBar();
context.read<AppCubit>().warningBrowserViewed();
},
),
),
);
}
}
});
// FIXME
context.read<PaymentCubit>().notSent();
return BlocBuilder<PaymentCubit, PaymentState>(
builder: (BuildContext context, PaymentState state) =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment