-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
189 additions
and
1 deletion.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
.../src/androidMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/EventMapApiModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap | ||
|
||
import dagger.Module | ||
import dagger.Provides | ||
import dagger.hilt.InstallIn | ||
import dagger.hilt.components.SingletonComponent | ||
|
||
@Module | ||
@InstallIn(SingletonComponent::class) | ||
public class EventMapApiModule { | ||
@Provides | ||
public fun provideEventMapApi(): EventMapApiClient { | ||
return FakeEventMapApiClient() | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...droidMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/EventMapRepositoryModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap | ||
|
||
import dagger.Binds | ||
import dagger.Module | ||
import dagger.Provides | ||
import dagger.hilt.InstallIn | ||
import dagger.hilt.components.SingletonComponent | ||
import dagger.multibindings.ClassKey | ||
import dagger.multibindings.IntoMap | ||
import io.github.droidkaigi.confsched.data.di.RepositoryQualifier | ||
import io.github.droidkaigi.confsched.model.EventMapRepository | ||
import javax.inject.Singleton | ||
|
||
@Module | ||
@InstallIn(SingletonComponent::class) | ||
public abstract class EventMapRepositoryModule { | ||
@Binds | ||
@RepositoryQualifier | ||
@IntoMap | ||
@ClassKey(EventMapRepository::class) | ||
public abstract fun bind(repository: EventMapRepository): Any | ||
|
||
public companion object { | ||
@Provides | ||
@Singleton | ||
public fun provideEventMapRepository( | ||
eventMapApi: EventMapApiClient, | ||
): EventMapRepository { | ||
return DefaultEventMapRepository( | ||
eventMapApi = eventMapApi, | ||
) | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...mmonMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/DefaultEventMapRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.getValue | ||
import io.github.droidkaigi.confsched.compose.SafeLaunchedEffect | ||
import io.github.droidkaigi.confsched.compose.safeCollectAsState | ||
import io.github.droidkaigi.confsched.model.EventMapEvent | ||
import io.github.droidkaigi.confsched.model.EventMapRepository | ||
import kotlinx.collections.immutable.PersistentList | ||
import kotlinx.collections.immutable.persistentListOf | ||
import kotlinx.collections.immutable.toPersistentList | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
|
||
public class DefaultEventMapRepository( | ||
private val eventMapApi: EventMapApiClient, | ||
) : EventMapRepository { | ||
private val eventMapStateFlow = | ||
MutableStateFlow<PersistentList<EventMapEvent>>(persistentListOf()) | ||
|
||
@Composable | ||
override fun eventMapEvents(): PersistentList<EventMapEvent> { | ||
val eventMap by eventMapStateFlow.safeCollectAsState() | ||
SafeLaunchedEffect(Unit) { | ||
if (eventMap.isEmpty()) { | ||
refresh() | ||
} | ||
} | ||
return eventMap | ||
} | ||
|
||
override suspend fun refresh() { | ||
eventMapApi | ||
.eventMapEvents() | ||
.toPersistentList().also { eventMapStateFlow.value = it } | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...a/src/commonMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/EventMapApiClient.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap | ||
|
||
import de.jensklingenberg.ktorfit.http.GET | ||
import io.github.droidkaigi.confsched.data.eventmap.response.EventMapResponse | ||
import io.github.droidkaigi.confsched.model.EventMapEvent | ||
import kotlinx.collections.immutable.PersistentList | ||
import kotlinx.collections.immutable.toPersistentList | ||
|
||
internal interface EventMapApi { | ||
@GET("/events/droidkaigi2023/eventmap") | ||
suspend fun getEventMap(): EventMapResponse | ||
} | ||
|
||
public interface EventMapApiClient { | ||
|
||
public suspend fun eventMapEvents(): PersistentList<EventMapEvent> | ||
} | ||
|
||
public fun EventMapResponse.toEventMapList(): PersistentList<EventMapEvent> { | ||
return listOf(EventMapEvent()).toPersistentList() | ||
} |
33 changes: 33 additions & 0 deletions
33
...c/commonMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/FakeEventMapApiClient.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap | ||
|
||
import io.github.droidkaigi.confsched.data.eventmap.response.EventMapResponse | ||
import io.github.droidkaigi.confsched.model.EventMapEvent | ||
import kotlinx.collections.immutable.PersistentList | ||
import okio.IOException | ||
|
||
public class FakeEventMapApiClient : EventMapApiClient { | ||
|
||
public sealed class Status : EventMapApiClient { | ||
public data object Operational : Status() { | ||
override suspend fun eventMapEvents(): PersistentList<EventMapEvent> { | ||
return EventMapResponse().toEventMapList() | ||
} | ||
} | ||
|
||
public data object Error : Status() { | ||
override suspend fun eventMapEvents(): PersistentList<EventMapEvent> { | ||
throw IOException("Fake IO Exception") | ||
} | ||
} | ||
} | ||
|
||
private var status: Status = Status.Operational | ||
|
||
public fun setup(status: Status) { | ||
this.status = status | ||
} | ||
|
||
override suspend fun eventMapEvents(): PersistentList<EventMapEvent> { | ||
return status.eventMapEvents() | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...mmonMain/kotlin/io/github/droidkaigi/confsched/data/eventmap/response/EventMapResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package io.github.droidkaigi.confsched.data.eventmap.response | ||
|
||
public class EventMapResponse |
3 changes: 3 additions & 0 deletions
3
core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/EventMapEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package io.github.droidkaigi.confsched.model | ||
|
||
class EventMapEvent |
18 changes: 18 additions & 0 deletions
18
core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/EventMapRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.github.droidkaigi.confsched.model | ||
|
||
import androidx.compose.runtime.Composable | ||
import io.github.droidkaigi.confsched.model.compositionlocal.LocalRepositories | ||
import kotlinx.collections.immutable.PersistentList | ||
|
||
interface EventMapRepository { | ||
|
||
suspend fun refresh() | ||
|
||
@Composable | ||
fun eventMapEvents(): PersistentList<EventMapEvent> | ||
} | ||
|
||
@Composable | ||
fun localEventMapRepository(): EventMapRepository { | ||
return LocalRepositories.current[EventMapRepository::class] as EventMapRepository | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters