1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/infrastructure/instances.ts

53 lines
1.8 KiB
TypeScript
Raw Normal View History

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"
import { AuthenticationPresenter } from "@/presentation/presenters/Authentication"
2024-04-05 00:08:40 +02:00
import { HabitCreateSupabaseRepository } from "./supabase/repositories/HabitCreate"
import { HabitCreateUseCase } from "@/domain/use-cases/HabitCreate"
2024-03-15 22:48:28 +01:00
/**
* Repositories
*/
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,
})
2024-04-05 00:08:40 +02:00
const habitCreateRepository = new HabitCreateSupabaseRepository({
supabaseClient,
})
2024-03-15 22:48:28 +01:00
/**
* Use Cases
*/
const authenticationUseCase = new AuthenticationUseCase({
authenticationRepository,
})
2024-04-05 00:08:40 +02:00
const habitCreateUseCase = new HabitCreateUseCase({
habitCreateRepository,
})
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
*/
export const authenticationPresenter = new AuthenticationPresenter({
authenticationUseCase,
})
2024-03-15 22:48:28 +01:00
export const habitsTrackerPresenter = new HabitsTrackerPresenter({
retrieveHabitsTrackerUseCase,
2024-04-05 00:08:40 +02:00
habitCreateUseCase,
2024-03-15 22:48:28 +01:00
})