Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/klisiewicz/flutter-bloc-patterns

A set of most common BLoC use cases built on top of flutter_bloc library
https://github.com/klisiewicz/flutter-bloc-patterns

bloc dart dartlang flutter flutter-bloc flutter-bloc-pattern flutter-bloc-patterns flutter-package library state-management

Last synced: 28 days ago
JSON representation

A set of most common BLoC use cases built on top of flutter_bloc library

Awesome Lists containing this project

README

        

# Flutter BLoC patterns

[![Codemagic build status](https://api.codemagic.io/apps/5d28ebe2db95112ead3bbeb9/5d28ebe2db95112ead3bbeb8/status_badge.svg)](https://codemagic.io/apps/5d28ebe2db95112ead3bbeb9/5d28ebe2db95112ead3bbeb8/latest_build) [![Star on GitHub](https://img.shields.io/github/stars/klisiewicz/flutter-bloc-patterns.svg?style=flat&logo=github&colorB=deeppink&label=Stars)](https://github.com/klisiewicz/flutter-bloc-patterns) [![License: MIT](https://img.shields.io/badge/License-MIT-purple.svg)](https://opensource.org/licenses/MIT)

---
A set of most common BLoC use cases build on top [flutter_bloc](https://github.com/felangel/bloc/tree/master/packages/flutter_bloc) library.

## Key contepts

##### BLoC

BLoC, aka **B**usiness **Lo**gic **C**omponent, is a state management system for Flutter. It's main goal is to separate business logic from the presentation layer. The BLoC handles user actions or any other events and generates new state for the view to render.

##### Repository

A `Repository` to handles data operations. It knows where to get the data from and what API calls to make when data is updated. A `Repository` can utilize a single data source as well as it can be a mediator between different data sources, such as database, web services and caches.

##### ViewStateBuilder

`ViewStateBuilder` is responsible for building the UI based on the view state. It's a wrapper over the `BlocBuilder` widget so it accepts a `bloc` object and a set of handy callbacks, which corresponds to each possible state:

* `initial` - informs the presentation layer that view is in it's initial state, and no action has taken place yet,
* `loading` - informs the presentation layer that the data is being loaded, so it can display a loading indicator,
* `refreshing` - informs the presentation layer that the data is being refreshed, so it can display a refresh indicator or/and the current state of list items,
* `data` - informs the presentation layer that the loading is completed and a `nonnull` and not empty data was retrieved,
* `empty` - informs the presentation layer that the loading is completed, but `null` or empty data was retrieved,
* `error` - informs the presentation layer that the loading or refreshing has ended with an error. It also provides an error that has occurred.

##### ViewStateListener

`ViewStateListener` is responsible for performing an action based on the view state. It should be used for functionality that needs to occur only in response to a state change such as navigation, showing a `SnackBar` etc. `ViewStateListener` is a wrapper over the `BlocListener` widget so it accepts a `bloc` object as well as a `child` widget and a set of handy callbacks corresponding to a given state:

* `onLoading` - informs the presentation layer that the data is being loaded,
* `onRefreshing` - informs the presentation layer that the data is being refreshed,
* `onData` - informs the presentation layer that the loading is completed and a `nonnull` and not empty data was retrieved,
* `onEmpty` - informs the presentation layer that the loading is completed, but `null` or empty data was retrieved,
* `onError` - informs the presentation layer that the loading or refreshing has ended with an error. It also provides an error that has occurred.

## Features

### ListBloc

The most basic use case. Allows to fetch, refresh and display a list of items without filtering and pagination. Thus, `ListBloc` should be used only with a reasonable amount of data.

`ListBloc` provides the methods for loading and refreshing data:

* `loaditems()` - most suitable for initial data fetch or for retry action when the first fetch fails,
* `refreshitems()` - designed for being called after the initial fetch succeeds.

To display the current view state `ListBloc` cooperates with `BlocBuilder` as well as `ViewStateBuilder`.

##### ListRepository

A `ListRepository` implementation should provide only one method:

* `Future> getAll();` - this method is responsible for providing all the data to the `ListBloc`.

Where:
* `T` is the item type returned by this repository.

##### Usage

[List BLoC Sample App](example/lib/src/list_app.dart)

### FilterListBloc

An extension to the `ListBloc` that allows filtering.

##### FilterRepository

`FilterListRepository` provides two methods:

* `Future> getAll();` - this method is called when a `null` filter is provided and should return all items,
* `Future> getBy(F filter);` - this method is called with `nonnull` filter and should return only items that match it.

Where:
* `T` is the item type returned by this repository,
* `F` is the filter type, which can be primitive as well as complex object.

#### Usage

[Filter List BLoC Sample App](example/lib/src/list_filter_app.dart)

### PagedListBloc

A list BLoC with pagination but without filtering. It works best with [Infinite Widgets](https://github.com/jaumard/infinite_widgets) but a custom presentation layer can be provided as well.

#### Page

Contains information about the current page, this is `number` and `size`.

#### PagedList

List of items with information if there are more items or not.

#### PagedListRepository

`PagedListRepository` comes with only one method:

* `Future> getAll(Page page);` - this method retrieves items meeting the pagination restriction provided by the `page` object.
When items are exceeded it should return an empty list or throw `PageNotFoundException`. `PagedListBloc` will handle both cases in the same way.

Where:
* `T` is the item type returned by this repository.

#### Usage

[Paged List BLoC Sample App](example/lib/src/list_paged_app.dart)

### PagedListFilterBloc

A list BLoC with pagination and filtering. It works best with [Infinite Widgets](https://github.com/jaumard/infinite_widgets) but a custom presentation layer can be provided as well.

#### Page

Contains information about the current page, this is `number` and `size`.

#### PagedList

List of items with information if there are more items or not.

#### PagedListFilterRepository
`PagedListFilterRepository` provides only two methods:

* `Future> getAll(Page page);` - retrieves items meeting the pagination restriction provided by the `page` object.
* `Future> getBy(Page page, F filter);` - retrieves items meeting pagination as well as the filter restrictions provided by the `page` and `filter` objects.

When items are exceeded it should return an empty list or throw `PageNotFoundException`. `PagedListFilterBloc` will handle both cases in the same way.

Where:
* `T` is the item type returned by this repository,
* `F` is the filter type, which can be primitive as well as complex object.

#### Usage

[Paged List BLoC Sample App](example/lib/src/list_paged_filter_app.dart)

### DetailsBloc

A BLoC that allows to fetch a single item with given identifier.

#### DetailsRepository

`DetailsRepository` comes with only one method:

* `Future getById(I id);` - this method retrieves an item with given id. When there's no item matching the id the `null` should be returned. In this cases the `DetailsBloc` will emit `Empty` state.

Where:
* `T` is the item type returned by this repository,
* `I` is the id type, it can be primitive as well as a complex object.

#### Usage:

[List/Details BLoC Sample App](example/lib/src/list_details_app.dart)

### ConnectionBloc

A BLoC that exposes the Internet connection state to the UI.

#### Connection

The Internet connection state. It can be either `online` or `offline`.

#### ConnectionRepository

`ConnectionRepository` notifies about connection state changes, such as going online or offline.

Please notice, that this is only a contract and a developer needs to provide an implementation. This can be done using one of many popular packages, like:

* [connectivity_plus](https://pub.dev/packages/connectivity_plus)
* [internet_connection_checker](https://pub.dev/packages/internet_connection_checker)

Or whatever works for you. A sample implementation using `connectivity_plus` may look as follows:

```dart
class ConnectivityPlusRepository implements ConnectionRepository {
@override
Stream observe() {
// Required due to https://github.com/fluttercommunity/plus_plugins/issues/2527
return MergeStream([
Stream.fromFuture(_connectivity.checkConnectivity()),
_connectivity.onConnectivityChanged,
]).map(
(ConnectivityResult result) => result != ConnectivityResult.none
? Connection.online
: Connection.offline,
);
}
}
```

#### ConnectionBuilder

`ConnectionBuilder` is responsible for building the UI based `Connection` state.

It's a wrapper over the `BlocBuilder` widget so it accepts a `bloc` object and provides `WidgetBuilder` functions for possible states:

* `online` - a builder for the the `Connection.online` state,
* `offline` - a builder for the the `Connection.offline` state,

#### ConnectionListener

`ConnectionListener` is responsible for performing a one-time action based on the `Connection` state change.

It should be used for functionality that needs to occur only once in response to the `Connection` state change such as navigation, `SnackBar`, showing a `Dialog`, etc.

`ConnectionListener` is a wrapper over the `BlocListener` widget so it accepts a `bloc` object as well as a `child` widget. It also takes `ConnectionCallback` functions for possible states:

* `onOnline` - a callback for the the `Connection.online` state,
* `onOffline` - a callback for the `Connection.offline` state.

#### Usage:

[Connection Sample App](example/lib/src/connection_app.dart)

## Dart version

- Dart 3: >= 3.0.0

## Author
- [Karol Lisiewicz](https://github.com/klisiewicz)