This commit is contained in:
Fabian Freund
2026-03-13 19:14:39 +01:00
parent b9e97c4d41
commit 3262bb34b5
24 changed files with 8383 additions and 10 deletions
@@ -0,0 +1,29 @@
/*
* Copyright (c) 2024-2026 Fabian Freund.
*
* This file is part of WebLibre
* (see https://weblibre.eu).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:weblibre/features/quotes/data/database/definitions.drift.dart';
import 'package:weblibre/features/quotes/domain/repositories/quotes.dart';
part 'providers.g.dart';
@Riverpod()
Future<Quote?> randomQuote(Ref ref) {
return ref.watch(quotesRepositoryProvider.notifier).getRandomQuote();
}
@@ -0,0 +1,43 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'providers.dart';
// **************************************************************************
// RiverpodGenerator
// **************************************************************************
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
@ProviderFor(randomQuote)
final randomQuoteProvider = RandomQuoteProvider._();
final class RandomQuoteProvider
extends $FunctionalProvider<AsyncValue<Quote?>, Quote?, FutureOr<Quote?>>
with $FutureModifier<Quote?>, $FutureProvider<Quote?> {
RandomQuoteProvider._()
: super(
from: null,
argument: null,
retry: null,
name: r'randomQuoteProvider',
isAutoDispose: true,
dependencies: null,
$allTransitiveDependencies: null,
);
@override
String debugGetCreateSourceHash() => _$randomQuoteHash();
@$internal
@override
$FutureProviderElement<Quote?> $createElement($ProviderPointer pointer) =>
$FutureProviderElement(pointer);
@override
FutureOr<Quote?> create(Ref ref) {
return randomQuote(ref);
}
}
String _$randomQuoteHash() => r'045fe6256f03e90d2fa5e42c574d58b4aa2cc1d7';
@@ -0,0 +1,38 @@
/*
* Copyright (c) 2024-2026 Fabian Freund.
*
* This file is part of WebLibre
* (see https://weblibre.eu).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:weblibre/features/quotes/data/database/definitions.drift.dart';
import 'package:weblibre/features/quotes/data/providers.dart';
part 'quotes.g.dart';
@Riverpod(keepAlive: true)
class QuotesRepository extends _$QuotesRepository {
Future<Quote?> getRandomQuote() {
return ref
.read(quotesDatabaseProvider)
.quoteDao
.getRandomQuote()
.getSingleOrNull();
}
@override
void build() {}
}
@@ -0,0 +1,62 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'quotes.dart';
// **************************************************************************
// RiverpodGenerator
// **************************************************************************
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
@ProviderFor(QuotesRepository)
final quotesRepositoryProvider = QuotesRepositoryProvider._();
final class QuotesRepositoryProvider
extends $NotifierProvider<QuotesRepository, void> {
QuotesRepositoryProvider._()
: super(
from: null,
argument: null,
retry: null,
name: r'quotesRepositoryProvider',
isAutoDispose: false,
dependencies: null,
$allTransitiveDependencies: null,
);
@override
String debugGetCreateSourceHash() => _$quotesRepositoryHash();
@$internal
@override
QuotesRepository create() => QuotesRepository();
/// {@macro riverpod.override_with_value}
Override overrideWithValue(void value) {
return $ProviderOverride(
origin: this,
providerOverride: $SyncValueProvider<void>(value),
);
}
}
String _$quotesRepositoryHash() => r'2e30c503da5619a1d15918029908890738bf5aab';
abstract class _$QuotesRepository extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
as $ClassProviderElement<
AnyNotifier<void, void>,
void,
Object?,
Object?
>;
element.handleCreate(ref, build);
}
}