lab5 с новой апишкой и поиском
This commit is contained in:
parent
e7e2628e8b
commit
9d5a4fb331
@ -2,7 +2,7 @@ import 'package:json_annotation/json_annotation.dart';
|
|||||||
part 'news_dto.g.dart';
|
part 'news_dto.g.dart';
|
||||||
@JsonSerializable(createToJson: false)
|
@JsonSerializable(createToJson: false)
|
||||||
class NewsDto{
|
class NewsDto{
|
||||||
@JsonKey(name: 'Главное')
|
@JsonKey(name: 'articles')
|
||||||
final List<NewAttributesDataDto>? data;
|
final List<NewAttributesDataDto>? data;
|
||||||
const NewsDto({this.data});
|
const NewsDto({this.data});
|
||||||
factory NewsDto.fromJson(Map<String, dynamic> json) => _$NewsDtoFromJson(json);
|
factory NewsDto.fromJson(Map<String, dynamic> json) => _$NewsDtoFromJson(json);
|
||||||
@ -12,10 +12,10 @@ class NewsDto{
|
|||||||
@JsonSerializable(createToJson: false)
|
@JsonSerializable(createToJson: false)
|
||||||
class NewAttributesDataDto{
|
class NewAttributesDataDto{
|
||||||
final String? title;
|
final String? title;
|
||||||
final String? summary;
|
final String? description;
|
||||||
@JsonKey(name: 'image_link')
|
@JsonKey(name: 'urlToImage')
|
||||||
final String? imagelink;
|
final String? imagelink;
|
||||||
|
|
||||||
const NewAttributesDataDto({this.title, this.summary, this.imagelink });
|
const NewAttributesDataDto({this.title, this.description, this.imagelink });
|
||||||
factory NewAttributesDataDto.fromJson(Map<String, dynamic> json) => _$NewAttributesDataDtoFromJson(json);
|
factory NewAttributesDataDto.fromJson(Map<String, dynamic> json) => _$NewAttributesDataDtoFromJson(json);
|
||||||
}
|
}
|
@ -7,7 +7,7 @@ part of 'news_dto.dart';
|
|||||||
// **************************************************************************
|
// **************************************************************************
|
||||||
|
|
||||||
NewsDto _$NewsDtoFromJson(Map<String, dynamic> json) => NewsDto(
|
NewsDto _$NewsDtoFromJson(Map<String, dynamic> json) => NewsDto(
|
||||||
data: (json['Главное'] as List<dynamic>?)
|
data: (json['articles'] as List<dynamic>?)
|
||||||
?.map((e) => NewAttributesDataDto.fromJson(e as Map<String, dynamic>))
|
?.map((e) => NewAttributesDataDto.fromJson(e as Map<String, dynamic>))
|
||||||
.toList(),
|
.toList(),
|
||||||
);
|
);
|
||||||
@ -17,6 +17,6 @@ NewAttributesDataDto _$NewAttributesDataDtoFromJson(
|
|||||||
Map<String, dynamic> json) =>
|
Map<String, dynamic> json) =>
|
||||||
NewAttributesDataDto(
|
NewAttributesDataDto(
|
||||||
title: json['title'] as String?,
|
title: json['title'] as String?,
|
||||||
summary: json['summary'] as String?,
|
description: json['description'] as String?,
|
||||||
imagelink: json['image_link'] as String?,
|
imagelink: json['urlToImage'] as String?,
|
||||||
);
|
);
|
||||||
|
@ -5,6 +5,6 @@ extension NewDataDtoToModel on NewAttributesDataDto{
|
|||||||
CardData toDomain() => CardData(
|
CardData toDomain() => CardData(
|
||||||
text: title ?? 'UNKNOWN',
|
text: title ?? 'UNKNOWN',
|
||||||
imageUrl: imagelink,
|
imageUrl: imagelink,
|
||||||
descText: summary ?? 'NOTHING',
|
descText: description ?? 'NOTHING',
|
||||||
);
|
);
|
||||||
}
|
}
|
@ -11,16 +11,15 @@ class BbcRepository extends ApiInterface {
|
|||||||
requestHeader: true,
|
requestHeader: true,
|
||||||
requestBody: true,
|
requestBody: true,
|
||||||
));
|
));
|
||||||
static const String _baseUrl = 'https://bbc-api.vercel.app';
|
static const String _baseUrl = 'https://newsapi.org/v2';
|
||||||
|
static const String _apiKey = '&apiKey=b9848c2aa43e4a0ba12dfe925db8513c';
|
||||||
@override
|
@override
|
||||||
Future<List<CardData>?> loadData(
|
Future<List<CardData>?> loadData(
|
||||||
{String? q, OnErrorCallback? onError}) async {
|
{String? q, OnErrorCallback? onError}) async {
|
||||||
try {
|
try {
|
||||||
const String url = '$_baseUrl/news?lang=russian';
|
final String url = '$_baseUrl/everything?q=$q$_apiKey';
|
||||||
final Response<dynamic> response = await _dio.get<Map<dynamic, dynamic>>(
|
final Response<dynamic> response = await _dio.get<Map<dynamic, dynamic>>(
|
||||||
url,
|
url,
|
||||||
//queryParameters: q != null ? {'filter[name_cont]': q} : null,
|
|
||||||
);
|
);
|
||||||
final NewsDto dto =
|
final NewsDto dto =
|
||||||
NewsDto.fromJson(response.data as Map<String, dynamic>);
|
NewsDto.fromJson(response.data as Map<String, dynamic>);
|
||||||
|
15
lib/presentation/home_page/bloc/bloc.dart
Normal file
15
lib/presentation/home_page/bloc/bloc.dart
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
|
import 'package:pmu/data/repositories/bbc_repository.dart';
|
||||||
|
import 'package:pmu/presentation/home_page/bloc/events.dart';
|
||||||
|
import 'package:pmu/presentation/home_page/bloc/state.dart';
|
||||||
|
|
||||||
|
class HomeBloc extends Bloc<HomeEvent,HomeState>{
|
||||||
|
final BbcRepository repo;
|
||||||
|
HomeBloc(this.repo) : super(const HomeState()){
|
||||||
|
on<HomeLoadDataEvent>(_onLoadData);
|
||||||
|
}
|
||||||
|
// мы должны изменить наше состояние, передаем внутрь новое состояние
|
||||||
|
void _onLoadData(HomeLoadDataEvent event, Emitter<HomeState> emit){
|
||||||
|
emit(state.copyWith(data: repo.loadData()));
|
||||||
|
}
|
||||||
|
}
|
6
lib/presentation/home_page/bloc/events.dart
Normal file
6
lib/presentation/home_page/bloc/events.dart
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
abstract class HomeEvent{
|
||||||
|
const HomeEvent();
|
||||||
|
}
|
||||||
|
class HomeLoadDataEvent extends HomeEvent{
|
||||||
|
const HomeLoadDataEvent();
|
||||||
|
}
|
10
lib/presentation/home_page/bloc/state.dart
Normal file
10
lib/presentation/home_page/bloc/state.dart
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import 'package:equatable/equatable.dart';
|
||||||
|
import 'package:pmu/domain/models/card.dart';
|
||||||
|
|
||||||
|
class HomeState extends Equatable{
|
||||||
|
final Future<List<CardData>?>? data;
|
||||||
|
const HomeState({this.data});
|
||||||
|
HomeState copyWith({Future<List<CardData>?>? data}) => HomeState(data: data ?? this.data);
|
||||||
|
@override
|
||||||
|
List<Object?> get props => [data];
|
||||||
|
}
|
40
pubspec.lock
40
pubspec.lock
@ -38,6 +38,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.11.0"
|
version: "2.11.0"
|
||||||
|
bloc:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: bloc
|
||||||
|
sha256: "106842ad6569f0b60297619e9e0b1885c2fb9bf84812935490e6c5275777804e"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "8.1.4"
|
||||||
boolean_selector:
|
boolean_selector:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -198,6 +206,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.0"
|
version: "2.0.0"
|
||||||
|
equatable:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: equatable
|
||||||
|
sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.0.5"
|
||||||
fake_async:
|
fake_async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -227,6 +243,14 @@ packages:
|
|||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.0"
|
version: "0.0.0"
|
||||||
|
flutter_bloc:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: flutter_bloc
|
||||||
|
sha256: b594505eac31a0518bdcb4b5b79573b8d9117b193cc80cc12e17d639b10aa27a
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "8.1.6"
|
||||||
flutter_lints:
|
flutter_lints:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
@ -392,6 +416,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.6"
|
version: "1.0.6"
|
||||||
|
nested:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: nested
|
||||||
|
sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.0"
|
||||||
package_config:
|
package_config:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -424,6 +456,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.0"
|
version: "1.4.0"
|
||||||
|
provider:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: provider
|
||||||
|
sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "6.1.2"
|
||||||
pub_semver:
|
pub_semver:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -38,6 +38,8 @@ dependencies:
|
|||||||
json_annotation: ^4.8.1
|
json_annotation: ^4.8.1
|
||||||
dio: ^5.4.2+1
|
dio: ^5.4.2+1
|
||||||
pretty_dio_logger: ^1.3.1
|
pretty_dio_logger: ^1.3.1
|
||||||
|
equatable: ^2.0.5
|
||||||
|
flutter_bloc: ^8.1.5
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
Loading…
Reference in New Issue
Block a user