Merge branch 'main' into fix/fd-705

This commit is contained in:
Ivan Antunes 2024-08-22 16:31:41 -03:00
commit 3184819bed
24 changed files with 898 additions and 740 deletions

BIN
assets/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

View File

@ -373,47 +373,54 @@ Future<bool> checkLocals({
required HomePageModel model,
required void Function(void Function()) safeSetState,
}) async {
// A chamada para a API permanece a mesma, assumindo que é necessária sempre.
final response = await PhpGroup.getLocalsCall.call(
devUUID: AppState().devUUID,
userUUID: AppState().userUUID,
);
bool itemFound = false;
var modalResult;
// Verificação rápida de erro para evitar processamento desnecessário.
if (response.jsonBody['error']) {
return false;
}
// Uso eficiente de coleções para verificar a condição desejada.
final String uuid = cliUUID ?? AppState().cliUUID;
final bool itemFound = response.jsonBody['locais'].any(
(local) => local['CLI_ID'] == uuid && local['CLU_STATUS'] == "A",
);
// Log e retorno condicional baseado no resultado da busca.
if (itemFound) {
return true;
} else {
// A chamada para showModalBottomSheet permanece, mas a atualização da UI é otimizada.
await showModalBottomSheet(
isScrollControlled: true,
backgroundColor: Colors.transparent,
enableDrag: false,
context: context,
builder: (context) => GestureDetector(
onTap: () => model.unfocusNode.canRequestFocus
? FocusScope.of(context).requestFocus(model.unfocusNode)
: FocusScope.of(context).unfocus(),
child: Padding(
padding: MediaQuery.viewInsetsOf(context),
child: const BottomArrowLinkedLocalsComponentWidget(),
),
),
do {
// A chamada para a API permanece a mesma, assumindo que é necessária sempre.
final response = await PhpGroup.getLocalsCall.call(
devUUID: AppState().devUUID,
userUUID: AppState().userUUID,
);
safeSetState(
() {}); // Chamada otimizada fora do then para evitar encadeamentos desnecessários.
return false;
}
// Verificação rápida de erro para evitar processamento desnecessário.
if (response.jsonBody['error']) {
return false;
}
// Uso eficiente de coleções para verificar a condição desejada.
final String uuid = cliUUID ?? AppState().cliUUID;
itemFound = response.jsonBody['locais'].any(
(local) => local['CLI_ID'] == uuid && local['CLU_STATUS'] == "A",
);
// Log e retorno condicional baseado no resultado da busca.
if (itemFound) {
return true;
} else {
// A chamada para showModalBottomSheet permanece, mas a atualização da UI é otimizada.
modalResult = await showModalBottomSheet(
isScrollControlled: true,
backgroundColor: Colors.transparent,
enableDrag: false,
isDismissible: false,
context: context,
builder: (context) => GestureDetector(
onTap: () => model.unfocusNode.canRequestFocus
? FocusScope.of(context).requestFocus(model.unfocusNode)
: FocusScope.of(context).unfocus(),
child: Padding(
padding: MediaQuery.viewInsetsOf(context),
child: const BottomArrowLinkedLocalsComponentWidget(),
),
),
);
safeSetState(
() {}); // Chamada otimizada fora do then para evitar encadeamentos desnecessários.
}
} while (modalResult != true);
return false;
}
Future answersRequest(BuildContext context, String? ref, String? task,

View File

@ -153,6 +153,12 @@ class AppState extends ChangeNotifier {
await _safeInitAsync(() async {
_context = await secureStorage.getObject('ff_context') ?? _context;
});
await _safeInitAsync(() async {
_provisional = await secureStorage.getBool('provisional') ?? _provisional;
});
await _safeInitAsync(() async {
_whatsapp = await secureStorage.getBool('whatsapp') ?? _whatsapp;
});
}
void update(VoidCallback callback) {
@ -162,6 +168,28 @@ class AppState extends ChangeNotifier {
late FlutterSecureStorage secureStorage;
bool _whatsapp = false;
bool get whatsapp => _whatsapp;
set whatsapp(bool value) {
_whatsapp = value;
secureStorage.setBool('whatsapp', value);
}
void deleteWhatsapp() {
secureStorage.delete(key: 'whatsapp');
}
bool _provisional = false;
bool get provisional => _provisional;
set provisional(bool value) {
_provisional = value;
secureStorage.setBool('provisional', value);
}
void deleteProvisional() {
secureStorage.delete(key: 'provisional');
}
BuildContext? _context;
BuildContext? get context => _context;
set context(BuildContext? value) {
@ -451,7 +479,35 @@ class AppState extends ChangeNotifier {
}
void deleteAll() {
AppState().deleteAccessPass();
AppState().deleteCliUUID();
AppState().deleteCreatedAt();
AppState().deleteDevUUID();
AppState().deleteDevice();
AppState().deleteEmail();
AppState().deleteFingerprint();
AppState().deleteFingerprintPass();
AppState().deleteIsLogged();
AppState().deleteLocal();
AppState().deleteName();
AppState().deleteOwnerUUID();
AppState().deletePass();
AppState().deletePasswd();
AppState().deletePerson();
AppState().deletePanic();
AppState().deletePanicPass();
AppState().deleteProvisional();
AppState().deleteStatus();
AppState().deleteToken();
AppState().deleteTokenAPNS();
AppState().deleteUpdatedAt();
AppState().deleteUserUUID();
AppState().deleteWhatsapp();
AppState().deleteContext();
AppState().deleteRemoteId();
AppState().deleteSerialNumber();
secureStorage.deleteAll();
AppState().isLogged = false;
}
}

View File

@ -13,7 +13,8 @@ enum MenuView {
enum MenuItem {
button,
card
card,
tile,
}
extension FFEnumExtensions<T extends Enum> on T {
@ -32,4 +33,4 @@ T? deserializeEnum<T>(String? value) {
default:
return null;
}
}
}

View File

@ -4,9 +4,6 @@ import 'package:hub/components/molecular_components/menu_item/menu_item.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
class MenuButtonWidget extends MenuEntry {
const MenuButtonWidget({
Key? key,
@ -21,7 +18,6 @@ class MenuButtonWidget extends MenuEntry {
@override
_MenuButtonWidgetState createState() => _MenuButtonWidgetState();
}
class _MenuButtonWidgetState extends State<MenuButtonWidget> {
@ -30,119 +26,103 @@ class _MenuButtonWidgetState extends State<MenuButtonWidget> {
@override
Widget build(BuildContext context) {
return InkWell(
splashColor: Colors.transparent,
focusColor: Colors.transparent,
hoverColor: Colors.transparent,
highlightColor: Colors.transparent,
onTap: () async {
await widget.action?.call();
},
child: Container(
width: 100.0,
height: 100.0,
decoration: BoxDecoration(
color:
FlutterFlowTheme.of(context).primaryBackground,
boxShadow: [
BoxShadow(
blurRadius: 4.0,
color:
FlutterFlowTheme.of(context).customColor5,
offset: const Offset(
0.0,
2.0,
),
)
],
borderRadius: BorderRadius.circular(24.0),
shape: BoxShape.rectangle,
border: Border.all(
color: FlutterFlowTheme.of(context).alternate,
width: 0.5,
splashColor: Colors.transparent,
focusColor: Colors.transparent,
hoverColor: Colors.transparent,
highlightColor: Colors.transparent,
onTap: () async {
await widget.action?.call();
},
child: Container(
width: 100.0,
height: 100.0,
decoration: BoxDecoration(
color: FlutterFlowTheme.of(context).primaryBackground,
boxShadow: [
BoxShadow(
blurRadius: 4.0,
color: FlutterFlowTheme.of(context).customColor5,
offset: const Offset(
0.0,
2.0,
),
)
],
borderRadius: BorderRadius.circular(24.0),
shape: BoxShape.rectangle,
border: Border.all(
color: FlutterFlowTheme.of(context).alternate,
width: 0.5,
),
),
child: Padding(
padding: const EdgeInsets.all(4.0),
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Align(
alignment: const AlignmentDirectional(-1.0, 0.0),
child: Padding(
padding: const EdgeInsetsDirectional.fromSTEB(
8.0, 0.0, 0.0, 0.0),
child: Container(
width: 30.0,
height: 30.0,
decoration: BoxDecoration(
color: FlutterFlowTheme.of(context)
.primaryBackground,
shape: BoxShape.circle,
),
),
child: Padding(
padding: const EdgeInsets.all(4.0),
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Align(
alignment:
const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Align(
alignment: const AlignmentDirectional(
-1.0, 0.0),
child: Padding(
padding: const EdgeInsetsDirectional
.fromSTEB(8.0, 0.0, 0.0, 0.0),
child: Container(
width: 30.0,
height: 30.0,
decoration: BoxDecoration(
color:
FlutterFlowTheme.of(context)
.primaryBackground,
shape: BoxShape.circle,
),
alignment:
const AlignmentDirectional(
0.0, 0.0),
child: Icon(
widget.icon,
color:
FlutterFlowTheme.of(context)
.accent1,
size: 24.0,
),
),
),
),
),
],
),
),
Align(
alignment:
const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Align(
alignment: const AlignmentDirectional(
0.0, 0.0),
child: Text(
widget.title ?? '',
style: FlutterFlowTheme.of(context)
.titleLarge
.override(
fontFamily: 'Nunito',
color:
FlutterFlowTheme.of(context)
.primaryText,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap()
.containsKey('Nunito'),
),
),
),
],
),
),
].divide(const SizedBox(height: 0.0)),
alignment: const AlignmentDirectional(0.0, 0.0),
child: Icon(
widget.icon,
color: FlutterFlowTheme.of(context).accent1,
size: 24.0,
),
),
),
);
),
),
],
),
),
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Text(
widget.title ?? '',
style: FlutterFlowTheme.of(context).titleLarge.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap().containsKey('Nunito'),
),
),
),
],
),
),
].divide(const SizedBox(height: 0.0)),
),
),
),
);
}
}
}

View File

@ -4,9 +4,6 @@ import 'package:hub/components/molecular_components/menu_item/menu_item.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
class MenuCardItem extends MenuEntry {
const MenuCardItem({
Key? key,
@ -21,7 +18,6 @@ class MenuCardItem extends MenuEntry {
@override
_MenuCardItemState createState() => _MenuCardItemState();
}
class _MenuCardItemState extends State<MenuCardItem> {
@ -30,81 +26,66 @@ class _MenuCardItemState extends State<MenuCardItem> {
@override
Widget build(BuildContext context) {
return InkWell(
splashColor: Colors.transparent,
focusColor: Colors.transparent,
hoverColor: Colors.transparent,
highlightColor: Colors.transparent,
onTap: () async {
await widget.action?.call();
},
child: Card(
elevation: 0,
color: FlutterFlowTheme.of(context).primaryBackground,
child: Padding(
padding: const EdgeInsets.all(4.0),
child:
Align(
alignment:
const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Align(
alignment: const AlignmentDirectional(
-1.0, 0.0),
child: Padding(
padding: const EdgeInsetsDirectional
.fromSTEB(8.0, 0.0, 10.0, 0.0),
child: Container(
width: 30.0,
height: 30.0,
decoration: BoxDecoration(
color:
FlutterFlowTheme.of(context)
.primaryBackground,
shape: BoxShape.circle,
),
alignment:
const AlignmentDirectional(
0.0, 0.0),
child: Icon(
widget.icon,
fill: null,
color:
FlutterFlowTheme.of(context)
.accent1,
size: 24.0,
),
),
),
),
Align(
alignment: const AlignmentDirectional(
0.0, 0.0),
child: Text(
widget.title ?? '',
style: FlutterFlowTheme.of(context)
.titleLarge
.override(
fontFamily: 'Nunito',
color:
FlutterFlowTheme.of(context)
.primaryText,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap()
.containsKey('Nunito'),
),
),
),
],
),
),
),
splashColor: Colors.transparent,
focusColor: Colors.transparent,
hoverColor: Colors.transparent,
highlightColor: Colors.transparent,
onTap: () async {
await widget.action?.call();
},
child: Card(
elevation: 0,
color: FlutterFlowTheme.of(context).primaryBackground,
child: Padding(
padding: const EdgeInsets.all(4.0),
child: Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Align(
alignment: const AlignmentDirectional(-1.0, 0.0),
child: Padding(
padding: const EdgeInsetsDirectional.fromSTEB(
8.0, 0.0, 10.0, 0.0),
child: Container(
width: 30.0,
height: 30.0,
decoration: BoxDecoration(
color: FlutterFlowTheme.of(context).primaryBackground,
shape: BoxShape.circle,
),
alignment: const AlignmentDirectional(0.0, 0.0),
child: Icon(
widget.icon,
fill: null,
color: FlutterFlowTheme.of(context).accent1,
size: 24.0,
),
),
),
),
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Text(
widget.title ?? '',
style: FlutterFlowTheme.of(context).titleLarge.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap().containsKey('Nunito'),
),
);
),
),
],
),
),
),
),
);
}
}
}

View File

@ -1,5 +1,3 @@
import 'package:flutter/material.dart';
abstract class MenuEntry extends StatefulWidget {
@ -13,7 +11,4 @@ abstract class MenuEntry extends StatefulWidget {
final Function()? action;
final String? title;
final IconData? icon;
}
}

View File

@ -1,11 +1,14 @@
import '/components/organism_components/bottom_arrow_linked_locals_component/bottom_arrow_linked_locals_component_widget.dart';
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/flutter_flow/custom_functions.dart' as functions;
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:provider/provider.dart';
import '/components/organism_components/bottom_arrow_linked_locals_component/bottom_arrow_linked_locals_component_widget.dart';
import '/flutter_flow/custom_functions.dart' as functions;
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import 'local_profile_component_model.dart';
export 'local_profile_component_model.dart';
////
@ -93,46 +96,38 @@ class _LocalProfileComponentWidgetState
},
child: ClipRRect(
borderRadius: BorderRadius.circular(200.0),
child: Image.network(
'https://freaccess.com.br/freaccess/Images/Clients/${AppState().cliUUID}.png',
child: CachedNetworkImage(
imageUrl: valueOrDefault(
'https://freaccess.com.br/freaccess/Images/Clients/${AppState().cliUUID}.png',
'assets/images/error_image.svg'),
width: 80.0,
height: 80.0,
fit: BoxFit.cover,
alignment: const Alignment(0.0, 0.0),
errorBuilder: (context, error, stackTrace) =>
Image.network(
'https://storage.googleapis.com/flutterflow-io-6f20.appspot.com/projects/flutter-freaccess-hub-0xgz9q/assets/7ftdetkzc3s0/360_F_64676383_LdbmhiNM6Ypzb3FM4PPuFP9rHe7ri8Ju.jpg',
width: 80.0,
height: 80.0,
fit: BoxFit.cover,
alignment: const Alignment(0.0, 0.0),
errorBuilder: (context, error, stackTrace) =>
Image.asset('assets/images/error_image.svg'),
),
)),
),
placeholder: (context, url) =>
Image.asset('assets/images/error_image.svg'),
errorListener: (_) =>
Image.asset('assets/images/error_image.svg'),
errorWidget: (_, __, ___) =>
Image.asset('assets/images/error_image.svg'),
),
)),
),
),
Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
valueOrDefault<String>(
functions.convertToUppercase(AppState().local),
'NOME DO LOCAL',
Text(
valueOrDefault<String>(
functions.convertToUppercase(AppState().local),
'NOME DO LOCAL',
),
style: FlutterFlowTheme.of(context).labelMedium.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).info,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap().containsKey('Nunito'),
),
style: FlutterFlowTheme.of(context).labelMedium.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).info,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts:
GoogleFonts.asMap().containsKey('Nunito'),
),
),
],
),
]
.divide(const SizedBox(width: 20.0))

View File

@ -1,3 +1,5 @@
import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:hub/components/organism_components/menu_staggered_view_component/menu_staggered_view_component_model.dart';
import 'package:hub/flutter_flow/nav/nav.dart';
@ -7,8 +9,6 @@ import '/components/organism_components/menu_list_view_component/menu_list_view_
import '/flutter_flow/flutter_flow_util.dart';
import 'menu_component_widget.dart' show MenuComponentWidget;
class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
/// Local state fields for this component.
@ -42,36 +42,46 @@ class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
}
Future scheduleVisitOptAction(BuildContext context) async {
final isWpp = AppState().whatsapp;
final isProvisional = AppState().provisional;
log("isWpp ${isWpp ? 1 : 0}");
final routesListStr = <String>[
'scheduleCompleteVisitPage',
if (isProvisional) 'scheduleProvisionalVisitPage',
if (isWpp) 'fastPassPage',
];
final iconsListIcon = <IconData>[
Icons.date_range_rounded,
if (isProvisional) Icons.date_range_rounded,
if (isWpp) Icons.date_range_rounded,
];
final nameListStr = <String>[
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nCompleta',
enText: 'Complete\nSchedule',
),
if (isProvisional)
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nProvisória',
enText: 'Provisional\nSchedule',
),
if (isWpp)
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nRápida',
enText: 'Fast\nSchedule',
),
];
await showAdaptiveDialog(
context: context,
builder: (context) {
return Padding(
padding: MediaQuery.viewInsetsOf(context),
child: OptionSelectionModalWidget(
routesListStr: <String>[
'scheduleCompleteVisitPage',
'scheduleProvisionalVisitPage',
'fastPassPage',
],
iconsListIcon: <IconData>[
Icons.date_range_rounded,
Icons.date_range_rounded,
Icons.date_range_rounded,
],
nameListStr: <String>[
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nCompleta',
enText: 'Complete\nSchedule',
),
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nProvisória',
enText: 'Provisional\nSchedule',
),
FFLocalizations.of(context).getVariableText(
ptText: 'Visita\nRápida',
enText: 'Fast\nSchedule',
),
],
routesListStr: routesListStr,
iconsListIcon: iconsListIcon,
nameListStr: nameListStr,
),
);
},
@ -103,6 +113,30 @@ class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
);
}
Future<void> signOut(BuildContext context) async {
showAlertDialog(
context,
'Logout',
FFLocalizations.of(context).getVariableText(
enText: 'Are you sure you want to logout?',
ptText: 'Tem certeza',
), () async {
AppState().deleteAll();
// setState(() {});
context.goNamed(
'welcomePage',
extra: <String, dynamic>{
kTransitionInfoKey: const TransitionInfo(
hasTransition: true,
transitionType: PageTransitionType.scale,
alignment: Alignment.bottomCenter,
),
},
);
});
}
Future preferencesSettings(BuildContext context) async {
context.pushNamed(
'preferencesSettings',
@ -113,7 +147,7 @@ class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
alignment: Alignment.bottomCenter,
),
},
);
).then((value) => true);
}
Future liberationHistoryOptAction(BuildContext context) async {
@ -175,7 +209,7 @@ class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
);
}
Future messageHistoryAction(BuildContext context) async {
Future messageHistoryAction(BuildContext context) async {
context.pushNamed(
'messageHistoryPage',
extra: <String, dynamic>{
@ -187,6 +221,4 @@ class MenuComponentModel extends FlutterFlowModel<MenuComponentWidget> {
},
);
}
}
}

View File

@ -1,5 +1,4 @@
import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:hub/backend/schema/enums/enums.dart';
import 'package:hub/components/atomic_components/menu_button_item/menu_button_item_widget.dart';
import 'package:hub/components/atomic_components/menu_card_item/menu_card_item.dart';
@ -9,8 +8,8 @@ import 'package:hub/flutter_flow/nav/nav.dart';
import '/components/organism_components/menu_list_view_component/menu_list_view_component_widget.dart';
import '/components/organism_components/menu_staggered_view_component/menu_staggered_view_component_widget.dart';
import '/flutter_flow/flutter_flow_util.dart';
import 'package:flutter/material.dart';
import 'menu_component_model.dart';
export 'menu_component_model.dart';
class MenuComponentWidget extends StatefulWidget {
@ -49,161 +48,234 @@ class _MenuComponentWidgetState extends State<MenuComponentWidget> {
super.dispose();
}
// MenuButtonWidget(icon: FFIcons.kvector2, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Link\nCondominum' , ptText:'' ,),),
// MenuButtonWidget(icon: FFIcons.kpets, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Register\Pet' , ptText:'' ,),),
@override
Widget build(BuildContext context) {
final options = widget.item == MenuItem.button
? <MenuEntry>[
MenuButtonWidget(
icon: FFIcons.kvector1,
action: () async {
await _model.scheduleVisitOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Schedule\nVisit',
ptText: 'Agendar\nVisita',
),
final options = () {
if (widget.item == MenuItem.button) {
return <MenuEntry>[
MenuButtonWidget(
icon: FFIcons.kvector1,
action: () async {
await _model.scheduleVisitOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Schedule\nVisit',
ptText: 'Agendar\nVisita',
),
MenuButtonWidget(
icon: FFIcons.khome,
action: () async {
await _model.registerVisitorOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Register\nVisitor',
ptText: 'Cadastro\nde Visitante',
),
),
MenuButtonWidget(
icon: FFIcons.khome,
action: () async {
await _model.registerVisitorOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Register\nVisitor',
ptText: 'Cadastro\nde Visitante',
),
// MenuButtonWidget(icon: FFIcons.kvector2, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Link\nCondominum' , ptText:'' ,),),
// MenuButtonWidget(icon: FFIcons.kpets, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Register\Pet' , ptText:'' ,),),
MenuButtonWidget(
icon: Icons.qr_code,
action: () async {
await _model.accessQRCodeOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'QRCode\nAccess',
ptText: 'QRCode\nde Acesso',
),
),
MenuButtonWidget(
icon: Icons.qr_code,
action: () async {
await _model.accessQRCodeOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'QRCode\nAccess',
ptText: 'QRCode\nde Acesso',
),
MenuButtonWidget(
icon: Icons.people,
action: () async {
await _model.peopleOnThePropertyAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Poeple on\nthe Property',
ptText: 'Pessoas na\nPropriedade',
),
),
MenuButtonWidget(
icon: Icons.people,
action: () async {
await _model.peopleOnThePropertyAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Poeple on\nthe Property',
ptText: 'Pessoas na\nPropriedade',
),
MenuButtonWidget(
icon: Icons.history_sharp,
action: () async {
await _model.liberationHistoryOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Consult\nHistories',
ptText: 'Consultar\nHistóricos',
),
),
MenuButtonWidget(
icon: Icons.history_sharp,
action: () async {
await _model.liberationHistoryOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Consult\nHistories',
ptText: 'Consultar\nHistóricos',
),
MenuButtonWidget(
icon: Icons.settings,
action: () async {
await _model.preferencesSettings(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Preferences\nSettings',
ptText: 'Preferências \nde Configurações',
),
),
MenuButtonWidget(
icon: Icons.settings,
action: () async {
await _model.preferencesSettings(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Preferences\nSettings',
ptText: 'Preferências \nde Configurações',
),
]
: <MenuEntry>[
MenuCardItem(
icon: FFIcons.kvector1,
action: () async {
await _model.scheduleVisitOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Schedule\nVisit',
ptText: 'Agendar\nVisita',
),
),
];
}
if (widget.item == MenuItem.card) {
return <MenuEntry>[
MenuCardItem(
icon: FFIcons.kvector1,
action: () async {
await _model.scheduleVisitOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Schedule\nVisit',
ptText: 'Agendar\nVisita',
),
MenuCardItem(
icon: FFIcons.khome,
action: () async {
await _model.registerVisitorOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Register\nVisitor',
ptText: 'Cadastro\nde Visitante',
),
),
MenuCardItem(
icon: FFIcons.khome,
action: () async {
await _model.registerVisitorOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Register\nVisitor',
ptText: 'Cadastro\nde Visitante',
),
// MenuCardItem(icon: FFIcons.kvector2, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Link Condominum' , ptText:'' ,),),
// MenuCardItem(icon: FFIcons.kpets, action: () async {setState(() {});}, title: FFLocalizations.of(context).getVariableText(enText:'Register\Pet' , ptText:'' ,),),
MenuCardItem(
icon: Icons.qr_code,
action: () async {
await _model.accessQRCodeOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'QRCode\nAccess',
ptText: 'QRCode\nde Acesso',
),
),
MenuCardItem(
icon: Icons.qr_code,
action: () async {
await _model.accessQRCodeOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'QRCode\nAccess',
ptText: 'QRCode\nde Acesso',
),
MenuCardItem(
icon: Icons.people,
action: () async {
await _model.peopleOnThePropertyAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Poeple on\nthe Property',
ptText: 'Pessoas\nna Propriedade',
),
),
MenuCardItem(
icon: Icons.people,
action: () async {
await _model.peopleOnThePropertyAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Poeple on\nthe Property',
ptText: 'Pessoas\nna Propriedade',
),
MenuCardItem(
icon: Icons.history_sharp,
action: () async {
await _model.liberationHistoryOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Consult\nHistories',
ptText: 'Consultar\nHistoricos',
),
),
MenuCardItem(
icon: Icons.history_sharp,
action: () async {
await _model.liberationHistoryOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Consult\nHistories',
ptText: 'Consultar\nHistoricos',
),
MenuCardItem(
icon: Icons.settings,
action: () async {
await _model.preferencesSettings(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Preferences\nSettings',
ptText: 'Preferências\nde Configuração',
),
),
MenuCardItem(
icon: Icons.settings,
action: () async {
await _model.preferencesSettings(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Preferences\nSettings',
ptText: 'Preferências\nde Configuração',
),
];
),
];
}
// if (MenuItem.tile)
return <MenuEntry>[
MenuCardItem(
icon: FFIcons.kvector1,
action: () async {
await _model.scheduleVisitOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Schedule Visit',
ptText: 'Agendar Visita',
),
),
MenuCardItem(
icon: FFIcons.khome,
action: () async {
await _model.registerVisitorOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Register Visitor',
ptText: 'Cadastro de Visitante',
),
),
MenuCardItem(
icon: Icons.qr_code,
action: () async {
await _model.accessQRCodeOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'QRCode Access',
ptText: 'QRCode de Acesso',
),
),
MenuCardItem(
icon: Icons.people,
action: () async {
await _model.peopleOnThePropertyAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Poeple on the Property',
ptText: 'Pessoas na Propriedade',
),
),
MenuCardItem(
icon: Icons.history_sharp,
action: () async {
await _model.liberationHistoryOptAction(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Consult Histories',
ptText: 'Consultar Historicos',
),
),
MenuCardItem(
icon: Icons.logout,
action: () async {
await _model.signOut(context);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Logout Account',
ptText: 'Sair da Conta',
),
),
MenuCardItem(
icon: Icons.settings,
action: () async {
await _model.preferencesSettings(context).then((value) => value);
setState(() {});
},
title: FFLocalizations.of(context).getVariableText(
enText: 'Preferences Settings',
ptText: 'Preferências de Configuração',
),
),
];
}();
return Padding(
padding: const EdgeInsetsDirectional.fromSTEB(0.0, 10.0, 0.0, 0.0),
child: Builder(
@ -245,7 +317,7 @@ class _MenuComponentWidgetState extends State<MenuComponentWidget> {
}
if (widget.style == MenuView.list &&
widget.expandable == false &&
widget.item == MenuItem.card) {
widget.item == MenuItem.tile) {
return wrapWithModel(
model: _model.menuListViewComponentModel,
updateCallback: () => setState(() {}),

View File

@ -1,6 +1,5 @@
import 'package:flutter/material.dart';
import 'package:hub/backend/schema/enums/enums.dart';
import 'package:hub/components/atomic_components/menu_button_item/menu_button_item_widget.dart';
import 'package:hub/components/molecular_components/menu_item/menu_item.dart';
import '/flutter_flow/flutter_flow_icon_button.dart';
@ -12,12 +11,10 @@ export 'menu_list_view_component_model.dart';
///
class MenuListViewComponentWidget extends StatefulWidget {
const MenuListViewComponentWidget({
super.key,
required this.changeMenuStyle,
required this.expandable,
required this.item,
required this.options,
@ -70,99 +67,115 @@ class _MenuListViewComponentWidgetState
clipBehavior: Clip.none,
children: [
buildMenuItem(context),
if (widget.expandable)
buildExpandableButton(context),
if (widget.expandable) buildExpandableButton(context),
],
);
}
Widget buildMenuItem(BuildContext context) {
switch(widget.item) {
switch (widget.item) {
case MenuItem.button:
return SizedBox(
height: 100,
width: double.infinity,
child: ListView.builder(
addAutomaticKeepAlives: true,
padding: const EdgeInsets.symmetric(horizontal: 15),
shrinkWrap: true,
physics: const AlwaysScrollableScrollPhysics(),
scrollDirection: Axis.horizontal,
itemCount: widget.options.length,
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
height: 115,
width: 115,
child: widget.options[index]),
);
},
),
child: ListView.builder(
addAutomaticKeepAlives: true,
padding: const EdgeInsets.symmetric(horizontal: 15),
shrinkWrap: true,
physics: const AlwaysScrollableScrollPhysics(),
scrollDirection: Axis.horizontal,
itemCount: widget.options.length,
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
height: 115, width: 115, child: widget.options[index]),
);
},
),
);
case MenuItem.card:
return SizedBox(
width: double.infinity,
height: MediaQuery.sizeOf(context).height * 0.8,
child: ListView.builder(
addAutomaticKeepAlives: true,
padding: const EdgeInsets.symmetric(horizontal: 15),
shrinkWrap: true,
physics: const AlwaysScrollableScrollPhysics(),
scrollDirection: Axis.vertical,
itemCount: widget.options.length,
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
height: 115,
width: 115,
child: widget.options[index]),
);
},
),
child: ListView.builder(
addAutomaticKeepAlives: true,
padding: const EdgeInsets.symmetric(horizontal: 15),
shrinkWrap: true,
physics: const AlwaysScrollableScrollPhysics(),
scrollDirection: Axis.vertical,
itemCount: widget.options.length,
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
height: 115, width: 115, child: widget.options[index]),
);
},
),
);
case MenuItem.tile:
return SizedBox(
width: double.infinity,
height: MediaQuery.of(context).size.height * 0.7,
child: ListView.separated(
padding: const EdgeInsets.symmetric(horizontal: 15),
shrinkWrap: true,
physics: const AlwaysScrollableScrollPhysics(),
scrollDirection: Axis.vertical,
itemCount: widget.options.length,
itemBuilder: (context, index) {
return SizedBox(
height: MediaQuery.of(context).size.height * 0.08,
width: MediaQuery.of(context).size.width * 0.08,
child: widget.options[index],
);
},
separatorBuilder: (context, index) {
return const Divider(thickness: 0.2);
},
),
);
}
}
}
Row buildExpandableButton(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
FFLocalizations.of(context).getVariableText(
enText: 'Expand',
ptText: 'Expandir',
),
style: FlutterFlowTheme.of(context).title1.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 12.0,
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal,
),
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
FFLocalizations.of(context).getVariableText(
enText: 'Expand',
ptText: 'Expandir',
),
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: FlutterFlowIconButton(
borderColor: Colors.transparent,
borderRadius: 20.0,
borderWidth: 0.0,
buttonSize: 50.0,
fillColor: const Color(0x00FFFFFF),
icon: Icon(
Icons.keyboard_arrow_down_outlined,
color: FlutterFlowTheme.of(context).primary,
style: FlutterFlowTheme.of(context).title1.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 12.0,
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal,
),
onPressed: () async {
await widget.changeMenuStyle?.call();
},
),
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
child: FlutterFlowIconButton(
borderColor: Colors.transparent,
borderRadius: 20.0,
borderWidth: 0.0,
buttonSize: 50.0,
fillColor: const Color(0x00FFFFFF),
icon: Icon(
Icons.keyboard_arrow_down_outlined,
color: FlutterFlowTheme.of(context).primary,
),
onPressed: () async {
await widget.changeMenuStyle?.call();
},
),
],
);
),
],
);
}
}

View File

@ -13,7 +13,6 @@ import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
import 'package:hub/flutter_flow/internationalization.dart';
class MenuStaggeredViewComponentWidget extends StatefulWidget {
const MenuStaggeredViewComponentWidget({
super.key,
@ -93,9 +92,7 @@ class _MenuStaggeredViewComponentWidgetState
shrinkWrap: true,
itemBuilder: (context, index) {
return SizedBox(
height: 100,
width: 100,
child: widget.options[index]);
height: 100, width: 100, child: widget.options[index]);
},
),
),
@ -123,12 +120,12 @@ class _MenuStaggeredViewComponentWidgetState
ptText: 'Minimizar',
),
style: FlutterFlowTheme.of(context).title1.override(
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 12.0,
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal,
),
fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 12.0,
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal,
),
),
Align(
alignment: const AlignmentDirectional(0.0, 0.0),
@ -154,4 +151,4 @@ class _MenuStaggeredViewComponentWidgetState
],
);
}
}
}

View File

@ -1,13 +1,11 @@
import 'package:hub/backend/api_requests/api_calls.dart';
import 'package:hub/backend/api_requests/api_manager.dart';
import 'package:hub/components/organism_components/up_arrow_linked_locals_component/up_arrow_linked_locals_component_model.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:flutter_spinkit/flutter_spinkit.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:hub/backend/api_requests/api_calls.dart';
import 'package:hub/components/organism_components/up_arrow_linked_locals_component/up_arrow_linked_locals_component_model.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
import 'package:provider/provider.dart';
class UpArrowLinkedLocalsComponentWidget extends StatefulWidget {
@ -185,11 +183,12 @@ class _UpArrowLinkedLocalsComponentWidgetState
topLeft: Radius.circular(25.0),
topRight: Radius.circular(25.0),
),
child: Image.network(
'https://freaccess.com.br/freaccess/Images/Clients/${getJsonField(
child: CachedNetworkImage(
imageUrl:
"https://freaccess.com.br/freaccess/Images/Clients/${getJsonField(
eachLocalsItem,
r'''$.CLI_ID''',
).toString()}.png',
).toString()}.png",
width: double.infinity,
height: double.infinity,
fit: BoxFit.fill,

View File

@ -1,8 +1,11 @@
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import 'visitor_details_modal_template_component_model.dart';
export 'visitor_details_modal_template_component_model.dart';
class VisitorDetailsModalTemplateComponentWidget extends StatefulWidget {
@ -125,8 +128,8 @@ class _VisitorDetailsModalTemplateComponentWidgetState
decoration: const BoxDecoration(
shape: BoxShape.circle,
),
child: Image.network(
widget.visitorImageURL!,
child: CachedNetworkImage(
imageUrl: widget.visitorImageURL!,
fit: BoxFit.cover,
),
),

View File

@ -1,9 +1,7 @@
import 'package:dropdown_button2/dropdown_button2.dart';
import 'package:dropdown_button2/dropdown_button2.dart';
import 'package:flutter/material.dart';
import 'form_field_controller.dart';
import 'package:flutter/material.dart';
class FlutterFlowDropDown<T> extends StatefulWidget {
const FlutterFlowDropDown({
@ -368,4 +366,4 @@ class _FlutterFlowDropDownState<T> extends State<FlutterFlowDropDown<T>> {
: null,
);
}
}
}

View File

@ -4,14 +4,12 @@ import 'package:flutter/material.dart';
import 'package:hub/flutter_flow/nav/nav.dart';
import 'package:hub/pages/fast_pass_page/fast_pass_page_widget.dart';
import 'package:hub/pages/message_history_page/message_history_page_widget.dart';
import 'package:hub/pages/preferences_settings_page/preferences_settings_widget.dart';
import 'package:hub/pages/no_connection_page/no_connection_page.dart';
import 'package:provider/provider.dart';
import '../../main.dart';
import '/backend/schema/structs/index.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/index.dart';
import '../../pages/visit_history_page/visit_history_page_widget.dart';
export 'package:go_router/go_router.dart';
@ -79,6 +77,11 @@ GoRouter createRouter(AppStateNotifier appStateNotifier) => GoRouter(
builder: (context, params) =>
params.isEmpty ? const HomePageWidget() : const HomePageWidget(),
),
FFRoute(
name: 'no-connection',
path: '/no-connection',
builder: (context, params) => const NoConnectionScreen(),
),
// FFRoute(
// name: 'visitHistoryPage',
// path: '/visitHistoryPage',

View File

@ -7,7 +7,6 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:flutter_web_plugins/url_strategy.dart';
import 'package:hub/app_state.dart';
import 'package:hub/backend/notifications/firebase_messaging_service.dart';
import 'package:hub/backend/notifications/notification_service.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';

View File

@ -1,8 +1,8 @@
import 'dart:developer';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:hub/actions/actions.dart';
import 'package:hub/backend/api_requests/api_calls.dart';
import 'package:hub/backend/notifications/firebase_messaging_service.dart';
import 'package:hub/backend/schema/enums/enums.dart';
import 'package:hub/components/organism_components/bottom_arrow_linked_locals_component/bottom_arrow_linked_locals_component_widget.dart';
@ -12,9 +12,8 @@ import 'package:hub/flutter_flow/custom_functions.dart';
import 'package:hub/flutter_flow/flutter_flow_icon_button.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
import 'package:hub/flutter_flow/flutter_flow_widgets.dart';
import 'package:hub/flutter_flow/nav/nav.dart';
import 'package:hub/pages/home_page/home_page_model.dart';
import 'package:hub/shared/utils/dialog_util.dart';
import 'package:provider/provider.dart';
class HomePageWidget extends StatefulWidget {
@ -29,15 +28,6 @@ class _HomePageWidgetState extends State<HomePageWidget> {
bool localStatus = false;
final scaffoldKey = GlobalKey<ScaffoldState>();
Future<void> checkLocalStatus() async {
localStatus = await checkLocals(
context: context,
model: _model,
safeSetState: safeSetState,
);
}
@override
void initState() {
super.initState();
@ -48,16 +38,42 @@ class _HomePageWidgetState extends State<HomePageWidget> {
() async {
await FirebaseMessagingService().updateDeviceToken();
}();
void fetchData() async {
bool success = false;
while (!success) {
final response = await PhpGroup.getDadosCall.call(
devUUID: AppState().devUUID,
userUUID: AppState().userUUID,
cliUUID: AppState().cliUUID,
atividade: 'getDados',
);
switch (response.statusCode) {
case 200:
if (response.jsonBody['error'] == false) {
success = true;
AppState().whatsapp = response.jsonBody['whatsapp'];
AppState().provisional = response.jsonBody['provisional'];
}
break;
default:
await DialogUtil.warningDefault(context);
safeSetState(() {});
break;
}
}
}
fetchData();
WidgetsBinding.instance.addPostFrameCallback((_) async {
@override
void initState() {
super.initState();
checkLocalStatus();
}
localStatus = await checkLocals(
context: context,
model: _model,
safeSetState: safeSetState,
);
// Rest of your code...
if (AppState().cliUUID == null || AppState().cliUUID.isEmpty) {
if (AppState().cliUUID.isEmpty) {
showModalBottomSheet(
isScrollControlled: true,
backgroundColor: Colors.transparent,
@ -177,7 +193,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
Widget createLocal(bool localStatus) {
return wrapWithModel(
model: _model.localComponentModel,
updateCallback: () => setState(() {}),
updateCallback: () => safeSetState(() {}),
child: LocalProfileComponentWidget(
localStatus: localStatus,
),
@ -237,8 +253,8 @@ class _HomePageWidgetState extends State<HomePageWidget> {
60.0, 15.0, 0.0, 0.0),
child: ClipRRect(
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
'https://storage.googleapis.com/flutterflow-io-6f20.appspot.com/projects/flutter-freaccess-hub-0xgz9q/assets/8r2vsbd9i03k/logo.png',
child: Image.asset(
'assets/images/logo.png',
width: 50.0,
height: 200.0,
fit: BoxFit.none,
@ -252,9 +268,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
padding: const EdgeInsetsDirectional.fromSTEB(
0.0, 15.0, 0.0, 0.0),
child: Text(
FFLocalizations.of(context).getText(
'rg9pzkpz' /* FRE ACCESS */,
),
'FRE ACCESS',
style: FlutterFlowTheme.of(context)
.bodyMedium
.override(
@ -275,28 +289,28 @@ class _HomePageWidgetState extends State<HomePageWidget> {
),
),
),
Align(
alignment: const AlignmentDirectional(0.0, 1.0),
child: Container(
width: 100.0,
height: 50.0,
decoration: const BoxDecoration(),
child: Align(
alignment: const AlignmentDirectional(1.0, 1.0),
child: FlutterFlowIconButton(
borderRadius: 20.0,
borderWidth: 1.0,
buttonSize: 40.0,
icon: Icon(
Icons.notifications_sharp,
color: FlutterFlowTheme.of(context).info,
size: 24.0,
),
onPressed: () {},
),
),
),
),
// Align(
// alignment: const AlignmentDirectional(0.0, 1.0),
// child: Container(
// width: 100.0,
// height: 50.0,
// decoration: const BoxDecoration(),
// child: Align(
// alignment: const AlignmentDirectional(1.0, 1.0),
// child: FlutterFlowIconButton(
// borderRadius: 20.0,
// borderWidth: 1.0,
// buttonSize: 40.0,
// icon: Icon(
// Icons.notifications_sharp,
// color: FlutterFlowTheme.of(context).info,
// size: 24.0,
// ),
// onPressed: () {},
// ),
// ),
// ),
// ),
],
),
),
@ -307,7 +321,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
SizedBox buildDrawer(BuildContext context) {
return SizedBox(
width: 750.0,
width: MediaQuery.of(context).size.width * 0.8,
child: Drawer(
elevation: 16.0,
child: Container(
@ -355,12 +369,21 @@ class _HomePageWidgetState extends State<HomePageWidget> {
decoration: const BoxDecoration(
shape: BoxShape.circle,
),
child: Image.network(
valueOrDefault<String>(
'https://freaccess.com.br/freaccess/Images/Clients/${AppState().cliUUID}.png',
'https://storage.googleapis.com/flutterflow-io-6f20.appspot.com/projects/flutter-freaccess-hub-0xgz9q/assets/7ftdetkzc3s0/360_F_64676383_LdbmhiNM6Ypzb3FM4PPuFP9rHe7ri8Ju.jpg',
),
child: CachedNetworkImage(
imageUrl: valueOrDefault(
'https://freaccess.com.br/freaccess/Images/Clients/${AppState().cliUUID}.png',
'assets/images/error_image.svg'),
width: 80.0,
height: 80.0,
fit: BoxFit.cover,
alignment: const Alignment(0.0, 0.0),
placeholder: (context, url) =>
Image.asset(
'assets/images/error_image.svg'),
errorListener: (_) => Image.asset(
'assets/images/error_image.svg'),
errorWidget: (_, __, ___) => Image.asset(
'assets/images/error_image.svg'),
),
),
Container(
@ -388,40 +411,6 @@ class _HomePageWidgetState extends State<HomePageWidget> {
),
),
),
Container(
width: 50.0,
child: Container(
height: 30.0,
decoration: const BoxDecoration(),
child: Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Flexible(
child: FlutterFlowIconButton(
borderRadius: 100.0,
borderWidth: 1.0,
buttonSize: 40.0,
icon: Icon(
Icons.close_sharp,
color: FlutterFlowTheme.of(context)
.primary,
size: 20.0,
),
onPressed: () async {
if (scaffoldKey
.currentState!.isDrawerOpen ||
scaffoldKey.currentState!
.isEndDrawerOpen) {
Navigator.pop(context);
}
},
),
),
],
),
),
),
]
.divide(const SizedBox(width: 0.0))
.around(const SizedBox(width: 0.0)),
@ -525,59 +514,19 @@ class _HomePageWidgetState extends State<HomePageWidget> {
),
),
Expanded(
child: wrapWithModel(
model: _model.menuComponentModel,
updateCallback: () => setState(() {}),
child: MenuComponentWidget(
expandable: false,
style: MenuView.list,
item: MenuItem.card,
child: SingleChildScrollView(
child: wrapWithModel(
model: _model.menuComponentModel,
updateCallback: () => setState(() {}),
child: const MenuComponentWidget(
expandable: false,
style: MenuView.list,
item: MenuItem.tile,
),
),
),
),
FFButtonWidget(
onPressed: () async {
AppState().deleteAll();
setState(() {});
context.goNamed(
'welcomePage',
extra: <String, dynamic>{
kTransitionInfoKey: const TransitionInfo(
hasTransition: true,
transitionType: PageTransitionType.scale,
alignment: Alignment.bottomCenter,
),
},
);
},
text: FFLocalizations.of(context).getText(
'xx0db4wi' /* Sair */,
),
options: FFButtonOptions(
height: 40.0,
padding:
const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
iconPadding:
const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
color: const Color(0x00D70000),
textStyle: FlutterFlowTheme.of(context).labelMedium.override(
fontFamily: 'Plus Jakarta Sans',
color: FlutterFlowTheme.of(context).primaryText,
fontSize: 14.0,
letterSpacing: 0.0,
fontWeight: FontWeight.w500,
useGoogleFonts: GoogleFonts.asMap()
.containsKey('Plus Jakarta Sans'),
),
elevation: 0.0,
borderSide: const BorderSide(
width: 0.0,
),
borderRadius: BorderRadius.circular(50.0),
),
),
].addToEnd(const SizedBox(height: 64.0)),
],
),
),
),

View File

@ -0,0 +1,32 @@
import 'package:flutter/material.dart';
class NoConnectionScreen extends StatelessWidget {
const NoConnectionScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Sem Conexão'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.signal_wifi_off, size: 80),
const SizedBox(height: 20),
const Text(
'Você está offline. Verifique sua conexão com a internet.'),
const SizedBox(height: 20),
ElevatedButton(
onPressed: () {
// Tente reconectar
},
child: const Text('Tentar Novamente'),
),
],
),
),
);
}
}

View File

@ -1,11 +1,8 @@
import 'dart:developer';
import 'package:hub/app_state.dart';
import 'package:hub/backend/api_requests/api_calls.dart';
import 'package:flutter/material.dart';
import 'package:hub/backend/api_requests/api_calls.dart';
import 'package:hub/components/templates_components/change_passs_qr_code_pass_key_template_component/change_pass_widget.dart';
import 'package:hub/flutter_flow/flutter_flow_icon_button.dart';
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
import 'package:hub/flutter_flow/flutter_flow_widgets.dart';
@ -316,8 +313,18 @@ class PreferencesPageModel with ChangeNotifier {
AppState().deleteCliUUID();
AppState().deleteLocal();
AppState().deleteOwnerUUID();
Navigator.pop(context);
Navigator.pop(context);
// Navigator.pop(context);
// Navigator.pop(context, true);
context.goNamed(
'homePage',
extra: <String, dynamic>{
kTransitionInfoKey: const TransitionInfo(
hasTransition: true,
transitionType: PageTransitionType.scale,
alignment: Alignment.bottomCenter,
),
},
);
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
@ -734,6 +741,30 @@ class PreferencesPageModel with ChangeNotifier {
);
}
void logout(BuildContext context) async {
showAlertDialog(
context,
'Logout',
FFLocalizations.of(context).getVariableText(
enText: 'Are you sure you want to logout?',
ptText: 'Tem certeza',
), () async {
AppState().deleteAll();
// setState(() {});
context.goNamed(
'welcomePage',
extra: <String, dynamic>{
kTransitionInfoKey: const TransitionInfo(
hasTransition: true,
transitionType: PageTransitionType.scale,
alignment: Alignment.bottomCenter,
),
},
);
});
}
@override
void dispose() {
unfocusNode.dispose();

View File

@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:hub/app_state.dart';
import 'package:hub/flutter_flow/flutter_flow_icon_button.dart';
@ -73,7 +72,7 @@ class PreferencesPageWidget extends StatelessWidget {
// childAspectRatio: 1.0,
// mainAxisExtent: 100.0,
// ),
itemCount: 7, // Assuming 4 items for simplicity
itemCount: 8, // Assuming 4 items for simplicity
padding: const EdgeInsets.symmetric(horizontal: 20.0),
physics: const AlwaysScrollableScrollPhysics(),
itemBuilder: (BuildContext context, int index) {
@ -147,7 +146,7 @@ class PreferencesPageWidget extends StatelessWidget {
case 5:
icon = Icons.landscape;
onPressed = () => model.localUnlink(context);
isEnabled = true;
isEnabled = false;
content = FFLocalizations.of(context).getVariableText(
ptText: 'Desative para se desvincular do local selecionado',
enText: 'Enable to unlink from the selected location',
@ -156,13 +155,23 @@ class PreferencesPageWidget extends StatelessWidget {
case 6:
icon = Icons.delete;
onPressed = () => model.deleteAccount(context);
isEnabled = true;
isEnabled = false;
content = FFLocalizations.of(context).getVariableText(
ptText:
'Delete sua conta e todos os dados associados permanentemente.',
enText: 'Delete your account and all associated data permanently.',
);
break;
case 7:
icon = Icons.logout;
onPressed = () => model.logout(context);
isEnabled = false;
content = FFLocalizations.of(context).getVariableText(
ptText: 'Sair da conta atual e voltar para a tela de login.',
enText:
'Log out of the current account and return to the login screen.',
);
break;
default:
throw Exception('Invalid index: $index');
}

View File

@ -1114,9 +1114,7 @@ Widget scheduleVisit(BuildContext context,
if (value.contains('{') &&
value.contains('}') &&
value.contains(':')) {
// log("Valor e um Objeto | Usuário Escolheu o Motivo ${_model.dropDownValue1}");
} else {
// log("Valor e uma String | Usuário Escolheu o Motivo ${_model.dropDownValue1}");
if (reasonsJsonList != null &&
reasonsJsonList.isNotEmpty) {
var item = reasonsJsonList.where(

View File

@ -1,4 +1,3 @@
import 'package:flutter/material.dart';
import 'package:hub/components/molecular_components/throw_exception/throw_exception_widget.dart';
import 'package:hub/flutter_flow/flutter_flow_util.dart';
@ -8,24 +7,34 @@ class DialogUtil {
static const double _height = 350;
static Future<dynamic> errorDefault(BuildContext context) {
return error(context, FFLocalizations.of(context).getVariableText(
ptText: "Falha ao efetuar operação, Tente Novamente mais tarde.",
enText: "Failed to perform operation, please try again later."
));
return error(
context,
FFLocalizations.of(context).getVariableText(
ptText: "Falha ao efetuar operação, Tente Novamente mais tarde.",
enText: "Failed to perform operation, please try again later."));
}
static Future<dynamic> warningDefault(BuildContext context) {
return warning(
context,
FFLocalizations.of(context).getVariableText(
ptText: "Atenção, algo deu errado. Tente novamente mais tarde.",
enText: "Warning, something went wrong. Try again later."))
.then((value) => value);
}
static Future<dynamic> error(BuildContext context, String message) async {
return await showDialog(
context: context,
builder: (context) {
return Dialog(
child: SizedBox(
height: _height,
child: Padding(padding: MediaQuery.viewInsetsOf(context), child: ThrowExceptionWidget(msg: message, type: EnumThrowException.error))
)
);
}
);
context: context,
builder: (context) {
return Dialog(
child: SizedBox(
height: _height,
child: Padding(
padding: MediaQuery.viewInsetsOf(context),
child: ThrowExceptionWidget(
msg: message, type: EnumThrowException.error))));
});
}
static Future<dynamic> warning(BuildContext context, String message) async {
@ -35,11 +44,11 @@ class DialogUtil {
return Dialog(
child: SizedBox(
height: _height,
child: Padding(padding: MediaQuery.viewInsetsOf(context), child: ThrowExceptionWidget(msg: message, type: EnumThrowException.warning))
)
);
}
);
child: Padding(
padding: MediaQuery.viewInsetsOf(context),
child: ThrowExceptionWidget(
msg: message, type: EnumThrowException.warning))));
});
}
static Future<dynamic> success(BuildContext context, String message) async {
@ -49,11 +58,10 @@ class DialogUtil {
return Dialog(
child: SizedBox(
height: _height,
child: Padding(padding: MediaQuery.viewInsetsOf(context), child: ThrowExceptionWidget(msg: message, type: EnumThrowException.success))
)
);
}
);
child: Padding(
padding: MediaQuery.viewInsetsOf(context),
child: ThrowExceptionWidget(
msg: message, type: EnumThrowException.success))));
});
}
}
}

View File

@ -66,7 +66,7 @@ packages:
source: hosted
version: "2.0.3"
bloc:
dependency: transitive
dependency: "direct main"
description:
name: bloc
sha256: "106842ad6569f0b60297619e9e0b1885c2fb9bf84812935490e6c5275777804e"