Store/README.md

136 lines
4.4 KiB
Markdown
Raw Permalink Normal View History

<div align="center">
<img src="Images/friendly_robot.png" width="120"/>
<h1 style="font-size:48px">Store5</h1>
</div>
[![codecov](https://codecov.io/gh/MobileNativeFoundation/Store/branch/main/graph/badge.svg?token=0UCmG3QHPf)](https://codecov.io/gh/MobileNativeFoundation/Store)
<div align="center">
<h4>Full documentation can be found on our <a href="https://mobilenativefoundation.github.io/Store/">website</a>!</h4>
<h4>Join our official Slack on <a href="https://kotlinlang.slack.com/archives/C06007Z01HU">kotlinlang</a>!</h4>
</div>
2017-01-04 19:17:53 +00:00
### Concepts
2020-02-14 10:59:31 +00:00
- [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
2017-01-04 19:17:53 +00:00
### Including Store In Your Project
2017-01-04 19:17:53 +00:00
> **Note**
>
> **[AtomicFU](https://github.com/Kotlin/kotlinx-atomicfu) is required ([#503](https://github.com/MobileNativeFoundation/Store/issues/503))**
#### Android
```kotlin
implementation "org.mobilenativefoundation.store:store5:5.0.0"
implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
```
#### Multiplatform (Common, JVM, Native, JS)
```kotlin
commonMain {
dependencies {
implementation("org.mobilenativefoundation.store:store5:5.0.0")
implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
}
}
```
### Getting Started
#### Building Your First Store
2019-11-05 02:11:07 +00:00
```kotlin
StoreBuilder
.from<Key, Network, Output, Local>(fetcher, sourceOfTruth)
.converter(converter)
.validator(validator)
.build(updater, bookkeeper)
2017-01-04 19:17:53 +00:00
```
#### Creating
2017-01-04 19:17:53 +00:00
##### Request
2017-01-04 19:17:53 +00:00
2019-11-05 02:11:07 +00:00
```kotlin
store.write(
request = StoreWriteRequest.of<Key, Output, Response>(
key = key,
value = value
)
)
2017-01-04 19:17:53 +00:00
```
##### Response
2019-11-05 02:11:07 +00:00
```text
1. StoreWriteResponse.Success.Typed<Response>(response)
2019-11-05 02:11:07 +00:00
```
2017-01-04 19:17:53 +00:00
#### Reading
##### Request
```kotlin
store.stream<Response>(request = StoreReadRequest.cached(key, refresh = false))
```
##### Response
```text
1. StoreReadResponse.Data(value, origin = StoreReadResponseOrigin.Cache)
```
#### Updating
##### Request
```kotlin
store.write(
request = StoreWriteRequest.of<Key, Output, Response>(
key = key,
value = newValue
)
)
```
##### Response
```text
1. StoreWriteResponse.Success.Typed<Response>(response)
```
#### Deleting
##### Request
```kotlin
store.clear(key)
2020-01-29 15:37:14 +00:00
```
2022-01-31 22:49:58 +00:00
### License
2022-01-31 22:49:58 +00:00
```text
Copyright (c) 2022 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.
```
2022-01-31 22:49:58 +00:00