brick_offline_first 0.0.2 copy "brick_offline_first: ^0.0.2" to clipboard
brick_offline_first: ^0.0.2 copied to clipboard

outdated

A Brick domain that routes data fetching through local providers before remote providers.

Brick Offline First #

Offline First combines SQLite and a remote provider into one unified repository. And, optionally, a memory cache layer as the entry point. The remote provider could query Firebase or REST, hydrate the results to SQLite, and then deliver those SQLite results back to the app. In this way, the app functions identically when it's online or offline:

OfflineFirst#get

Models #

@ConnectOfflineFirst decorates the model that can be serialized by one or more providers. Offline First does not have configuration at the class level and only extends configuration held by its providers:

@ConnectOfflineFirst(
  restConfig: RestSerializable(),
  sqliteConfig: SqliteSerializable(),
)
class MyModel extends OfflineFirstModel {}

Fields #

@OfflineFirst(where:) #

Using unique identifiers, where: can connect multiple providers. It is declared using a map between a local provider (key) and a remote provider (value). This is useful when a remote provider only includes unique identifiers (such as "id": 1) of associations, the OfflineFirstRepository can lookup that instance from another source and deserialize into a complete model.

⚠️ This is another rare instance (like Query#params in the SQLite Provider) where the serializer property name is used instead of the field name, such as last_name instead of lastName.

For a concrete example, SQLite is the local data source and REST is the remote data source:

Given the API:

{ "assoc": {
    // These don't have to map to SQLite columns.
    // They can also be String uuids that SQLite considers unique
    "id": 12345,
    "ids": [12345, 6789]
    }}

The association can be automatically mapped to SQLite (note the inclusion of data; this will always be "data" as it specifies the in-progress deserialization):

@OfflineFirst(where: {'id' : "data['assoc']['id']"})
final Assoc assoc;

@OfflineFirst(where: {'id' : "data['assoc']['ids']"})
final List<Assoc> assoc;

@OfflineFirst(where:) only applies to associations or iterable associations. If @OfflineFirst(where:) is not defined, the model will attempt to be instantiated by the REST key that maps to the field.

⚠️ When @OfflineFirst(where:) is defined, the @Rest(toGenerator:) generator will not feature the field unless a toRest custom generator is defined OR only one pair is defined in the map.

OfflineFirstSerdes #

When storing raw data is more optimal than storing it as an association, an OfflineFirstSerdes can be used. For example, a child model has only a few properties but hosts a significant number of computed members and methods:

import 'dart:convert';
class Weight extends OfflineFirstSerdes<Map<int, String>, String> {
  final int size;
  final String unit;

  Weight(this.size, this.unit);

  // A fromRest factory must be defined
  factory Weight.fromRest(Map<String, dynamic> data) {
    if (data == null || data.isEmpty) return null;

    final size = double.parse(data.keys.first.toString() ?? '0');
    return Weight(size, data.values.first);
  }

  // A fromSqlite factory must be defined
  factory Weight.fromSqlite(String data) => Weight.fromRest(jsonDecode(data));

  toRest() => {size: unit};
  toSqlite() => jsonEncode(toRest());
}

OfflineFirstSerdes should not be used when the managed data must be queried. Plainly, Brick does not support JSON searches.

Offline First With Rest Repository #

OfflineFirstWithRestRepository streamlines the REST integration with an OfflineFirstRepository. A serial queue is included to track REST requests in a separate SQLite database, only removing requests when a response is not returned from the host (i.e. the device has lost internet connectivity).

The OfflineFirstWithRest domain uses all the same configurations and annotations as OfflineFirst.

Generating Models from a REST Endpoint #

A utility class is provided to make model generation from a JSON API a snap. Given an endpoint, the converter will infer the type of a field and scaffold a class. For example, the following would be saved to the lib directory of your project and run $ dart lib/converter_script.dart:

// lib/converter_script.dart
import 'package:brick_offline_first/rest_to_offline_first_converter.dart';

const BASE = "http://localhost:3000";
const endpoint = "$BASE/users";

final converter = RestToOfflineFirstConverter(
  endpoint: endpoint,
);

void main() {
  converter.saveToFile();
}

// => dart lib/converter_script.dart

After the model is generated, double check for List<dynamic> and null types. While the converter is smart, it's not smarter than you.

OfflineQueueHttpClient #

All requests to the REST provider in the repository first pass through a queue that tracks unsuccessful requests in a SQLite database separate from the one that maintains application models. Should the application ever lose connectivity, the queue will resend all upserted requests that occurred while the app was offline. All requests are forwarded to an inner client.

The queue is automatically added to all OfflineFirstWithRestRepositorys. This means that a queue should not be used as the RestProvider's client, however, the queue should use the RestProvider's client as its inner client:

final client = OfflineQueueHttpClient(
  restProvider.client, // or http.Client()
  "OfflineQueue",
);

OfflineQueue logic flow

⚠️ The queue ignores requests that are not DELETE, PATCH, POST, and PUT. get requests are not worth tracking as the caller may have been disposed by the time the app regains connectivity.

Testing #

Responses can be stubbed to and from an OfflineFirstWithRest repository. For convenience, the same data can stub for both the API and SQLite:

// test/models/api/user.json
{
  "user": { "name" : "Thomas" }
}

// test/models/user_test.dart
import 'package:brick_sqlite/testing.dart';
import 'package:my_app/app/repository.dart';

void main() {
  group("MySqliteProvider", () {
    setUpAll(() {
      StubOfflineFirstWithRestModel<User>(
        filePath: "api/user.json",
        repository: MyRepository()
      );
    });
  });
}

Currently the same response is returned for both upsert and get methods, with the only variation being in status code.

Handling Endpoint Variations #

As Mockito is rightfully strict in its stubbing, variants in the endpoint must be explicitly declared. For example, /user, /users, /users?by_first_name=Guy are all different. When instantiating, specify any expected variants:

StubOfflineFirstWithRestModel<User>(
  endpoints: ["user", "users", "users?by_first_name=Guy"]
)

Stubbing Multiple Models #

Rarely will only one model need to be stubbed. All classes in an app can be stubbed efficiently using StubOfflineFirstWithRest:

setUpAll() {
  final config = {
    User: ["user", "users"],
    // Even individual member endpoints must be declared for association fetching
    // REST endpoints are manually configured, so the content may vary
    Hat: ["hat/1", "hat/2", "hats"],
  }
  final models = config.entries.map((modelConfig) {
    return StubOfflineFirstWithRest(
      filePath: "api/${modelConfig.key.toString().toLowerCase()}.json",
      model: modelConfig.key,
      endpoints: modelConfig.value,
    );
  });
  StubOfflineFirstWithRest(
    modelStubs: models,
    repository: MyRepository(),
  );
}

💡 MyRepository()'s REST client is now a Mockito instance. verify and other interaction matchers can be called on MyRepository().restProvider.client.

FAQ #

Why can't I declare a model argument?

Due to an open analyzer bug, a custom model cannot be passed to the repository as a type argument.

Unsupported Field Types #

  • Any unsupported field types from RestProvider and SqliteProvider
  • Future iterables of future models (i.e. Future<List<Future<Model>>>.
81
likes
0
pub points
62%
popularity

Publisher

unverified uploader

A Brick domain that routes data fetching through local providers before remote providers.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

brick_core, brick_offline_first_abstract, brick_rest, brick_sqlite, brick_sqlite_abstract, connectivity, dart_style, flutter, http, logging, meta, mockito, path, sqflite

More

Packages that depend on brick_offline_first