🐛 Fix route bug

This commit is contained in:
2026-01-02 16:59:46 +08:00
parent 84f5677260
commit 8c1ad94555
64 changed files with 335 additions and 351 deletions

View File

@@ -10,7 +10,7 @@ part of 'hub.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(publisherStats)
const publisherStatsProvider = PublisherStatsFamily._();
final publisherStatsProvider = PublisherStatsFamily._();
final class PublisherStatsProvider
extends
@@ -22,7 +22,7 @@ final class PublisherStatsProvider
with
$FutureModifier<SnPublisherStats?>,
$FutureProvider<SnPublisherStats?> {
const PublisherStatsProvider._({
PublisherStatsProvider._({
required PublisherStatsFamily super.from,
required String? super.argument,
}) : super(
@@ -70,7 +70,7 @@ String _$publisherStatsHash() => r'eea4ed98bf165cc785874f83b912bb7e23d1f7bc';
final class PublisherStatsFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnPublisherStats?>, String?> {
const PublisherStatsFamily._()
PublisherStatsFamily._()
: super(
retry: null,
name: r'publisherStatsProvider',
@@ -87,7 +87,7 @@ final class PublisherStatsFamily extends $Family
}
@ProviderFor(publisherHeatmap)
const publisherHeatmapProvider = PublisherHeatmapFamily._();
final publisherHeatmapProvider = PublisherHeatmapFamily._();
final class PublisherHeatmapProvider
extends
@@ -97,7 +97,7 @@ final class PublisherHeatmapProvider
FutureOr<SnHeatmap?>
>
with $FutureModifier<SnHeatmap?>, $FutureProvider<SnHeatmap?> {
const PublisherHeatmapProvider._({
PublisherHeatmapProvider._({
required PublisherHeatmapFamily super.from,
required String? super.argument,
}) : super(
@@ -144,7 +144,7 @@ String _$publisherHeatmapHash() => r'5f70c55e14629ec8628445a317888e02fccd9af2';
final class PublisherHeatmapFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnHeatmap?>, String?> {
const PublisherHeatmapFamily._()
PublisherHeatmapFamily._()
: super(
retry: null,
name: r'publisherHeatmapProvider',
@@ -161,7 +161,7 @@ final class PublisherHeatmapFamily extends $Family
}
@ProviderFor(publisherIdentity)
const publisherIdentityProvider = PublisherIdentityFamily._();
final publisherIdentityProvider = PublisherIdentityFamily._();
final class PublisherIdentityProvider
extends
@@ -173,7 +173,7 @@ final class PublisherIdentityProvider
with
$FutureModifier<SnPublisherMember?>,
$FutureProvider<SnPublisherMember?> {
const PublisherIdentityProvider._({
PublisherIdentityProvider._({
required PublisherIdentityFamily super.from,
required String super.argument,
}) : super(
@@ -221,7 +221,7 @@ String _$publisherIdentityHash() => r'299372f25fa4b2bf8e11a8ba2d645100fc38e76f';
final class PublisherIdentityFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnPublisherMember?>, String> {
const PublisherIdentityFamily._()
PublisherIdentityFamily._()
: super(
retry: null,
name: r'publisherIdentityProvider',
@@ -238,7 +238,7 @@ final class PublisherIdentityFamily extends $Family
}
@ProviderFor(publisherFeatures)
const publisherFeaturesProvider = PublisherFeaturesFamily._();
final publisherFeaturesProvider = PublisherFeaturesFamily._();
final class PublisherFeaturesProvider
extends
@@ -250,7 +250,7 @@ final class PublisherFeaturesProvider
with
$FutureModifier<Map<String, bool>>,
$FutureProvider<Map<String, bool>> {
const PublisherFeaturesProvider._({
PublisherFeaturesProvider._({
required PublisherFeaturesFamily super.from,
required String? super.argument,
}) : super(
@@ -298,7 +298,7 @@ String _$publisherFeaturesHash() => r'08bace2d9a3da227ecec0cbf8709e55ee0646ca2';
final class PublisherFeaturesFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<Map<String, bool>>, String?> {
const PublisherFeaturesFamily._()
PublisherFeaturesFamily._()
: super(
retry: null,
name: r'publisherFeaturesProvider',
@@ -315,7 +315,7 @@ final class PublisherFeaturesFamily extends $Family
}
@ProviderFor(publisherInvites)
const publisherInvitesProvider = PublisherInvitesProvider._();
final publisherInvitesProvider = PublisherInvitesProvider._();
final class PublisherInvitesProvider
extends
@@ -327,7 +327,7 @@ final class PublisherInvitesProvider
with
$FutureModifier<List<SnPublisherMember>>,
$FutureProvider<List<SnPublisherMember>> {
const PublisherInvitesProvider._()
PublisherInvitesProvider._()
: super(
from: null,
argument: null,
@@ -356,7 +356,7 @@ final class PublisherInvitesProvider
String _$publisherInvitesHash() => r'93aafc2f02af0a7a055ec1770b3999363dfaabdc';
@ProviderFor(publisherActorStatus)
const publisherActorStatusProvider = PublisherActorStatusFamily._();
final publisherActorStatusProvider = PublisherActorStatusFamily._();
final class PublisherActorStatusProvider
extends
@@ -368,7 +368,7 @@ final class PublisherActorStatusProvider
with
$FutureModifier<SnActorStatusResponse>,
$FutureProvider<SnActorStatusResponse> {
const PublisherActorStatusProvider._({
PublisherActorStatusProvider._({
required PublisherActorStatusFamily super.from,
required String? super.argument,
}) : super(
@@ -417,7 +417,7 @@ String _$publisherActorStatusHash() =>
final class PublisherActorStatusFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnActorStatusResponse>, String?> {
const PublisherActorStatusFamily._()
PublisherActorStatusFamily._()
: super(
retry: null,
name: r'publisherActorStatusProvider',

View File

@@ -10,7 +10,7 @@ part of 'poll_list.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(pollWithStats)
const pollWithStatsProvider = PollWithStatsFamily._();
final pollWithStatsProvider = PollWithStatsFamily._();
final class PollWithStatsProvider
extends
@@ -20,7 +20,7 @@ final class PollWithStatsProvider
FutureOr<SnPollWithStats>
>
with $FutureModifier<SnPollWithStats>, $FutureProvider<SnPollWithStats> {
const PollWithStatsProvider._({
PollWithStatsProvider._({
required PollWithStatsFamily super.from,
required String super.argument,
}) : super(
@@ -68,7 +68,7 @@ String _$pollWithStatsHash() => r'6bb910046ce1e09368f9922dbec52fdc2cc86740';
final class PollWithStatsFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnPollWithStats>, String> {
const PollWithStatsFamily._()
PollWithStatsFamily._()
: super(
retry: null,
name: r'pollWithStatsProvider',

View File

@@ -10,7 +10,7 @@ part of 'publishers_form.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(publishersManaged)
const publishersManagedProvider = PublishersManagedProvider._();
final publishersManagedProvider = PublishersManagedProvider._();
final class PublishersManagedProvider
extends
@@ -22,7 +22,7 @@ final class PublishersManagedProvider
with
$FutureModifier<List<SnPublisher>>,
$FutureProvider<List<SnPublisher>> {
const PublishersManagedProvider._()
PublishersManagedProvider._()
: super(
from: null,
argument: null,
@@ -51,7 +51,7 @@ final class PublishersManagedProvider
String _$publishersManagedHash() => r'ea83759fed9bd5119738b4d09f12b4476959e0a3';
@ProviderFor(publisherNullable)
const publisherNullableProvider = PublisherNullableFamily._();
final publisherNullableProvider = PublisherNullableFamily._();
final class PublisherNullableProvider
extends
@@ -61,7 +61,7 @@ final class PublisherNullableProvider
FutureOr<SnPublisher?>
>
with $FutureModifier<SnPublisher?>, $FutureProvider<SnPublisher?> {
const PublisherNullableProvider._({
PublisherNullableProvider._({
required PublisherNullableFamily super.from,
required String? super.argument,
}) : super(
@@ -109,7 +109,7 @@ String _$publisherNullableHash() => r'49b28083a2f351c5e5cde0b1a97f6c7503969041';
final class PublisherNullableFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnPublisher?>, String?> {
const PublisherNullableFamily._()
PublisherNullableFamily._()
: super(
retry: null,
name: r'publisherNullableProvider',

View File

@@ -10,7 +10,7 @@ part of 'site_detail.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(publicationSiteDetail)
const publicationSiteDetailProvider = PublicationSiteDetailFamily._();
final publicationSiteDetailProvider = PublicationSiteDetailFamily._();
final class PublicationSiteDetailProvider
extends
@@ -22,7 +22,7 @@ final class PublicationSiteDetailProvider
with
$FutureModifier<SnPublicationSite>,
$FutureProvider<SnPublicationSite> {
const PublicationSiteDetailProvider._({
PublicationSiteDetailProvider._({
required PublicationSiteDetailFamily super.from,
required (String, String) super.argument,
}) : super(
@@ -75,7 +75,7 @@ final class PublicationSiteDetailFamily extends $Family
FutureOr<SnPublicationSite>,
(String, String)
> {
const PublicationSiteDetailFamily._()
PublicationSiteDetailFamily._()
: super(
retry: null,
name: r'publicationSiteDetailProvider',

View File

@@ -10,7 +10,7 @@ part of 'pack_detail.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(stickerPackContent)
const stickerPackContentProvider = StickerPackContentFamily._();
final stickerPackContentProvider = StickerPackContentFamily._();
final class StickerPackContentProvider
extends
@@ -20,7 +20,7 @@ final class StickerPackContentProvider
FutureOr<List<SnSticker>>
>
with $FutureModifier<List<SnSticker>>, $FutureProvider<List<SnSticker>> {
const StickerPackContentProvider._({
StickerPackContentProvider._({
required StickerPackContentFamily super.from,
required String super.argument,
}) : super(
@@ -69,7 +69,7 @@ String _$stickerPackContentHash() =>
final class StickerPackContentFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<List<SnSticker>>, String> {
const StickerPackContentFamily._()
StickerPackContentFamily._()
: super(
retry: null,
name: r'stickerPackContentProvider',
@@ -86,7 +86,7 @@ final class StickerPackContentFamily extends $Family
}
@ProviderFor(stickerPackSticker)
const stickerPackStickerProvider = StickerPackStickerFamily._();
final stickerPackStickerProvider = StickerPackStickerFamily._();
final class StickerPackStickerProvider
extends
@@ -96,7 +96,7 @@ final class StickerPackStickerProvider
FutureOr<SnSticker?>
>
with $FutureModifier<SnSticker?>, $FutureProvider<SnSticker?> {
const StickerPackStickerProvider._({
StickerPackStickerProvider._({
required StickerPackStickerFamily super.from,
required StickerWithPackQuery? super.argument,
}) : super(
@@ -145,7 +145,7 @@ String _$stickerPackStickerHash() =>
final class StickerPackStickerFamily extends $Family
with
$FunctionalFamilyOverride<FutureOr<SnSticker?>, StickerWithPackQuery?> {
const StickerPackStickerFamily._()
StickerPackStickerFamily._()
: super(
retry: null,
name: r'stickerPackStickerProvider',

View File

@@ -10,7 +10,7 @@ part of 'stickers.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(stickerPack)
const stickerPackProvider = StickerPackFamily._();
final stickerPackProvider = StickerPackFamily._();
final class StickerPackProvider
extends
@@ -20,7 +20,7 @@ final class StickerPackProvider
FutureOr<SnStickerPack?>
>
with $FutureModifier<SnStickerPack?>, $FutureProvider<SnStickerPack?> {
const StickerPackProvider._({
StickerPackProvider._({
required StickerPackFamily super.from,
required String? super.argument,
}) : super(
@@ -68,7 +68,7 @@ String _$stickerPackHash() => r'71ef84471237c8191918095094bdfc87d3920e77';
final class StickerPackFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnStickerPack?>, String?> {
const StickerPackFamily._()
StickerPackFamily._()
: super(
retry: null,
name: r'stickerPackProvider',