2024-03-22 23:41:51 +01:00
|
|
|
import { AuthenticationUseCase } from "@/domain/use-cases/Authentication"
|
2024-03-15 22:48:28 +01:00
|
|
|
import { RetrieveHabitsTrackerUseCase } from "../domain/use-cases/RetrieveHabitsTracker"
|
2024-03-16 00:36:44 +01:00
|
|
|
import { HabitsTrackerPresenter } from "../presentation/presenters/HabitsTracker"
|
2024-03-23 01:43:27 +01:00
|
|
|
import { AuthenticationSupabaseRepository } from "./supabase/repositories/Authentication"
|
|
|
|
import { GetHabitProgressHistorySupabaseRepository } from "./supabase/repositories/GetHabitProgressHistory"
|
|
|
|
import { GetHabitsByUserIdSupabaseRepository } from "./supabase/repositories/GetHabitsByUserId"
|
|
|
|
import { supabaseClient } from "./supabase/supabase"
|
2024-03-22 23:41:51 +01:00
|
|
|
import { AuthenticationPresenter } from "@/presentation/presenters/Authentication"
|
2024-03-15 22:48:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Repositories
|
|
|
|
*/
|
2024-03-22 23:41:51 +01:00
|
|
|
const authenticationRepository = new AuthenticationSupabaseRepository({
|
|
|
|
supabaseClient,
|
|
|
|
})
|
2024-03-16 00:36:44 +01:00
|
|
|
const getHabitProgressesRepository =
|
|
|
|
new GetHabitProgressHistorySupabaseRepository({
|
|
|
|
supabaseClient,
|
|
|
|
})
|
2024-03-15 22:48:28 +01:00
|
|
|
const getHabitsByUserIdRepository = new GetHabitsByUserIdSupabaseRepository({
|
|
|
|
supabaseClient,
|
|
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use Cases
|
|
|
|
*/
|
2024-03-22 23:41:51 +01:00
|
|
|
const authenticationUseCase = new AuthenticationUseCase({
|
|
|
|
authenticationRepository,
|
|
|
|
})
|
2024-03-15 22:48:28 +01:00
|
|
|
const retrieveHabitsTrackerUseCase = new RetrieveHabitsTrackerUseCase({
|
2024-03-16 00:36:44 +01:00
|
|
|
getHabitProgressHistoryRepository: getHabitProgressesRepository,
|
2024-03-15 22:48:28 +01:00
|
|
|
getHabitsByUserIdRepository,
|
|
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Presenters
|
|
|
|
*/
|
2024-03-22 23:41:51 +01:00
|
|
|
export const authenticationPresenter = new AuthenticationPresenter({
|
|
|
|
authenticationUseCase,
|
|
|
|
})
|
2024-03-15 22:48:28 +01:00
|
|
|
export const habitsTrackerPresenter = new HabitsTrackerPresenter({
|
|
|
|
retrieveHabitsTrackerUseCase,
|
|
|
|
})
|