145 lines
4.8 KiB
Dart
145 lines
4.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:invoiceninja_flutter/data/models/entities.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/dashboard/dashboard_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/ui/pref_state.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/app_bottom_bar.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/history_drawer_vm.dart';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
import 'package:invoiceninja_flutter/utils/platforms.dart';
|
|
|
|
import 'menu_drawer_vm.dart';
|
|
|
|
class ListScaffold extends StatelessWidget {
|
|
const ListScaffold({
|
|
@required this.appBarTitle,
|
|
@required this.body,
|
|
this.entityType,
|
|
this.appBarActions,
|
|
this.bottomNavigationBar,
|
|
this.floatingActionButton,
|
|
this.isChecked,
|
|
this.onCheckboxChanged,
|
|
this.onHamburgerLongPress,
|
|
this.onBackPressed,
|
|
this.isSettings = false,
|
|
this.showCheckbox = false,
|
|
});
|
|
|
|
final EntityType entityType;
|
|
final Widget body;
|
|
final AppBottomBar bottomNavigationBar;
|
|
final FloatingActionButton floatingActionButton;
|
|
final Widget appBarTitle;
|
|
final List<Widget> appBarActions;
|
|
final bool isSettings;
|
|
final bool showCheckbox;
|
|
final Function(bool) onCheckboxChanged;
|
|
final Function() onHamburgerLongPress;
|
|
final Function() onBackPressed;
|
|
final bool isChecked;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final store = StoreProvider.of<AppState>(context);
|
|
final state = store.state;
|
|
final localization = AppLocalization.of(context);
|
|
|
|
Widget leading = SizedBox();
|
|
if (showCheckbox && state.prefState.isModuleList) {
|
|
leading = Checkbox(
|
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
onChanged: onCheckboxChanged,
|
|
activeColor: Theme.of(context).accentColor,
|
|
value: isChecked);
|
|
} else if (isSettings) {
|
|
if (onBackPressed != null) {
|
|
leading = IconButton(
|
|
icon: Icon(Icons.arrow_back),
|
|
onPressed: onBackPressed,
|
|
);
|
|
} else {
|
|
leading = isMobile(context)
|
|
? IconButton(
|
|
icon: Icon(Icons.arrow_back),
|
|
onPressed: () => Navigator.pop(context),
|
|
)
|
|
: IconButton(
|
|
icon: Icon(Icons.add),
|
|
onPressed: () {
|
|
createEntityByType(entityType: entityType, context: context);
|
|
},
|
|
);
|
|
}
|
|
} else if (isMobile(context) || state.prefState.isMenuFloated) {
|
|
leading = Builder(
|
|
builder: (context) => GestureDetector(
|
|
onLongPress: onHamburgerLongPress,
|
|
child: IconButton(
|
|
tooltip: localization.menuSidebar,
|
|
icon: Icon(Icons.menu),
|
|
onPressed: () {
|
|
Scaffold.of(context).openDrawer();
|
|
},
|
|
),
|
|
),
|
|
);
|
|
} else if (entityType != null) {
|
|
leading = IconButton(
|
|
icon: Icon(Icons.add),
|
|
onPressed: () {
|
|
createEntityByType(entityType: entityType, context: context);
|
|
},
|
|
);
|
|
}
|
|
|
|
return WillPopScope(
|
|
onWillPop: () async {
|
|
store.dispatch(ViewDashboard(navigator: Navigator.of(context)));
|
|
return false;
|
|
},
|
|
child: Scaffold(
|
|
drawer: isMobile(context) || state.prefState.isMenuFloated
|
|
? MenuDrawerBuilder()
|
|
: null,
|
|
endDrawer: isMobile(context) ||
|
|
(state.prefState.isHistoryFloated && !isSettings)
|
|
? HistoryDrawerBuilder()
|
|
: null,
|
|
appBar: AppBar(
|
|
automaticallyImplyLeading: false,
|
|
leading: leading,
|
|
title: appBarTitle,
|
|
actions: [
|
|
...appBarActions,
|
|
if (!showCheckbox &&
|
|
!isSettings &&
|
|
(isMobile(context) || !state.prefState.isHistoryVisible))
|
|
Builder(
|
|
builder: (context) => IconButton(
|
|
icon: Icon(Icons.menu),
|
|
onPressed: () {
|
|
if (isMobile(context) ||
|
|
state.prefState.isHistoryFloated) {
|
|
Scaffold.of(context).openEndDrawer();
|
|
} else {
|
|
store.dispatch(UserPreferencesChanged(
|
|
sidebar: AppSidebar.history));
|
|
}
|
|
},
|
|
),
|
|
)
|
|
],
|
|
),
|
|
body: ClipRect(
|
|
child: body,
|
|
),
|
|
bottomNavigationBar: bottomNavigationBar,
|
|
floatingActionButton: floatingActionButton,
|
|
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked,
|
|
));
|
|
}
|
|
}
|