// Copyright (C) 2022 WYATT GROUP
// Please see the AUTHORS file for details.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
/// A utility class that provides a way to create a [BlocProvider] or
/// [RepositoryProvider] with a [Bloc] or Repository that is already
/// available in the widget tree.
abstract class SmartProvider {
/// Creates a [BlocProvider] with a [Bloc] that is possibly already
/// available in the widget tree.
static BlocProvider
bloc, State extends Object>(
BuildContext context, {
required Bloc Function(BuildContext) create,
required Bloc Function(BuildContext, Bloc) init,
Widget? child,
bool lazy = true,
bool enable = true,
}) {
if (enable) {
final bloc = context.read();
if (bloc != null) {
final b = bloc;
return BlocProvider.value(
value: init(context, b),
child: child,
);
}
}
return BlocProvider(
lazy: lazy,
create: (_) => init(context, create(context)),
child: child,
);
}
/// Creates a [RepositoryProvider] with a Repository that is possibly
/// already available in the widget tree.
static RepositoryProvider repo(
BuildContext context, {
required Repository Function(BuildContext) create,
required Repository Function(BuildContext, Repository) init,
Widget? child,
bool lazy = true,
bool enable = true,
}) {
if (enable) {
final repo = context.read();
if (repo != null) {
final r = repo;
return RepositoryProvider.value(
value: init(context, r),
child: child,
);
}
}
return RepositoryProvider(
lazy: lazy,
create: (_) => init(context, create(context)),
child: child,
);
}
}