1.5.0 • Published 5 months ago

usecases-kt v1.5.0

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

usecases

License Issues Pull Requests Code Size codecov

UseCase utils for all my libs.

Installation

Add dependency to your build.gradle or pom.xml:

compile 'me.nathanfallet.usecases:usecases:1.5.0'
<dependency>
    <groupId>me.nathanfallet.usecases</groupId>
    <artifactId>usecases-jvm</artifactId>
    <version>1.5.0</version>
</dependency>

Or in a JS project with:

npm install usecases-kt
yarn add usecases-kt

Usage

First UseCase

Create a new class that extends IUseCase or ISuspendUseCase:

// IMyUseCase.kt
interface IMyUseCase : IUseCase<Input, Output>
// MyUseCase.kt
class MyUseCase(
    private val dependency1: Dependency1,
    // ...
) : IMyUseCase {

    // If you want to use suspend functions, use `ISuspendUseCase` instead
    override fun invoke(input: Input): Output {
        // Do something with dependencies
        // ...

        // Return output
        return Output()
    }

}

Then, you can use it like this: (example with Koin, but you can use any DI library, or even instantiate it manually)

// Koin.kt
single<IMyUseCase> { MyUseCase(get(), /*...*/) }
// Somewhere else
val useCase = get<IMyUseCase>()
val output = useCase(Input())

Variants

IUseCase and ISuspendUseCase are the base interfaces taking one input and returning one output. We made some variants to make it easier to use:

  • IUnitUseCase and IUnitSuspendUseCase for no input
  • IPairUseCase and IPairSuspendUseCase for two inputs
  • ITripleUseCase and ITripleSuspendUseCase for three inputs

Models

A common use of UseCases is to make things with a model. That's why we made an interface for models with associated UseCases:

// MyModel.kt
data class MyModel(
    override val id: Long,
    val property1: String,
    // ...
) : IModel<Long, CreateMyModelPayload, UpdateMyModelPayload>
// CreateMyModelPayload.kt
data class CreateMyModelPayload(
    val property1: String,
    // ...
)
// UpdateMyModelPayload.kt
data class UpdateMyModelPayload(
    val property1: String?,
    // ...
)

CreateMyModelPayload and UpdateMyModelPayload are payloads used to create and update the model. In case you don't support creating or updating your model, you can use Unit instead.

Then, you can create and use associated UseCases:

class GetMyModelUseCase : IGetModelUseCase<MyModel, Long> {
    /* ... */
}
class CreateMyModelUseCase : ICreateModelUseCase<MyModel, CreateMyModelPayload> {
    /* ... */
}
class UpdateMyModelUseCase : IUpdateModelUseCase<MyModel, Long, UpdateMyModelPayload> {
    /* ... */
}
class DeleteMyModelUseCase : IDeleteModelUseCase<MyModel, Long> {
    /* ... */
}

Expecting those interfaces can help you to make your code more generic and reusable.

Of course, you can also use suspending variants: IGetModelSuspendUseCase, ICreateModelSuspendUseCase, IUpdateModelSuspendUseCase and IDeleteModelSuspendUseCase.

Models with Repositories

We also provide IModelRepository and IModelSuspendRepository to make repositories for your models:

class MyModelRepository(
    private val dependency1: Dependency1,
    // ...
) : IModelRepository<MyModelRepository, MyModel, Long, CreateMyModelPayload, UpdateMyModelPayload> {

    override fun get(id: Id): Model? {
        /* ... */
    }

    override fun create(payload: CreatePayload): Model? {
        /* ... */
    }

    override fun update(id: Id, payload: UpdatePayload): Boolean {
        /* ... */
    }

    override fun delete(id: Id): Boolean {
        /* ... */
    }

}

Then, we provide default implementations for IGetModelUseCase, ICreateModelUseCase, IUpdateModelUseCase and IDeleteModelUseCase:

class GetMyModelUseCase(
    private val repository: MyModelRepository
) : GetModelFromRepositoryUseCase<MyModel, Long>(repository)
class CreateMyModelUseCase(
    private val repository: MyModelRepository
) : CreateModelFromRepositoryUseCase<MyModel, CreateMyModelPayload>(repository)
class UpdateMyModelUseCase(
    private val repository: MyModelRepository
) : UpdateModelFromRepositoryUseCase<MyModel, Long, UpdateMyModelPayload>(repository)
class DeleteMyModelUseCase(
    private val repository: MyModelRepository
) : DeleteModelFromRepositoryUseCase<MyModel, Long>(repository)

Suspend variants are available too: GetModelFromRepositorySuspendUseCase, CreateModelFromRepositorySuspendUseCase, UpdateModelFromRepositorySuspendUseCase and DeleteModelFromRepositorySuspendUseCase.

1.5.0

5 months ago

1.4.1

5 months ago

1.4.0

5 months ago

1.3.1

6 months ago