initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
import '../../../core/models/models.dart';
|
||||
|
||||
part 'dashboard_summary.freezed.dart';
|
||||
|
||||
/// Client-side composition of the two data sources the Dashboard needs —
|
||||
/// no server endpoint returns this shape directly. Not JSON-serializable
|
||||
/// (nothing here is ever sent/stored as JSON), so no `fromJson`/`toJson`.
|
||||
@freezed
|
||||
sealed class DashboardSummary with _$DashboardSummary {
|
||||
const factory DashboardSummary({required List<Service> services, required NodeInfo node}) =
|
||||
_DashboardSummary;
|
||||
}
|
||||
@@ -0,0 +1,292 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
// coverage:ignore-file
|
||||
// ignore_for_file: type=lint
|
||||
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
|
||||
|
||||
part of 'dashboard_summary.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// FreezedGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// dart format off
|
||||
T _$identity<T>(T value) => value;
|
||||
/// @nodoc
|
||||
mixin _$DashboardSummary {
|
||||
|
||||
List<Service> get services; NodeInfo get node;
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
$DashboardSummaryCopyWith<DashboardSummary> get copyWith => _$DashboardSummaryCopyWithImpl<DashboardSummary>(this as DashboardSummary, _$identity);
|
||||
|
||||
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is DashboardSummary&&const DeepCollectionEquality().equals(other.services, services)&&(identical(other.node, node) || other.node == node));
|
||||
}
|
||||
|
||||
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,const DeepCollectionEquality().hash(services),node);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'DashboardSummary(services: $services, node: $node)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class $DashboardSummaryCopyWith<$Res> {
|
||||
factory $DashboardSummaryCopyWith(DashboardSummary value, $Res Function(DashboardSummary) _then) = _$DashboardSummaryCopyWithImpl;
|
||||
@useResult
|
||||
$Res call({
|
||||
List<Service> services, NodeInfo node
|
||||
});
|
||||
|
||||
|
||||
$NodeInfoCopyWith<$Res> get node;
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class _$DashboardSummaryCopyWithImpl<$Res>
|
||||
implements $DashboardSummaryCopyWith<$Res> {
|
||||
_$DashboardSummaryCopyWithImpl(this._self, this._then);
|
||||
|
||||
final DashboardSummary _self;
|
||||
final $Res Function(DashboardSummary) _then;
|
||||
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline') @override $Res call({Object? services = null,Object? node = null,}) {
|
||||
return _then(_self.copyWith(
|
||||
services: null == services ? _self.services : services // ignore: cast_nullable_to_non_nullable
|
||||
as List<Service>,node: null == node ? _self.node : node // ignore: cast_nullable_to_non_nullable
|
||||
as NodeInfo,
|
||||
));
|
||||
}
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$NodeInfoCopyWith<$Res> get node {
|
||||
|
||||
return $NodeInfoCopyWith<$Res>(_self.node, (value) {
|
||||
return _then(_self.copyWith(node: value));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// Adds pattern-matching-related methods to [DashboardSummary].
|
||||
extension DashboardSummaryPatterns on DashboardSummary {
|
||||
/// A variant of `map` that fallback to returning `orElse`.
|
||||
///
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case final Subclass value:
|
||||
/// return ...;
|
||||
/// case _:
|
||||
/// return orElse();
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult maybeMap<TResult extends Object?>(TResult Function( _DashboardSummary value)? $default,{required TResult orElse(),}){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary() when $default != null:
|
||||
return $default(_that);case _:
|
||||
return orElse();
|
||||
|
||||
}
|
||||
}
|
||||
/// A `switch`-like method, using callbacks.
|
||||
///
|
||||
/// Callbacks receives the raw object, upcasted.
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case final Subclass value:
|
||||
/// return ...;
|
||||
/// case final Subclass2 value:
|
||||
/// return ...;
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult map<TResult extends Object?>(TResult Function( _DashboardSummary value) $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary():
|
||||
return $default(_that);}
|
||||
}
|
||||
/// A variant of `map` that fallback to returning `null`.
|
||||
///
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case final Subclass value:
|
||||
/// return ...;
|
||||
/// case _:
|
||||
/// return null;
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult? mapOrNull<TResult extends Object?>(TResult? Function( _DashboardSummary value)? $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary() when $default != null:
|
||||
return $default(_that);case _:
|
||||
return null;
|
||||
|
||||
}
|
||||
}
|
||||
/// A variant of `when` that fallback to an `orElse` callback.
|
||||
///
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case Subclass(:final field):
|
||||
/// return ...;
|
||||
/// case _:
|
||||
/// return orElse();
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult maybeWhen<TResult extends Object?>(TResult Function( List<Service> services, NodeInfo node)? $default,{required TResult orElse(),}) {final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary() when $default != null:
|
||||
return $default(_that.services,_that.node);case _:
|
||||
return orElse();
|
||||
|
||||
}
|
||||
}
|
||||
/// A `switch`-like method, using callbacks.
|
||||
///
|
||||
/// As opposed to `map`, this offers destructuring.
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case Subclass(:final field):
|
||||
/// return ...;
|
||||
/// case Subclass2(:final field2):
|
||||
/// return ...;
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult when<TResult extends Object?>(TResult Function( List<Service> services, NodeInfo node) $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary():
|
||||
return $default(_that.services,_that.node);}
|
||||
}
|
||||
/// A variant of `when` that fallback to returning `null`
|
||||
///
|
||||
/// It is equivalent to doing:
|
||||
/// ```dart
|
||||
/// switch (sealedClass) {
|
||||
/// case Subclass(:final field):
|
||||
/// return ...;
|
||||
/// case _:
|
||||
/// return null;
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
@optionalTypeArgs TResult? whenOrNull<TResult extends Object?>(TResult? Function( List<Service> services, NodeInfo node)? $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _DashboardSummary() when $default != null:
|
||||
return $default(_that.services,_that.node);case _:
|
||||
return null;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
||||
|
||||
class _DashboardSummary implements DashboardSummary {
|
||||
const _DashboardSummary({required final List<Service> services, required this.node}): _services = services;
|
||||
|
||||
|
||||
final List<Service> _services;
|
||||
@override List<Service> get services {
|
||||
if (_services is EqualUnmodifiableListView) return _services;
|
||||
// ignore: implicit_dynamic_type
|
||||
return EqualUnmodifiableListView(_services);
|
||||
}
|
||||
|
||||
@override final NodeInfo node;
|
||||
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
_$DashboardSummaryCopyWith<_DashboardSummary> get copyWith => __$DashboardSummaryCopyWithImpl<_DashboardSummary>(this, _$identity);
|
||||
|
||||
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is _DashboardSummary&&const DeepCollectionEquality().equals(other._services, _services)&&(identical(other.node, node) || other.node == node));
|
||||
}
|
||||
|
||||
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,const DeepCollectionEquality().hash(_services),node);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'DashboardSummary(services: $services, node: $node)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class _$DashboardSummaryCopyWith<$Res> implements $DashboardSummaryCopyWith<$Res> {
|
||||
factory _$DashboardSummaryCopyWith(_DashboardSummary value, $Res Function(_DashboardSummary) _then) = __$DashboardSummaryCopyWithImpl;
|
||||
@override @useResult
|
||||
$Res call({
|
||||
List<Service> services, NodeInfo node
|
||||
});
|
||||
|
||||
|
||||
@override $NodeInfoCopyWith<$Res> get node;
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class __$DashboardSummaryCopyWithImpl<$Res>
|
||||
implements _$DashboardSummaryCopyWith<$Res> {
|
||||
__$DashboardSummaryCopyWithImpl(this._self, this._then);
|
||||
|
||||
final _DashboardSummary _self;
|
||||
final $Res Function(_DashboardSummary) _then;
|
||||
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @pragma('vm:prefer-inline') $Res call({Object? services = null,Object? node = null,}) {
|
||||
return _then(_DashboardSummary(
|
||||
services: null == services ? _self._services : services // ignore: cast_nullable_to_non_nullable
|
||||
as List<Service>,node: null == node ? _self.node : node // ignore: cast_nullable_to_non_nullable
|
||||
as NodeInfo,
|
||||
));
|
||||
}
|
||||
|
||||
/// Create a copy of DashboardSummary
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$NodeInfoCopyWith<$Res> get node {
|
||||
|
||||
return $NodeInfoCopyWith<$Res>(_self.node, (value) {
|
||||
return _then(_self.copyWith(node: value));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// dart format on
|
||||
@@ -0,0 +1,39 @@
|
||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||
|
||||
import '../../../core/network/api_exception.dart';
|
||||
import '../../../core/polling/polling_async_notifier.dart';
|
||||
import '../../../data/repositories/node_repository.dart';
|
||||
import '../../../data/repositories/services_repository.dart';
|
||||
import 'dashboard_summary.dart';
|
||||
|
||||
part 'dashboard_summary_provider.g.dart';
|
||||
|
||||
/// Polled every 20s while the Dashboard is mounted — deliberately its own
|
||||
/// notifier rather than watching `servicesListProvider`/`currentNodeProvider`
|
||||
/// directly, so Dashboard auto-refreshes independent of whether the
|
||||
/// Services screen (manual-refresh only) happens to be open too.
|
||||
@riverpod
|
||||
class DashboardSummaryNotifier extends _$DashboardSummaryNotifier
|
||||
with PollingMixin<DashboardSummary> {
|
||||
@override
|
||||
Duration get interval => const Duration(seconds: 20);
|
||||
|
||||
@override
|
||||
Future<DashboardSummary> fetch() async {
|
||||
final servicesRepo = ref.watch(servicesRepositoryProvider);
|
||||
final nodeRepo = ref.watch(nodeRepositoryProvider);
|
||||
if (servicesRepo == null || nodeRepo == null) {
|
||||
// The router redirects to Settings whenever there's no active
|
||||
// connection, so reaching this in the UI would mean that redirect
|
||||
// hasn't fired yet — an ApiException here (vs. a raw StateError)
|
||||
// keeps error handling on the same path as every other screen.
|
||||
throw const ApiException.unknown('No active connection.');
|
||||
}
|
||||
final services = await servicesRepo.getAll();
|
||||
final node = await nodeRepo.getNode();
|
||||
return DashboardSummary(services: services, node: node);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<DashboardSummary> build() => startPolling();
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'dashboard_summary_provider.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
/// Polled every 20s while the Dashboard is mounted — deliberately its own
|
||||
/// notifier rather than watching `servicesListProvider`/`currentNodeProvider`
|
||||
/// directly, so Dashboard auto-refreshes independent of whether the
|
||||
/// Services screen (manual-refresh only) happens to be open too.
|
||||
|
||||
@ProviderFor(DashboardSummaryNotifier)
|
||||
const dashboardSummaryProvider = DashboardSummaryNotifierProvider._();
|
||||
|
||||
/// Polled every 20s while the Dashboard is mounted — deliberately its own
|
||||
/// notifier rather than watching `servicesListProvider`/`currentNodeProvider`
|
||||
/// directly, so Dashboard auto-refreshes independent of whether the
|
||||
/// Services screen (manual-refresh only) happens to be open too.
|
||||
final class DashboardSummaryNotifierProvider
|
||||
extends $AsyncNotifierProvider<DashboardSummaryNotifier, DashboardSummary> {
|
||||
/// Polled every 20s while the Dashboard is mounted — deliberately its own
|
||||
/// notifier rather than watching `servicesListProvider`/`currentNodeProvider`
|
||||
/// directly, so Dashboard auto-refreshes independent of whether the
|
||||
/// Services screen (manual-refresh only) happens to be open too.
|
||||
const DashboardSummaryNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
retry: null,
|
||||
name: r'dashboardSummaryProvider',
|
||||
isAutoDispose: true,
|
||||
dependencies: null,
|
||||
$allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@override
|
||||
String debugGetCreateSourceHash() => _$dashboardSummaryNotifierHash();
|
||||
|
||||
@$internal
|
||||
@override
|
||||
DashboardSummaryNotifier create() => DashboardSummaryNotifier();
|
||||
}
|
||||
|
||||
String _$dashboardSummaryNotifierHash() =>
|
||||
r'807d0df3c8b7ce9652ae56fdba542b108aa99456';
|
||||
|
||||
/// Polled every 20s while the Dashboard is mounted — deliberately its own
|
||||
/// notifier rather than watching `servicesListProvider`/`currentNodeProvider`
|
||||
/// directly, so Dashboard auto-refreshes independent of whether the
|
||||
/// Services screen (manual-refresh only) happens to be open too.
|
||||
|
||||
abstract class _$DashboardSummaryNotifier
|
||||
extends $AsyncNotifier<DashboardSummary> {
|
||||
FutureOr<DashboardSummary> build();
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref =
|
||||
this.ref as $Ref<AsyncValue<DashboardSummary>, DashboardSummary>;
|
||||
final element =
|
||||
ref.element
|
||||
as $ClassProviderElement<
|
||||
AnyNotifier<AsyncValue<DashboardSummary>, DashboardSummary>,
|
||||
AsyncValue<DashboardSummary>,
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user