Line data Source code
1 : part of 'booking_of_service_bloc.dart';
2 :
3 : @freezed
4 : abstract class BookingOfServiceState with _$BookingOfServiceState {
5 : const factory BookingOfServiceState({
6 : @required bool isTitleValid,
7 : @required bool isSubmitting,
8 : @required bool isSuccess,
9 : @required bool isFailure,
10 : Exception error,
11 : }) = _BookingOfServiceState;
12 :
13 0 : factory BookingOfServiceState.empty() {
14 : return const BookingOfServiceState(
15 : isTitleValid: false,
16 : isSubmitting: false,
17 : isSuccess: false,
18 : isFailure: false,
19 : );
20 : }
21 :
22 0 : factory BookingOfServiceState.loading() {
23 : return const BookingOfServiceState(
24 : isTitleValid: true,
25 : isSubmitting: true,
26 : isSuccess: false,
27 : isFailure: false,
28 : );
29 : }
30 :
31 0 : factory BookingOfServiceState.failure(Exception error) {
32 0 : return BookingOfServiceState(
33 : isTitleValid: true,
34 : isSubmitting: false,
35 : isSuccess: false,
36 : isFailure: true,
37 : error: error,
38 : );
39 : }
40 :
41 0 : factory BookingOfServiceState.success() {
42 : return const BookingOfServiceState(
43 : isTitleValid: true,
44 : isSubmitting: false,
45 : isSuccess: true,
46 : isFailure: false,
47 : );
48 : }
49 : }
50 :
51 : extension BookingOfServiceStateX on BookingOfServiceState {
52 0 : bool get isFormValid => this.isTitleValid;
53 :
54 0 : BookingOfServiceState updateTitle({
55 : bool isTitleValid,
56 : }) {
57 0 : return this.copyWith(
58 : isTitleValid: isTitleValid,
59 : isSubmitting: false,
60 : isSuccess: false,
61 : isFailure: false,
62 : );
63 : }
64 : }
|