170 lines
4.9 KiB
Dart
170 lines
4.9 KiB
Dart
|
|
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/components/templates_components/change_passs_qr_code_pass_key_template_component/change_pass_widget.dart';
|
|
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
|
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
|
import 'package:hub/flutter_flow/nav/nav.dart';
|
|
|
|
class PreferencesPageModel with ChangeNotifier {
|
|
final unfocusNode = FocusNode();
|
|
|
|
|
|
Future<void> toggleFingerprint(BuildContext context) async {
|
|
|
|
// FFAppState().checkBiometrics()
|
|
// .then((value) => FFAppState().authenticateBiometric()
|
|
// .then( (value) {
|
|
// FFAppState().fingerprint = !FFAppState().fingerprint;
|
|
|
|
// })
|
|
// .whenComplete(() => notifyListeners()));
|
|
|
|
if(FFAppState().fingerprint) {
|
|
FFAppState().fingerprint = false;
|
|
FFAppState().deleteFingerprintPass();
|
|
notifyListeners();
|
|
} else {
|
|
await showModalBottomSheet(
|
|
isScrollControlled: true,
|
|
backgroundColor: Colors.transparent,
|
|
useSafeArea: true,
|
|
context: context,
|
|
builder: (context) {
|
|
return Padding(
|
|
padding:
|
|
MediaQuery.viewInsetsOf(context),
|
|
child:
|
|
PassKeyTemplateWidget(
|
|
toggleActionStatus: (key) async {
|
|
log(key);
|
|
FFAppState().fingerprintPass = key;
|
|
FFAppState().fingerprint = true;
|
|
},
|
|
),
|
|
);
|
|
},
|
|
).whenComplete(() => notifyListeners());
|
|
}
|
|
|
|
}
|
|
|
|
void enablePerson(BuildContext context) {
|
|
|
|
notifyListeners();
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(FFAppState().userDevUUID, style: TextStyle(color: FlutterFlowTheme.of(context).info) ),
|
|
backgroundColor: FlutterFlowTheme.of(context).primary,
|
|
duration: const Duration(seconds: 1),
|
|
behavior: SnackBarBehavior.floating,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(30),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void toggleNotify() {
|
|
FFAppState().notify = !FFAppState().notify;
|
|
PhpGroup.changeNotifica.call(
|
|
userUUID: FFAppState().userUUID,
|
|
devUUID: FFAppState().devUUID,
|
|
cliID: FFAppState().cliUUID,
|
|
atividade: 'updVisitado',
|
|
notifica: FFAppState().notify ? 'S' : 'N',
|
|
);
|
|
notifyListeners();
|
|
}
|
|
|
|
void localLogout(){
|
|
PhpGroup.resopndeVinculo.call(
|
|
userUUID: FFAppState().userUUID,
|
|
devUUID: FFAppState().devUUID,
|
|
cliID: FFAppState().cliUUID,
|
|
tarefa: 'I',
|
|
);
|
|
notifyListeners();
|
|
}
|
|
|
|
void deleteAccount(BuildContext context) {
|
|
FFAppState().deleteAll();
|
|
FFAppState().isLogged = false;
|
|
context.goNamed(
|
|
'welcomePage',
|
|
extra: <String, dynamic>{
|
|
kTransitionInfoKey: const TransitionInfo(
|
|
hasTransition: true,
|
|
transitionType: PageTransitionType.scale,
|
|
alignment: Alignment.bottomCenter,
|
|
),
|
|
},
|
|
);
|
|
}
|
|
|
|
|
|
Future<void> togglePass(BuildContext context) async {
|
|
debugPrint('pass: ${FFAppState().pass}');
|
|
if(FFAppState().pass) {
|
|
FFAppState().pass = false;
|
|
FFAppState().deleteAccessPass();
|
|
notifyListeners();
|
|
} else {
|
|
await showModalBottomSheet(
|
|
isScrollControlled: true,
|
|
backgroundColor: Colors.transparent,
|
|
useSafeArea: true,
|
|
context: context,
|
|
builder: (context) {
|
|
return Padding(
|
|
padding:
|
|
MediaQuery.viewInsetsOf(context),
|
|
child:
|
|
PassKeyTemplateWidget(
|
|
toggleActionStatus: (key) async {
|
|
FFAppState().accessPass = key;
|
|
notifyListeners();
|
|
debugPrint('key: $key');
|
|
await PhpGroup.changePass.call(
|
|
userUUID: FFAppState().userUUID,
|
|
devUUID: FFAppState().devUUID,
|
|
cliID: FFAppState().cliUUID,
|
|
atividade: 'updVisitado',
|
|
newSenha: FFAppState().accessPass,
|
|
)
|
|
.then((value) {
|
|
FFAppState().pass = true;
|
|
// var error = jsonDecode(value.jsonBody['error'].toString());
|
|
// log('${jsonDecode(value.jsonBody['error'].toString())}');
|
|
if(jsonDecode(value.jsonBody['error'].toString()) == false) {
|
|
FFAppState().pass = true;
|
|
} else {
|
|
FFAppState().pass = false;
|
|
}
|
|
})
|
|
.onError((error, StackTrace) {
|
|
FFAppState().pass = false;
|
|
log(error.toString());
|
|
log(StackTrace.toString());
|
|
})
|
|
.whenComplete(() => notifyListeners());
|
|
},
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
super.dispose();
|
|
}
|
|
} |