mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
push ac function state selection
This commit is contained in:
@ -6,7 +6,7 @@ import 'package:go_router/go_router.dart';
|
||||
import 'package:syncrow_web/pages/auth/bloc/auth_bloc.dart';
|
||||
import 'package:syncrow_web/pages/home/bloc/home_bloc.dart';
|
||||
import 'package:syncrow_web/pages/home/bloc/home_event.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/visitor_password/bloc/visitor_password_bloc.dart';
|
||||
import 'package:syncrow_web/services/locator.dart';
|
||||
import 'package:syncrow_web/utils/app_routes.dart';
|
||||
|
148
lib/pages/routiens/bloc/functions_bloc/functions_bloc_bloc.dart
Normal file
148
lib/pages/routiens/bloc/functions_bloc/functions_bloc_bloc.dart
Normal file
@ -0,0 +1,148 @@
|
||||
import 'package:bloc/bloc.dart';
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:syncrow_web/pages/routiens/models/device_functions.dart';
|
||||
|
||||
part 'functions_bloc_event.dart';
|
||||
part 'functions_bloc_state.dart';
|
||||
|
||||
class FunctionBloc extends Bloc<FunctionBlocEvent, FunctionBlocState> {
|
||||
FunctionBloc() : super(const FunctionBlocState()) {
|
||||
on<InitializeFunctions>(_onInitializeFunctions);
|
||||
on<AddFunction>(_onAddFunction);
|
||||
on<UpdateFunction>(_onUpdateFunctions);
|
||||
on<UpdateFunctionValue>(_onUpdateFunctionValue);
|
||||
on<UpdateFunctionCondition>(_onUpdateFunctionCondition);
|
||||
on<RemoveFunction>(_onRemoveFunction);
|
||||
}
|
||||
|
||||
void _onAddFunction(AddFunction event, Emitter<FunctionBlocState> emit) {
|
||||
debugPrint('Adding function: ${event.functionData.function}');
|
||||
final functions = List<DeviceFunctionData>.from(state.functions);
|
||||
|
||||
// Find existing function data
|
||||
final existingIndex = functions.indexWhere(
|
||||
(f) => f.function == event.functionData.function,
|
||||
);
|
||||
|
||||
// If function exists, preserve its value and condition
|
||||
if (existingIndex != -1) {
|
||||
final existingData = functions[existingIndex];
|
||||
functions[existingIndex] = DeviceFunctionData(
|
||||
entityId: event.functionData.entityId,
|
||||
function: event.functionData.function,
|
||||
operationName: event.functionData.operationName,
|
||||
value: existingData.value, // Preserve the existing value
|
||||
condition: existingData.condition, // Preserve the existing condition
|
||||
);
|
||||
} else {
|
||||
functions.add(event.functionData);
|
||||
}
|
||||
|
||||
debugPrint('Functions after add: $functions');
|
||||
emit(state.copyWith(
|
||||
functions: functions,
|
||||
selectedFunction: event.functionData.function,
|
||||
));
|
||||
}
|
||||
|
||||
void _onUpdateFunctions(
|
||||
UpdateFunction event, Emitter<FunctionBlocState> emit) {
|
||||
final functions = state.functions.map((data) {
|
||||
return data.function == event.functionData.function
|
||||
? event.functionData
|
||||
: data;
|
||||
}).toList();
|
||||
|
||||
emit(state.copyWith(functions: functions));
|
||||
}
|
||||
|
||||
void _onUpdateFunctionValue(
|
||||
UpdateFunctionValue event,
|
||||
Emitter<FunctionBlocState> emit,
|
||||
) {
|
||||
debugPrint('Updating function value: ${event.function} -> ${event.value}');
|
||||
|
||||
// Create a new list to ensure state immutability
|
||||
final functions = List<DeviceFunctionData>.from(state.functions);
|
||||
|
||||
// Find the index of the function to update
|
||||
final functionIndex = functions.indexWhere(
|
||||
(data) => data.function == event.function,
|
||||
);
|
||||
|
||||
if (functionIndex != -1) {
|
||||
// Update the existing function data while preserving other fields
|
||||
final existingData = functions[functionIndex];
|
||||
functions[functionIndex] = DeviceFunctionData(
|
||||
entityId: existingData.entityId,
|
||||
function: existingData.function,
|
||||
operationName: existingData.operationName,
|
||||
value: event.value,
|
||||
condition: existingData.condition,
|
||||
);
|
||||
} else {
|
||||
// If function doesn't exist, add it
|
||||
functions.add(DeviceFunctionData(
|
||||
entityId: '',
|
||||
function: event.function,
|
||||
operationName: '',
|
||||
value: event.value,
|
||||
));
|
||||
}
|
||||
|
||||
debugPrint('Functions after update: $functions');
|
||||
emit(state.copyWith(functions: functions));
|
||||
}
|
||||
|
||||
void _onUpdateFunctionCondition(
|
||||
UpdateFunctionCondition event,
|
||||
Emitter<FunctionBlocState> emit,
|
||||
) {
|
||||
final functions = state.functions.map((data) {
|
||||
if (data.function == event.function) {
|
||||
return DeviceFunctionData(
|
||||
entityId: data.entityId,
|
||||
function: data.function,
|
||||
operationName: data.operationName,
|
||||
value: data.value,
|
||||
condition: event.condition,
|
||||
);
|
||||
}
|
||||
return data;
|
||||
}).toList();
|
||||
|
||||
emit(state.copyWith(functions: functions));
|
||||
}
|
||||
|
||||
void _onRemoveFunction(
|
||||
RemoveFunction event, Emitter<FunctionBlocState> emit) {
|
||||
final functions = state.functions
|
||||
.where((data) => data.function != event.functionCode)
|
||||
.toList();
|
||||
|
||||
emit(state.copyWith(
|
||||
functions: functions,
|
||||
selectedFunction: functions.isEmpty ? null : state.selectedFunction,
|
||||
));
|
||||
}
|
||||
|
||||
void _onInitializeFunctions(
|
||||
InitializeFunctions event,
|
||||
Emitter<FunctionBlocState> emit,
|
||||
) {
|
||||
emit(state.copyWith(functions: event.functions));
|
||||
}
|
||||
|
||||
DeviceFunctionData? getFunction(String functionCode) {
|
||||
return state.functions.firstWhere(
|
||||
(data) => data.function == functionCode,
|
||||
orElse: () => DeviceFunctionData(
|
||||
entityId: '',
|
||||
function: functionCode,
|
||||
operationName: '',
|
||||
value: null,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
part of 'functions_bloc_bloc.dart';
|
||||
|
||||
abstract class FunctionBlocEvent extends Equatable {
|
||||
const FunctionBlocEvent();
|
||||
|
||||
@override
|
||||
List<Object?> get props => [];
|
||||
}
|
||||
|
||||
class AddFunction extends FunctionBlocEvent {
|
||||
final DeviceFunctionData functionData;
|
||||
|
||||
const AddFunction({
|
||||
required this.functionData,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [functionData];
|
||||
}
|
||||
|
||||
class UpdateFunction extends FunctionBlocEvent {
|
||||
final DeviceFunctionData functionData;
|
||||
|
||||
const UpdateFunction(this.functionData);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [functionData];
|
||||
}
|
||||
|
||||
class UpdateFunctionValue extends FunctionBlocEvent {
|
||||
final String function;
|
||||
final dynamic value;
|
||||
|
||||
const UpdateFunctionValue({
|
||||
required this.function,
|
||||
required this.value,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [function, value];
|
||||
}
|
||||
|
||||
class UpdateFunctionCondition extends FunctionBlocEvent {
|
||||
final String function;
|
||||
final String condition;
|
||||
|
||||
const UpdateFunctionCondition({
|
||||
required this.function,
|
||||
required this.condition,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [function, condition];
|
||||
}
|
||||
|
||||
class RemoveFunction extends FunctionBlocEvent {
|
||||
final String functionCode;
|
||||
|
||||
const RemoveFunction(this.functionCode);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [functionCode];
|
||||
}
|
||||
|
||||
class InitializeFunctions extends FunctionBlocEvent {
|
||||
final List<DeviceFunctionData> functions;
|
||||
|
||||
const InitializeFunctions(this.functions);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [functions];
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
part of 'functions_bloc_bloc.dart';
|
||||
|
||||
class FunctionBlocState extends Equatable {
|
||||
final List<DeviceFunctionData> functions;
|
||||
final String? selectedFunction;
|
||||
|
||||
const FunctionBlocState({
|
||||
this.functions = const [],
|
||||
this.selectedFunction,
|
||||
});
|
||||
|
||||
FunctionBlocState copyWith({
|
||||
List<DeviceFunctionData>? functions,
|
||||
String? selectedFunction,
|
||||
}) {
|
||||
return FunctionBlocState(
|
||||
functions: functions ?? this.functions,
|
||||
selectedFunction: selectedFunction ?? this.selectedFunction,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
List<Object?> get props => [functions, selectedFunction];
|
||||
}
|
@ -6,6 +6,8 @@ import 'package:syncrow_web/pages/routiens/widgets/dialog_footer.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dialog_header.dart';
|
||||
import 'package:syncrow_web/utils/color_manager.dart';
|
||||
import 'package:syncrow_web/utils/extension/build_context_x.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/functions_bloc/functions_bloc_bloc.dart';
|
||||
|
||||
class ACHelper {
|
||||
static Future<Map<String, dynamic>?> showACFunctionsDialog(
|
||||
@ -13,97 +15,122 @@ class ACHelper {
|
||||
List<DeviceFunction<dynamic>> functions,
|
||||
) async {
|
||||
List<ACFunction> acFunctions = functions.whereType<ACFunction>().toList();
|
||||
final selectedFunctionNotifier = ValueNotifier<String?>(null);
|
||||
final selectedValueNotifier = ValueNotifier<dynamic>(null);
|
||||
final selectedConditionNotifier = ValueNotifier<String?>('==');
|
||||
final selectedConditionsNotifier =
|
||||
ValueNotifier<List<bool>>([false, true, false]);
|
||||
|
||||
// Initialize the FunctionBloc with existing functions
|
||||
final initialFunctions = acFunctions
|
||||
.map((f) => DeviceFunctionData(
|
||||
entityId: '',
|
||||
function: f.code,
|
||||
operationName: f.operationName,
|
||||
value: null,
|
||||
))
|
||||
.toList();
|
||||
|
||||
return showDialog<Map<String, dynamic>?>(
|
||||
context: context,
|
||||
builder: (BuildContext context) {
|
||||
return ValueListenableBuilder<String?>(
|
||||
valueListenable: selectedFunctionNotifier,
|
||||
builder: (context, selectedFunction, _) {
|
||||
return AlertDialog(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
content: Container(
|
||||
width: selectedFunction != null ? 600 : 360,
|
||||
height: 450,
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
),
|
||||
padding: const EdgeInsets.only(top: 20),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
const DialogHeader('AC Functions'),
|
||||
Expanded(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
// Function list
|
||||
SizedBox(
|
||||
width: selectedFunction != null ? 320 : 360,
|
||||
child: _buildFunctionsList(
|
||||
context,
|
||||
acFunctions,
|
||||
selectedFunctionNotifier,
|
||||
),
|
||||
),
|
||||
// Value selector
|
||||
if (selectedFunction != null)
|
||||
Expanded(
|
||||
child: _buildValueSelector(
|
||||
return BlocProvider(
|
||||
create: (_) =>
|
||||
FunctionBloc()..add(InitializeFunctions(initialFunctions)),
|
||||
child: AlertDialog(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
content: BlocBuilder<FunctionBloc, FunctionBlocState>(
|
||||
builder: (context, state) {
|
||||
debugPrint(
|
||||
'Current state - Selected: ${state.selectedFunction}, Functions: ${state.functions}');
|
||||
|
||||
final selectedFunction = state.selectedFunction;
|
||||
final selectedFunctionData = selectedFunction != null
|
||||
? state.functions.firstWhere(
|
||||
(f) => f.function == selectedFunction,
|
||||
orElse: () => DeviceFunctionData(
|
||||
entityId: '',
|
||||
function: selectedFunction,
|
||||
operationName: '',
|
||||
value: null,
|
||||
),
|
||||
)
|
||||
: null;
|
||||
|
||||
return Container(
|
||||
width: selectedFunction != null ? 600 : 360,
|
||||
height: 450,
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
),
|
||||
padding: const EdgeInsets.only(top: 20),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
const DialogHeader('AC Functions'),
|
||||
Expanded(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
// Function list
|
||||
SizedBox(
|
||||
width: selectedFunction != null ? 320 : 360,
|
||||
child: _buildFunctionsList(
|
||||
context,
|
||||
selectedFunction,
|
||||
selectedValueNotifier,
|
||||
selectedConditionNotifier,
|
||||
selectedConditionsNotifier,
|
||||
acFunctions,
|
||||
(functionCode) =>
|
||||
context.read<FunctionBloc>().add(
|
||||
AddFunction(
|
||||
functionData: DeviceFunctionData(
|
||||
entityId: '',
|
||||
function: functionCode,
|
||||
operationName: '',
|
||||
value: null,
|
||||
)),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
// Value selector
|
||||
if (selectedFunction != null)
|
||||
Expanded(
|
||||
child: _buildValueSelector(
|
||||
context,
|
||||
selectedFunction,
|
||||
selectedFunctionData,
|
||||
(value) => context.read<FunctionBloc>().add(
|
||||
UpdateFunctionValue(
|
||||
function: selectedFunction,
|
||||
value: value,
|
||||
),
|
||||
),
|
||||
(condition) =>
|
||||
context.read<FunctionBloc>().add(
|
||||
UpdateFunctionCondition(
|
||||
function: selectedFunction,
|
||||
condition: condition,
|
||||
),
|
||||
),
|
||||
acFunctions,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
DialogFooter(
|
||||
onCancel: () {
|
||||
selectedFunctionNotifier.dispose();
|
||||
selectedValueNotifier.dispose();
|
||||
selectedConditionNotifier.dispose();
|
||||
selectedConditionsNotifier.dispose();
|
||||
Navigator.pop(context);
|
||||
},
|
||||
onConfirm: selectedFunctionNotifier.value != null &&
|
||||
selectedValueNotifier.value != null
|
||||
? () {
|
||||
selectedFunctionNotifier.dispose();
|
||||
selectedValueNotifier.dispose();
|
||||
selectedConditionNotifier.dispose();
|
||||
selectedConditionsNotifier.dispose();
|
||||
Navigator.pop(context, {
|
||||
'function': selectedFunctionNotifier.value,
|
||||
'value': selectedValueNotifier.value,
|
||||
'condition':
|
||||
selectedConditionNotifier.value ?? "==",
|
||||
});
|
||||
}
|
||||
: null,
|
||||
isConfirmEnabled: selectedFunction != null,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
DialogFooter(
|
||||
onCancel: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
onConfirm: selectedFunction != null &&
|
||||
selectedFunctionData?.value != null
|
||||
? () {}
|
||||
: null,
|
||||
isConfirmEnabled: selectedFunction != null,
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
).then((value) {
|
||||
selectedFunctionNotifier.dispose();
|
||||
selectedValueNotifier.dispose();
|
||||
selectedConditionNotifier.dispose();
|
||||
selectedConditionsNotifier.dispose();
|
||||
return value;
|
||||
});
|
||||
}
|
||||
@ -112,7 +139,7 @@ class ACHelper {
|
||||
static Widget _buildFunctionsList(
|
||||
BuildContext context,
|
||||
List<ACFunction> acFunctions,
|
||||
ValueNotifier<String?> selectedFunctionNotifier,
|
||||
Function(String) onFunctionSelected,
|
||||
) {
|
||||
return ListView.separated(
|
||||
shrinkWrap: false,
|
||||
@ -146,7 +173,7 @@ class ACHelper {
|
||||
size: 16,
|
||||
color: ColorsManager.textGray,
|
||||
),
|
||||
onTap: () => selectedFunctionNotifier.value = function.code,
|
||||
onTap: () => onFunctionSelected(function.code),
|
||||
);
|
||||
},
|
||||
);
|
||||
@ -156,60 +183,57 @@ class ACHelper {
|
||||
static Widget _buildValueSelector(
|
||||
BuildContext context,
|
||||
String selectedFunction,
|
||||
ValueNotifier<dynamic> selectedValueNotifier,
|
||||
ValueNotifier<String?> selectedConditionNotifier,
|
||||
ValueNotifier<List<bool>> selectedConditionsNotifier,
|
||||
DeviceFunctionData? selectedFunctionData,
|
||||
Function(dynamic) onValueChanged,
|
||||
Function(String) onConditionChanged,
|
||||
List<ACFunction> acFunctions,
|
||||
) {
|
||||
// Handle temperature functions
|
||||
if (selectedFunction == 'temp_set' || selectedFunction == 'temp_current') {
|
||||
// Initialize with 20°C (200 in internal representation)
|
||||
if (selectedValueNotifier.value == null ||
|
||||
selectedValueNotifier.value is! int) {
|
||||
selectedValueNotifier.value = 200;
|
||||
}
|
||||
final initialValue = selectedFunctionData?.value ?? 200;
|
||||
return _buildTemperatureSelector(
|
||||
context,
|
||||
selectedValueNotifier,
|
||||
selectedConditionNotifier,
|
||||
selectedConditionsNotifier,
|
||||
initialValue,
|
||||
selectedFunctionData?.condition,
|
||||
onValueChanged,
|
||||
onConditionChanged,
|
||||
);
|
||||
}
|
||||
|
||||
// Handle other functions
|
||||
final selectedFn =
|
||||
acFunctions.firstWhere((f) => f.code == selectedFunction);
|
||||
final values = selectedFn.getOperationalValues();
|
||||
|
||||
// Don't set any default value for non-temperature functions
|
||||
return _buildOperationalValuesList(
|
||||
context,
|
||||
values,
|
||||
selectedValueNotifier,
|
||||
selectedFunctionData?.value,
|
||||
onValueChanged,
|
||||
);
|
||||
}
|
||||
|
||||
/// Build temperature selector for AC functions dialog
|
||||
static Widget _buildTemperatureSelector(
|
||||
BuildContext context,
|
||||
ValueNotifier<dynamic> selectedValueNotifier,
|
||||
ValueNotifier<String?> selectedConditionNotifier,
|
||||
ValueNotifier<List<bool>> selectedConditionsNotifier,
|
||||
dynamic initialValue,
|
||||
String? currentCondition,
|
||||
Function(dynamic) onValueChanged,
|
||||
Function(String) onConditionChanged,
|
||||
) {
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
_buildConditionToggle(
|
||||
context,
|
||||
selectedConditionNotifier,
|
||||
selectedConditionsNotifier,
|
||||
currentCondition,
|
||||
onConditionChanged,
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
_buildTemperatureDisplay(context, selectedValueNotifier),
|
||||
_buildTemperatureDisplay(context, initialValue),
|
||||
const SizedBox(height: 20),
|
||||
_buildTemperatureSlider(
|
||||
context,
|
||||
selectedValueNotifier,
|
||||
initialValue,
|
||||
onValueChanged,
|
||||
),
|
||||
],
|
||||
);
|
||||
@ -218,79 +242,61 @@ class ACHelper {
|
||||
/// Build condition toggle for AC functions dialog
|
||||
static Widget _buildConditionToggle(
|
||||
BuildContext context,
|
||||
ValueNotifier<String?> selectedConditionNotifier,
|
||||
ValueNotifier<List<bool>> selectedConditionsNotifier,
|
||||
String? currentCondition,
|
||||
Function(String) onConditionChanged,
|
||||
) {
|
||||
return ValueListenableBuilder<List<bool>>(
|
||||
valueListenable: selectedConditionsNotifier,
|
||||
builder: (context, selectedConditions, _) {
|
||||
return ToggleButtons(
|
||||
onPressed: (int index) {
|
||||
final newConditions = [false, false, false];
|
||||
newConditions[index] = true;
|
||||
selectedConditionsNotifier.value = newConditions;
|
||||
selectedConditionNotifier.value = index == 0
|
||||
? "<"
|
||||
: index == 1
|
||||
? "=="
|
||||
: ">";
|
||||
},
|
||||
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
||||
selectedBorderColor: ColorsManager.primaryColorWithOpacity,
|
||||
selectedColor: Colors.white,
|
||||
fillColor: ColorsManager.primaryColorWithOpacity,
|
||||
color: ColorsManager.primaryColorWithOpacity,
|
||||
constraints: const BoxConstraints(
|
||||
minHeight: 40.0,
|
||||
minWidth: 40.0,
|
||||
),
|
||||
isSelected: selectedConditions,
|
||||
children: const [Text("<"), Text("="), Text(">")],
|
||||
);
|
||||
final conditions = ["<", "==", ">"];
|
||||
|
||||
return ToggleButtons(
|
||||
onPressed: (int index) {
|
||||
onConditionChanged(conditions[index]);
|
||||
},
|
||||
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
||||
selectedBorderColor: ColorsManager.primaryColorWithOpacity,
|
||||
selectedColor: Colors.white,
|
||||
fillColor: ColorsManager.primaryColorWithOpacity,
|
||||
color: ColorsManager.primaryColorWithOpacity,
|
||||
constraints: const BoxConstraints(
|
||||
minHeight: 40.0,
|
||||
minWidth: 40.0,
|
||||
),
|
||||
isSelected:
|
||||
conditions.map((c) => c == (currentCondition ?? "==")).toList(),
|
||||
children: conditions.map((c) => Text(c)).toList(),
|
||||
);
|
||||
}
|
||||
|
||||
/// Build temperature display for AC functions dialog
|
||||
static Widget _buildTemperatureDisplay(
|
||||
BuildContext context, ValueNotifier<dynamic> selectedValueNotifier) {
|
||||
BuildContext context, dynamic initialValue) {
|
||||
return Container(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 10),
|
||||
decoration: BoxDecoration(
|
||||
color: ColorsManager.primaryColorWithOpacity.withOpacity(0.1),
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
child: ValueListenableBuilder(
|
||||
valueListenable: selectedValueNotifier,
|
||||
builder: (context, selectedValue, child) {
|
||||
return Text(
|
||||
'${(selectedValue ?? 200) / 10}°C',
|
||||
style: context.textTheme.headlineMedium!.copyWith(
|
||||
color: ColorsManager.primaryColorWithOpacity,
|
||||
),
|
||||
);
|
||||
},
|
||||
child: Text(
|
||||
'${(initialValue ?? 200) / 10}°C',
|
||||
style: context.textTheme.headlineMedium!.copyWith(
|
||||
color: ColorsManager.primaryColorWithOpacity,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
static Widget _buildTemperatureSlider(
|
||||
BuildContext context,
|
||||
ValueNotifier<dynamic> selectedValueNotifier,
|
||||
dynamic initialValue,
|
||||
Function(dynamic) onValueChanged,
|
||||
) {
|
||||
return ValueListenableBuilder(
|
||||
valueListenable: selectedValueNotifier,
|
||||
builder: (context, selectedValue, child) {
|
||||
final currentValue =
|
||||
selectedValue is int ? selectedValue.toDouble() : 200.0;
|
||||
return Slider(
|
||||
value: currentValue,
|
||||
min: 160,
|
||||
max: 300,
|
||||
divisions: 14,
|
||||
label: '${(currentValue / 10).toInt()}°C',
|
||||
onChanged: (value) => selectedValueNotifier.value = value.toInt(),
|
||||
);
|
||||
return Slider(
|
||||
value: initialValue is int ? initialValue.toDouble() : 200.0,
|
||||
min: 160,
|
||||
max: 300,
|
||||
divisions: 14,
|
||||
label: '${((initialValue ?? 200) / 10).toInt()}°C',
|
||||
onChanged: (value) {
|
||||
onValueChanged(value.toInt());
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -298,40 +304,44 @@ class ACHelper {
|
||||
static Widget _buildOperationalValuesList(
|
||||
BuildContext context,
|
||||
List<dynamic> values,
|
||||
ValueNotifier<dynamic> selectedValueNotifier,
|
||||
dynamic selectedValue,
|
||||
Function(dynamic) onValueChanged,
|
||||
) {
|
||||
return ValueListenableBuilder<dynamic>(
|
||||
valueListenable: selectedValueNotifier,
|
||||
builder: (context, selectedValue, _) {
|
||||
return ListView.builder(
|
||||
shrinkWrap: false,
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
itemCount: values.length,
|
||||
itemBuilder: (context, index) {
|
||||
final value = values[index];
|
||||
return ListTile(
|
||||
leading: SvgPicture.asset(
|
||||
value.icon,
|
||||
width: 24,
|
||||
height: 24,
|
||||
placeholderBuilder: (BuildContext context) => Container(
|
||||
width: 24,
|
||||
height: 24,
|
||||
color: Colors.transparent,
|
||||
),
|
||||
),
|
||||
title: Text(
|
||||
value.description,
|
||||
style: context.textTheme.bodyMedium,
|
||||
),
|
||||
trailing: Radio<dynamic>(
|
||||
value: value.value,
|
||||
groupValue: selectedValue,
|
||||
onChanged: (_) => selectedValueNotifier.value = value.value,
|
||||
activeColor: ColorsManager.primaryColorWithOpacity,
|
||||
),
|
||||
onTap: () => selectedValueNotifier.value = value.value,
|
||||
);
|
||||
return ListView.builder(
|
||||
shrinkWrap: false,
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
itemCount: values.length,
|
||||
itemBuilder: (context, index) {
|
||||
final value = values[index];
|
||||
final isSelected = selectedValue == value.value;
|
||||
return ListTile(
|
||||
leading: SvgPicture.asset(
|
||||
value.icon,
|
||||
width: 24,
|
||||
height: 24,
|
||||
placeholderBuilder: (BuildContext context) => Container(
|
||||
width: 24,
|
||||
height: 24,
|
||||
color: Colors.transparent,
|
||||
),
|
||||
),
|
||||
title: Text(
|
||||
value.description,
|
||||
style: context.textTheme.bodyMedium,
|
||||
),
|
||||
trailing: Icon(
|
||||
isSelected
|
||||
? Icons.radio_button_checked
|
||||
: Icons.radio_button_unchecked,
|
||||
size: 24,
|
||||
color: isSelected
|
||||
? ColorsManager.primaryColorWithOpacity
|
||||
: ColorsManager.textGray,
|
||||
),
|
||||
onTap: () {
|
||||
if (!isSelected) {
|
||||
onValueChanged(value.value);
|
||||
}
|
||||
},
|
||||
);
|
||||
},
|
||||
|
@ -58,4 +58,29 @@ class DeviceFunctionData {
|
||||
valueDescription: json['valueDescription'],
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
if (identical(this, other)) return true;
|
||||
|
||||
return other is DeviceFunctionData &&
|
||||
other.entityId == entityId &&
|
||||
other.actionExecutor == actionExecutor &&
|
||||
other.function == function &&
|
||||
other.operationName == operationName &&
|
||||
other.value == value &&
|
||||
other.condition == condition &&
|
||||
other.valueDescription == valueDescription;
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode {
|
||||
return entityId.hashCode ^
|
||||
actionExecutor.hashCode ^
|
||||
function.hashCode ^
|
||||
operationName.hashCode ^
|
||||
value.hashCode ^
|
||||
condition.hashCode ^
|
||||
valueDescription.hashCode;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dragable_card.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/routine_devices.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/routines_title_widget.dart';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:flutter_svg/flutter_svg.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/models/device_functions.dart';
|
||||
import 'package:syncrow_web/utils/color_manager.dart';
|
||||
import 'package:syncrow_web/utils/extension/build_context_x.dart';
|
||||
|
@ -1,6 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/helper/dialog_helper/device_dialog_helper.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dragable_card.dart';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/device_managment/all_devices/bloc/device_mgmt_bloc/device_managment_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dragable_card.dart';
|
||||
|
||||
class RoutineDevices extends StatelessWidget {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dragable_card.dart';
|
||||
import 'package:syncrow_web/utils/constants/assets.dart';
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/bloc/routine_bloc/routine_bloc.dart';
|
||||
import 'package:syncrow_web/pages/routiens/helper/dialog_helper/device_dialog_helper.dart';
|
||||
import 'package:syncrow_web/pages/routiens/widgets/dragable_card.dart';
|
||||
|
||||
|
Reference in New Issue
Block a user