mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 04:38:49 +05:00
61 lines
1.5 KiB
Dart
61 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:neomovies_mobile/data/models/movie.dart';
|
|
import 'package:neomovies_mobile/data/repositories/movie_repository.dart';
|
|
import 'package:neomovies_mobile/data/api/api_client.dart';
|
|
|
|
class MovieDetailProvider with ChangeNotifier {
|
|
final MovieRepository _movieRepository;
|
|
final ApiClient _apiClient;
|
|
|
|
MovieDetailProvider(this._movieRepository, this._apiClient);
|
|
|
|
bool _isLoading = false;
|
|
bool get isLoading => _isLoading;
|
|
|
|
bool _isImdbLoading = false;
|
|
bool get isImdbLoading => _isImdbLoading;
|
|
|
|
Movie? _movie;
|
|
Movie? get movie => _movie;
|
|
|
|
String? _imdbId;
|
|
String? get imdbId => _imdbId;
|
|
|
|
String? _error;
|
|
String? get error => _error;
|
|
|
|
Future<void> loadMedia(int mediaId, String mediaType) async {
|
|
_isLoading = true;
|
|
_isImdbLoading = true;
|
|
_error = null;
|
|
_movie = null;
|
|
_imdbId = null;
|
|
notifyListeners();
|
|
|
|
try {
|
|
if (mediaType == 'movie') {
|
|
_movie = await _movieRepository.getMovieById(mediaId.toString());
|
|
} else {
|
|
_movie = await _movieRepository.getTvById(mediaId.toString());
|
|
}
|
|
_isLoading = false;
|
|
notifyListeners();
|
|
|
|
if (_movie != null) {
|
|
_imdbId = await _apiClient.getImdbId(mediaId, mediaType);
|
|
}
|
|
} catch (e) {
|
|
_error = e.toString();
|
|
} finally {
|
|
_isLoading = false;
|
|
_isImdbLoading = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
// Backward compatibility
|
|
Future<void> loadMovie(int movieId) async {
|
|
await loadMedia(movieId, 'movie');
|
|
}
|
|
}
|