23 lines
701 B
Dart
23 lines
701 B
Dart
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
||
|
|
import 'package:hiddify/features/profile/model/profile_entity.dart';
|
||
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
|
||
|
|
part 'profile_details_state.freezed.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class ProfileDetailsState with _$ProfileDetailsState {
|
||
|
|
const ProfileDetailsState._();
|
||
|
|
|
||
|
|
const factory ProfileDetailsState({
|
||
|
|
required ProfileEntity profile,
|
||
|
|
@Default(false) bool isEditing,
|
||
|
|
@Default(false) bool showErrorMessages,
|
||
|
|
AsyncValue<void>? save,
|
||
|
|
AsyncValue<void>? update,
|
||
|
|
AsyncValue<void>? delete,
|
||
|
|
}) = _ProfileDetailsState;
|
||
|
|
|
||
|
|
bool get isBusy =>
|
||
|
|
save is AsyncLoading || delete is AsyncLoading || update is AsyncLoading;
|
||
|
|
}
|