feat(bloc_layout): add new package to combine bloc_helper, crud_bloc, ui_components, and ui_layout
This commit is contained in:
+60
@@ -0,0 +1,60 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart' as bloc_base;
|
||||
import 'package:wyatt_bloc_helper/wyatt_bloc_helper.dart';
|
||||
import 'package:wyatt_crud_bloc/wyatt_crud_bloc.dart';
|
||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
||||
|
||||
abstract class CrudCubitConsumerScreenBase<
|
||||
Cubit extends bloc_base.Cubit<CrudState>,
|
||||
SuccessState extends CrudSuccess>
|
||||
extends CubitConsumerScreen<Cubit, CrudState> {
|
||||
const CrudCubitConsumerScreenBase({super.key});
|
||||
|
||||
Widget errorBuilder(BuildContext context, CrudError state) =>
|
||||
context.components.errorWidget;
|
||||
|
||||
Widget loadingBuilder(BuildContext context, CrudLoading state) =>
|
||||
context.components.loadingWidget;
|
||||
|
||||
Widget initialBuilder(BuildContext context, CrudInitial state) =>
|
||||
const SizedBox.shrink();
|
||||
|
||||
Widget successBuilder(BuildContext context, SuccessState state);
|
||||
|
||||
@override
|
||||
Widget onBuild(BuildContext context, CrudState state) =>
|
||||
CrudBuilder<CrudInitial, CrudLoading, SuccessState, CrudError>(
|
||||
errorBuilder: errorBuilder,
|
||||
loadingBuilder: loadingBuilder,
|
||||
initialBuilder: initialBuilder,
|
||||
state: state,
|
||||
builder: successBuilder,
|
||||
);
|
||||
}
|
||||
|
||||
abstract class CrudCubitConsumerScreen<Cubit extends bloc_base.Cubit<CrudState>,
|
||||
T> extends CrudCubitConsumerScreenBase<Cubit, CrudLoaded<T>> {
|
||||
const CrudCubitConsumerScreen();
|
||||
}
|
||||
|
||||
abstract class CrudListCubitConsumerScreen<
|
||||
Cubit extends bloc_base.Cubit<CrudState>,
|
||||
T> extends CrudCubitConsumerScreenBase<Cubit, CrudListLoaded<T>> {
|
||||
const CrudListCubitConsumerScreen();
|
||||
}
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
import 'package:flutter/src/widgets/framework.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart' as bloc_base;
|
||||
import 'package:wyatt_bloc_layout/wyatt_bloc_layout.dart';
|
||||
import 'package:wyatt_ui_layout/wyatt_wyatt_ui_layout.dart';
|
||||
|
||||
abstract class FrameLayoutCrudConsumerScreen<
|
||||
Cubit extends bloc_base.Cubit<CrudState>,
|
||||
T> extends CrudCubitConsumerScreen<Cubit, T> {
|
||||
final String? title;
|
||||
final int? currentIndex;
|
||||
|
||||
const FrameLayoutCrudConsumerScreen({
|
||||
this.title,
|
||||
this.currentIndex,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget parent(BuildContext context, Widget child) => FrameLayout(
|
||||
title: title ?? 'Title',
|
||||
body: child,
|
||||
currentIndex: currentIndex ?? 0,
|
||||
);
|
||||
}
|
||||
|
||||
abstract class FrameLayoutCrudListConsumerScreen<
|
||||
Cubit extends bloc_base.Cubit<CrudState>,
|
||||
T> extends CrudListCubitConsumerScreen<Cubit, T> {
|
||||
final String? title;
|
||||
final int? currentIndex;
|
||||
|
||||
const FrameLayoutCrudListConsumerScreen({
|
||||
this.title,
|
||||
this.currentIndex,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget parent(BuildContext context, Widget child) => FrameLayout(
|
||||
title: title ?? 'Title',
|
||||
body: child,
|
||||
currentIndex: currentIndex ?? 0,
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
export 'consumers/crud_cubit_consumer_screen_bases.dart';
|
||||
export 'consumers/frame_layout_crud_consumer_screen.dart';
|
||||
export 'screens/crud_cubit_screen_base.dart';
|
||||
|
||||
export 'package:flutter_bloc/flutter_bloc.dart';
|
||||
export 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
||||
export 'package:wyatt_crud_bloc/wyatt_crud_bloc.dart';
|
||||
@@ -0,0 +1,50 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart' as bloc_base;
|
||||
import 'package:wyatt_bloc_helper/wyatt_bloc_helper.dart';
|
||||
import 'package:wyatt_bloc_layout/wyatt_bloc_layout.dart';
|
||||
|
||||
abstract class CrudCubitScreenBase<Cubit extends bloc_base.Cubit<CrudState>,
|
||||
SuccessState extends CrudSuccess> extends CubitScreen<Cubit, CrudState> {
|
||||
Widget errorBuilder(BuildContext context, CrudError state) =>
|
||||
context.components.errorWidget;
|
||||
|
||||
Widget loadingBuilder(BuildContext context, CrudLoading state) =>
|
||||
context.components.loadingWidget;
|
||||
|
||||
Widget initialBuilder(BuildContext context, CrudInitial state) =>
|
||||
const SizedBox.shrink();
|
||||
|
||||
Widget successBuilder(BuildContext context, SuccessState state);
|
||||
|
||||
@override
|
||||
Widget onBuild(BuildContext context, CrudState state) =>
|
||||
CrudBuilder<CrudInitial, CrudLoading, SuccessState, CrudError>(
|
||||
errorBuilder: errorBuilder,
|
||||
loadingBuilder: loadingBuilder,
|
||||
initialBuilder: initialBuilder,
|
||||
state: state,
|
||||
builder: successBuilder,
|
||||
);
|
||||
}
|
||||
|
||||
abstract class CrudCubitScreen<Cubit extends bloc_base.Cubit<CrudState>, T>
|
||||
extends CrudCubitScreenBase<Cubit, CrudLoaded<T>> {}
|
||||
|
||||
abstract class CrudListCubitScreen<Cubit extends bloc_base.Cubit<CrudState>, T>
|
||||
extends CrudCubitScreenBase<Cubit, CrudListLoaded<T>> {}
|
||||
@@ -0,0 +1,17 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
export 'presentation/presentation.dart';
|
||||
@@ -0,0 +1,20 @@
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
/// Bloc Layout
|
||||
library wyatt_bloc_layout;
|
||||
|
||||
export 'src/src.dart';
|
||||
Reference in New Issue
Block a user