mirror of
https://github.com/flutter/samples.git
synced 2025-11-10 14:58:34 +00:00
Compass app (#2446)
This commit is contained in:
8
compass_app/app/lib/config/assets.dart
Normal file
8
compass_app/app/lib/config/assets.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright 2024 The Flutter team. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
class Assets {
|
||||
static const activities = 'assets/activities.json';
|
||||
static const destinations = 'assets/destinations.json';
|
||||
}
|
||||
144
compass_app/app/lib/config/dependencies.dart
Normal file
144
compass_app/app/lib/config/dependencies.dart
Normal file
@@ -0,0 +1,144 @@
|
||||
// Copyright 2024 The Flutter team. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
import 'package:provider/single_child_widget.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
import '../data/repositories/auth/auth_repository.dart';
|
||||
import '../data/repositories/auth/auth_repository_dev.dart';
|
||||
import '../data/repositories/auth/auth_repository_remote.dart';
|
||||
import '../data/repositories/booking/booking_repository.dart';
|
||||
import '../data/repositories/booking/booking_repository_local.dart';
|
||||
import '../data/repositories/booking/booking_repository_remote.dart';
|
||||
import '../data/repositories/user/user_repository.dart';
|
||||
import '../data/repositories/user/user_repository_local.dart';
|
||||
import '../data/repositories/user/user_repository_remote.dart';
|
||||
import '../data/services/api/auth_api_client.dart';
|
||||
import '../data/services/local/local_data_service.dart';
|
||||
import '../data/services/shared_preferences_service.dart';
|
||||
import '../data/repositories/activity/activity_repository.dart';
|
||||
import '../data/repositories/activity/activity_repository_local.dart';
|
||||
import '../data/repositories/activity/activity_repository_remote.dart';
|
||||
import '../data/repositories/continent/continent_repository.dart';
|
||||
import '../data/repositories/continent/continent_repository_local.dart';
|
||||
import '../data/repositories/continent/continent_repository_remote.dart';
|
||||
import '../data/repositories/destination/destination_repository.dart';
|
||||
import '../data/repositories/destination/destination_repository_local.dart';
|
||||
import '../data/repositories/destination/destination_repository_remote.dart';
|
||||
import '../data/repositories/itinerary_config/itinerary_config_repository.dart';
|
||||
import '../data/repositories/itinerary_config/itinerary_config_repository_memory.dart';
|
||||
import '../data/services/api/api_client.dart';
|
||||
import '../domain/use_cases/booking/booking_create_use_case.dart';
|
||||
import '../domain/use_cases/booking/booking_share_use_case.dart';
|
||||
|
||||
/// Shared providers for all configurations.
|
||||
List<SingleChildWidget> _sharedProviders = [
|
||||
Provider(
|
||||
lazy: true,
|
||||
create: (context) => BookingCreateUseCase(
|
||||
destinationRepository: context.read(),
|
||||
activityRepository: context.read(),
|
||||
bookingRepository: context.read(),
|
||||
),
|
||||
),
|
||||
Provider(
|
||||
lazy: true,
|
||||
create: (context) => BookingShareUseCase.withSharePlus(),
|
||||
),
|
||||
];
|
||||
|
||||
/// Configure dependencies for remote data.
|
||||
/// This dependency list uses repositories that connect to a remote server.
|
||||
List<SingleChildWidget> get providersRemote {
|
||||
return [
|
||||
Provider(
|
||||
create: (context) => AuthApiClient(),
|
||||
),
|
||||
Provider(
|
||||
create: (context) => ApiClient(),
|
||||
),
|
||||
Provider(
|
||||
create: (context) => SharedPreferencesService(),
|
||||
),
|
||||
ChangeNotifierProvider(
|
||||
create: (context) => AuthRepositoryRemote(
|
||||
authApiClient: context.read(),
|
||||
apiClient: context.read(),
|
||||
sharedPreferencesService: context.read(),
|
||||
) as AuthRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => DestinationRepositoryRemote(
|
||||
apiClient: context.read(),
|
||||
) as DestinationRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => ContinentRepositoryRemote(
|
||||
apiClient: context.read(),
|
||||
) as ContinentRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => ActivityRepositoryRemote(
|
||||
apiClient: context.read(),
|
||||
) as ActivityRepository,
|
||||
),
|
||||
Provider.value(
|
||||
value: ItineraryConfigRepositoryMemory() as ItineraryConfigRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => BookingRepositoryRemote(
|
||||
apiClient: context.read(),
|
||||
) as BookingRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => UserRepositoryRemote(
|
||||
apiClient: context.read(),
|
||||
) as UserRepository,
|
||||
),
|
||||
..._sharedProviders,
|
||||
];
|
||||
}
|
||||
|
||||
/// Configure dependencies for local data.
|
||||
/// This dependency list uses repositories that provide local data.
|
||||
/// The user is always logged in.
|
||||
List<SingleChildWidget> get providersLocal {
|
||||
return [
|
||||
ChangeNotifierProvider.value(
|
||||
value: AuthRepositoryDev() as AuthRepository,
|
||||
),
|
||||
Provider.value(
|
||||
value: LocalDataService(),
|
||||
),
|
||||
Provider(
|
||||
create: (context) => DestinationRepositoryLocal(
|
||||
localDataService: context.read(),
|
||||
) as DestinationRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => ContinentRepositoryLocal(
|
||||
localDataService: context.read(),
|
||||
) as ContinentRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => ActivityRepositoryLocal(
|
||||
localDataService: context.read(),
|
||||
) as ActivityRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => BookingRepositoryLocal(
|
||||
localDataService: context.read(),
|
||||
) as BookingRepository,
|
||||
),
|
||||
Provider.value(
|
||||
value: ItineraryConfigRepositoryMemory() as ItineraryConfigRepository,
|
||||
),
|
||||
Provider(
|
||||
create: (context) => UserRepositoryLocal(
|
||||
localDataService: context.read(),
|
||||
) as UserRepository,
|
||||
),
|
||||
..._sharedProviders,
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user