Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/MobileNativeFoundation/Store

A Kotlin Multiplatform library for building network-resilient applications
https://github.com/MobileNativeFoundation/Store

android browser cache desktop guava-cache ios kotlin-multiplatform node offline-first

Last synced: about 1 month ago
JSON representation

A Kotlin Multiplatform library for building network-resilient applications

Awesome Lists containing this project

README

        



Store5


[![codecov](https://codecov.io/gh/MobileNativeFoundation/Store/branch/main/graph/badge.svg?token=0UCmG3QHPf)](https://codecov.io/gh/MobileNativeFoundation/Store)


Full documentation can be found on our website!


Join our official Slack on kotlinlang!


### Concepts

- [Store](https://mobilenativefoundation.github.io/Store/store/store/) is a typed repository that returns a flow
of [Data](https://github.com/MobileNativeFoundation/Store/blob/main/store/src/commonMain/kotlin/org/mobilenativefoundation/store/store5/StoreReadResponse.kt#L39)
/[Loading](https://github.com/MobileNativeFoundation/Store/blob/main/store/src/commonMain/kotlin/org/mobilenativefoundation/store/store5/StoreReadResponse.kt#L34)
/[Error](https://github.com/MobileNativeFoundation/Store/blob/main/store/src/commonMain/kotlin/org/mobilenativefoundation/store/store5/StoreReadResponse.kt#L51)
from local and network data sources
- [MutableStore](https://mobilenativefoundation.github.io/Store/mutable-store/building/overview/) is a mutable repository implementation that allows create **(C)**, read **(R)**,
update **(U)**, and delete **(D)** operations for local and network resources
- [SourceOfTruth](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/source-of-truth/) persists items
- [Fetcher](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/fetcher/) defines how data will be fetched over network
- [Updater](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/updater/) defines how local changes will be pushed to network
- [Bookkeeper](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/bookkeeper/) tracks metadata of local changes and records
synchronization failures
- [Validator](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/validator/) returns whether an item is valid
- [Converter](https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/converter/) converts items
between [Network](https://mobilenativefoundation.github.io/Store/mutable-store/building/generics/network)
/[Local](https://mobilenativefoundation.github.io/Store/mutable-store/building/generics/sot)
/[Output](https://mobilenativefoundation.github.io/Store/mutable-store/building/generics/common) representations

### Including Store In Your Project

#### Android
```kotlin
implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha04"
```

#### Multiplatform (Common, JVM, Native, JS)

```kotlin
commonMain {
dependencies {
implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha04")
}
}
```

### Getting Started

#### Building Your First Store

```kotlin
StoreBuilder
.from(fetcher, sourceOfTruth)
.converter(converter)
.validator(validator)
.build(updater, bookkeeper)
```

#### Creating

##### Request

```kotlin
store.write(
request = StoreWriteRequest.of(
key = key,
value = value
)
)
```

##### Response

```text
1. StoreWriteResponse.Success.Typed(response)
```

#### Reading

##### Request

```kotlin
store.stream(request = StoreReadRequest.cached(key, refresh = false))
```

##### Response

```text
1. StoreReadResponse.Data(value, origin = StoreReadResponseOrigin.Cache)
```

#### Updating

##### Request

```kotlin
store.write(
request = StoreWriteRequest.of(
key = key,
value = newValue
)
)
```

##### Response

```text
1. StoreWriteResponse.Success.Typed(response)
```

#### Deleting

##### Request

```kotlin
store.clear(key)
```

### License

```text
Copyright (c) 2024 Mobile Native Foundation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
```