You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
3 years ago
|
import 'dart:async';
|
||
|
import 'package:bloc/bloc.dart';
|
||
|
import 'package:bytedesk_kefu/blocs/contact_bloc/bloc.dart';
|
||
|
import 'package:bytedesk_kefu/repositories/contact_repository.dart';
|
||
|
|
||
|
class ContactBloc extends Bloc<ContactEvent, ContactState> {
|
||
|
final ContactRepository contactRepository = new ContactRepository();
|
||
|
|
||
|
// ContactBloc({@required this.contactRepository});
|
||
|
ContactBloc() : super(ContactUninitialized());
|
||
|
|
||
|
// @override
|
||
|
// ContactState get initialState => ContactUninitialized();
|
||
|
|
||
|
@override
|
||
|
Stream<ContactState> mapEventToState(ContactEvent event) async* {
|
||
|
//
|
||
|
if (event is RefreshContactEvent) {
|
||
|
yield* _mapRefreshContactToState(event);
|
||
|
} else {
|
||
|
//
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Stream<ContactState> _mapRefreshContactToState(
|
||
|
RefreshContactEvent event) async* {
|
||
|
yield ContactLoading();
|
||
|
try {
|
||
|
// final List<Contact> contactList = await contactRepository.getContacts();
|
||
|
// yield ContactLoadSuccess(contactList);
|
||
|
} catch (error) {
|
||
|
print(error);
|
||
|
yield ContactLoadError();
|
||
|
}
|
||
|
}
|
||
|
}
|