Bug fixes

This commit is contained in:
Abdullah Alassaf
2024-06-30 15:10:01 +03:00
parent 9b37545691
commit 288ea6a1e2
8 changed files with 112 additions and 97 deletions

View File

@ -253,7 +253,7 @@ class AuthCubit extends Cubit<AuthState> {
emit(AuthLoginError(message: 'Something went wrong')); emit(AuthLoginError(message: 'Something went wrong'));
} }
} catch (failure) { } catch (failure) {
emit(AuthLoginError(message: failure.toString())); emit(AuthLoginError(message: 'Something went wrong'));
return; return;
} }
} }
@ -268,7 +268,7 @@ class AuthCubit extends Cubit<AuthState> {
(Route route) => false, (Route route) => false,
); );
} catch (failure) { } catch (failure) {
emit(AuthLogoutError(message: failure.toString())); emit(AuthLogoutError(message: 'Something went wrong'));
return; return;
} }
} }

View File

@ -19,7 +19,7 @@ import 'package:syncrow_app/utils/resource_manager/font_manager.dart';
class OtpView extends StatefulWidget { class OtpView extends StatefulWidget {
final bool isForgetPage; final bool isForgetPage;
const OtpView({super.key,this.isForgetPage=false}); const OtpView({super.key, this.isForgetPage = false});
@override @override
State<OtpView> createState() => _OtpViewState(); State<OtpView> createState() => _OtpViewState();
@ -121,9 +121,13 @@ class _OtpViewState extends State<OtpView> {
if (state is AuthOtpSuccess) { if (state is AuthOtpSuccess) {
Navigator.of(context).pop(); Navigator.of(context).pop();
Navigator.of(context).pop(); Navigator.of(context).pop();
widget.isForgetPage? widget.isForgetPage
Navigator.push(context, MaterialPageRoute(builder: (context) => const CreateNewPasswordPage(),)): ? Navigator.push(
Navigator.popAndPushNamed(context, Routes.homeRoute); context,
MaterialPageRoute(
builder: (context) => const CreateNewPasswordPage(),
))
: Navigator.popAndPushNamed(context, Routes.homeRoute);
} }
if (state is ResendOtpSuccess) { if (state is ResendOtpSuccess) {
startTimer(30); startTimer(30);
@ -194,8 +198,7 @@ class _OtpViewState extends State<OtpView> {
}, },
child: RichText( child: RichText(
text: TextSpan( text: TextSpan(
text: text: 'We have sent the verification code to',
'We have sent the verification codeWe have sent the verification code to',
style: Theme.of(context).textTheme.titleSmall!.copyWith( style: Theme.of(context).textTheme.titleSmall!.copyWith(
color: Colors.white, color: Colors.white,
fontWeight: FontsManager.regular, fontWeight: FontsManager.regular,

View File

@ -10,6 +10,7 @@ class DeviceModel {
String? model; String? model;
String? name; String? name;
String? icon; String? icon;
String? type;
bool? isOnline; bool? isOnline;
List<StatusModel> status = []; List<StatusModel> status = [];
String? productName; String? productName;
@ -19,8 +20,8 @@ class DeviceModel {
DeviceType? productType; DeviceType? productType;
bool isSelected = false; bool isSelected = false;
late List<FunctionModel> functions; late List<FunctionModel> functions;
DeviceModel({ DeviceModel(
this.activeTime, {this.activeTime,
// this.id, // this.id,
this.localKey, this.localKey,
this.model, this.model,
@ -33,7 +34,7 @@ class DeviceModel {
this.uuid, this.uuid,
this.productType, this.productType,
this.icon, this.icon,
}) { this.type}) {
functions = getFunctions(productType!); functions = getFunctions(productType!);
} }
@ -43,8 +44,7 @@ class DeviceModel {
if (type == DeviceType.LightBulb) { if (type == DeviceType.LightBulb) {
tempIcon = Assets.assetsIconsLight; tempIcon = Assets.assetsIconsLight;
} else if (type == DeviceType.CeilingSensor || } else if (type == DeviceType.CeilingSensor || type == DeviceType.WallSensor) {
type == DeviceType.WallSensor) {
tempIcon = Assets.assetsIconsSensors; tempIcon = Assets.assetsIconsSensors;
} else if (type == DeviceType.AC) { } else if (type == DeviceType.AC) {
tempIcon = Assets.assetsIconsAC; tempIcon = Assets.assetsIconsAC;
@ -72,6 +72,7 @@ class DeviceModel {
updateTime: json['updateTime'], updateTime: json['updateTime'],
uuid: json['uuid'], uuid: json['uuid'],
productType: type, productType: type,
type: json['productType'],
status: [], status: [],
); );
} }
@ -92,6 +93,5 @@ class DeviceModel {
}; };
} }
List<FunctionModel> getFunctions(DeviceType type) => List<FunctionModel> getFunctions(DeviceType type) => devicesFunctionsMap[productType] ?? [];
devicesFunctionsMap[productType] ?? [];
} }

View File

@ -160,20 +160,20 @@ class CeilingSensorInterface extends StatelessWidget {
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Column( Flexible(
child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
const Flexible(child: BodySmall(text: 'Sports Para')), const BodySmall(text: 'Sports Para'),
Flexible( BodyLarge(
child: BodyLarge(
text: '0', text: '0',
style: context.bodyLarge.copyWith( style: context.bodyLarge.copyWith(
fontWeight: FontsManager.bold, fontWeight: FontsManager.bold,
), ),
), ),
),
], ],
), ),
),
Padding( Padding(
padding: const EdgeInsets.symmetric(horizontal: 10), padding: const EdgeInsets.symmetric(horizontal: 10),
child: Container( child: Container(
@ -182,25 +182,24 @@ class CeilingSensorInterface extends StatelessWidget {
color: ColorsManager.greyColor, color: ColorsManager.greyColor,
), ),
), ),
Column( Flexible(
child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
const Flexible( const BodySmall(
child: BodySmall(
text: 'Detection Range', text: 'Detection Range',
textOverflow: TextOverflow.ellipsis, textOverflow: TextOverflow.ellipsis,
)), ),
Flexible( BodyLarge(
child: BodyLarge(
text: '0.0M', text: '0.0M',
textOverflow: TextOverflow.ellipsis, textOverflow: TextOverflow.ellipsis,
style: context.bodyLarge.copyWith( style: context.bodyLarge.copyWith(
fontWeight: FontsManager.bold, fontWeight: FontsManager.bold,
), ),
), ),
),
], ],
), ),
),
Padding( Padding(
padding: const EdgeInsets.symmetric(horizontal: 10), padding: const EdgeInsets.symmetric(horizontal: 10),
child: Container( child: Container(
@ -209,25 +208,24 @@ class CeilingSensorInterface extends StatelessWidget {
color: ColorsManager.greyColor, color: ColorsManager.greyColor,
), ),
), ),
Column( Flexible(
child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
const Flexible( const BodySmall(
child: BodySmall(
text: 'Movement', text: 'Movement',
textOverflow: TextOverflow.ellipsis, textOverflow: TextOverflow.ellipsis,
)), ),
Flexible( BodyLarge(
child: BodyLarge(
text: 'none', text: 'none',
textOverflow: TextOverflow.ellipsis, textOverflow: TextOverflow.ellipsis,
style: context.bodyLarge.copyWith( style: context.bodyLarge.copyWith(
fontWeight: FontsManager.bold, fontWeight: FontsManager.bold,
), ),
), ),
),
], ],
), ),
),
], ],
)), )),
const SizedBox( const SizedBox(

View File

@ -55,7 +55,7 @@ class RoomPageSwitch extends StatelessWidget {
Flexible( Flexible(
child: FittedBox( child: FittedBox(
child: Text( child: Text(
device.name ?? "", device.type ?? "",
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
maxLines: 2, maxLines: 2,
style: context.bodyLarge.copyWith( style: context.bodyLarge.copyWith(
@ -109,8 +109,7 @@ void showDeviceInterface(DeviceModel device, BuildContext context) {
Navigator.push( Navigator.push(
context, context,
PageRouteBuilder( PageRouteBuilder(
pageBuilder: (context, animation1, animation2) => DoorInterface(doorLock: device)) pageBuilder: (context, animation1, animation2) => DoorInterface(doorLock: device)));
);
// navigateToInterface(DoorInterface(doorlock: device), context); // navigateToInterface(DoorInterface(doorlock: device), context);
break; break;
case DeviceType.Gateway: case DeviceType.Gateway:

View File

@ -48,6 +48,7 @@ class TimerScreen extends StatelessWidget {
builder: (context, state) { builder: (context, state) {
Duration duration = Duration.zero; Duration duration = Duration.zero;
int countNum = 0; int countNum = 0;
int tabNum = 0;
if (state is UpdateTimerState) { if (state is UpdateTimerState) {
countNum = state.seconds; countNum = state.seconds;
} else if (state is TimerRunInProgress) { } else if (state is TimerRunInProgress) {
@ -57,6 +58,10 @@ class TimerScreen extends StatelessWidget {
} else if (state is LoadingNewSate) { } else if (state is LoadingNewSate) {
countNum = 0; countNum = 0;
} }
if (state is ChangeSlidingSegmentState) {
tabNum = state.value;
}
return PopScope( return PopScope(
canPop: false, canPop: false,
onPopInvoked: (didPop) { onPopInvoked: (didPop) {
@ -129,6 +134,7 @@ class TimerScreen extends StatelessWidget {
}, },
), ),
), ),
if (tabNum == 0)
countNum > 0 countNum > 0
? BodyLarge( ? BodyLarge(
text: _formatDuration(countNum), text: _formatDuration(countNum),
@ -141,6 +147,7 @@ class TimerScreen extends StatelessWidget {
duration = newDuration; duration = newDuration;
}, },
), ),
if (tabNum == 0)
GestureDetector( GestureDetector(
onTap: () { onTap: () {
if (state is LoadingNewSate) { if (state is LoadingNewSate) {
@ -149,7 +156,8 @@ class TimerScreen extends StatelessWidget {
if (countNum > 0) { if (countNum > 0) {
BlocProvider.of<ThreeGangBloc>(context).add( BlocProvider.of<ThreeGangBloc>(context).add(
SetCounterValue( SetCounterValue(
deviceCode: deviceCode, duration: Duration.zero)); deviceCode: deviceCode,
duration: Duration.zero));
} else if (duration != Duration.zero) { } else if (duration != Duration.zero) {
BlocProvider.of<ThreeGangBloc>(context).add( BlocProvider.of<ThreeGangBloc>(context).add(
SetCounterValue( SetCounterValue(

View File

@ -20,7 +20,7 @@ class AssignDeviceView extends StatelessWidget {
child: BlocConsumer<ManageUnitBloc, ManageUnitState>(listener: (context, state) { child: BlocConsumer<ManageUnitBloc, ManageUnitState>(listener: (context, state) {
if (state is FetchDeviceByRoomIdState) { if (state is FetchDeviceByRoomIdState) {
if (state.allDevices.isEmpty) { if (state.allDevices.isEmpty) {
CustomSnackBar.displaySnackBar('No devices available for this user'); CustomSnackBar.displaySnackBar('You do not have the permission to assign devices');
Navigator.of(context).pop(); Navigator.of(context).pop();
} }
} }

View File

@ -63,9 +63,16 @@ class StringHelpers {
} }
static String toTitleCase(String text) { static String toTitleCase(String text) {
return text if (text.contains(' ')) {
//remove empty elements
String title = text.split(' ').where((element) => element.isNotEmpty).join(' ');
String result = title
.split(' ') .split(' ')
.map((word) => word[0].toUpperCase() + word.substring(1)) .map((element) => element[0].toUpperCase() + element.substring(1))
.join(' '); .join(' ');
return result;
} else {
return text.toUpperCase();
}
} }
} }