⏪ Rollback drawer style on mobile
🗑️ Remove drawer prefer collapse & expand
This commit is contained in:
parent
8f2fc55608
commit
6bb9c21759
@ -13,7 +13,6 @@ const kNetworkServerStoreKey = 'app_server_url';
|
|||||||
const kAppbarTransparentStoreKey = 'app_bar_transparent';
|
const kAppbarTransparentStoreKey = 'app_bar_transparent';
|
||||||
const kAppBackgroundStoreKey = 'app_has_background';
|
const kAppBackgroundStoreKey = 'app_has_background';
|
||||||
const kAppColorSchemeStoreKey = 'app_color_scheme';
|
const kAppColorSchemeStoreKey = 'app_color_scheme';
|
||||||
const kAppDrawerPreferCollapse = 'app_drawer_prefer_collapse';
|
|
||||||
const kAppNotifyWithHaptic = 'app_notify_with_haptic';
|
const kAppNotifyWithHaptic = 'app_notify_with_haptic';
|
||||||
const kAppExpandPostLink = 'app_expand_post_link';
|
const kAppExpandPostLink = 'app_expand_post_link';
|
||||||
const kAppExpandChatLink = 'app_expand_chat_link';
|
const kAppExpandChatLink = 'app_expand_chat_link';
|
||||||
@ -47,27 +46,17 @@ class ConfigProvider extends ChangeNotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool drawerIsCollapsed = false;
|
bool drawerIsCollapsed = false;
|
||||||
bool drawerIsExpanded = false;
|
|
||||||
|
|
||||||
void calcDrawerSize(BuildContext context, {bool withMediaQuery = false}) {
|
void calcDrawerSize(BuildContext context, {bool withMediaQuery = false}) {
|
||||||
bool newDrawerIsCollapsed = false;
|
bool newDrawerIsCollapsed = false;
|
||||||
bool newDrawerIsExpanded = false;
|
|
||||||
if (withMediaQuery) {
|
if (withMediaQuery) {
|
||||||
newDrawerIsCollapsed = MediaQuery.of(context).size.width < 600;
|
newDrawerIsCollapsed = MediaQuery.of(context).size.width < 600;
|
||||||
newDrawerIsExpanded = MediaQuery.of(context).size.width >= 601;
|
|
||||||
} else {
|
} else {
|
||||||
final rpb = ResponsiveBreakpoints.of(context);
|
final rpb = ResponsiveBreakpoints.of(context);
|
||||||
newDrawerIsCollapsed = rpb.smallerOrEqualTo(MOBILE);
|
newDrawerIsCollapsed = rpb.smallerOrEqualTo(MOBILE);
|
||||||
newDrawerIsExpanded = rpb.largerThan(TABLET)
|
|
||||||
? (prefs.getBool(kAppDrawerPreferCollapse) ?? false)
|
|
||||||
? false
|
|
||||||
: true
|
|
||||||
: false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newDrawerIsExpanded != drawerIsExpanded ||
|
if (newDrawerIsCollapsed != drawerIsCollapsed) {
|
||||||
newDrawerIsCollapsed != drawerIsCollapsed) {
|
|
||||||
drawerIsExpanded = newDrawerIsExpanded;
|
|
||||||
drawerIsCollapsed = newDrawerIsCollapsed;
|
drawerIsCollapsed = newDrawerIsCollapsed;
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
@ -244,7 +244,8 @@ class _ExploreScreenState extends State<ExploreScreen>
|
|||||||
GoRouter.of(context).pushNamed('postShuffle');
|
GoRouter.of(context).pushNamed('postShuffle');
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
const Gap(48),
|
if (ResponsiveBreakpoints.of(context).largerThan(MOBILE))
|
||||||
|
const Gap(48),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Center(
|
child: Center(
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
|
@ -325,20 +325,6 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
|||||||
setState(() {});
|
setState(() {});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
CheckboxListTile(
|
|
||||||
secondary: const Icon(Symbols.left_panel_close),
|
|
||||||
title: Text('settingsDrawerPreferCollapse').tr(),
|
|
||||||
subtitle:
|
|
||||||
Text('settingsDrawerPreferCollapseDescription').tr(),
|
|
||||||
contentPadding: const EdgeInsets.only(left: 24, right: 17),
|
|
||||||
value: _prefs.getBool(kAppDrawerPreferCollapse) ?? false,
|
|
||||||
onChanged: (value) {
|
|
||||||
_prefs.setBool(kAppDrawerPreferCollapse, value ?? false);
|
|
||||||
final cfg = context.read<ConfigProvider>();
|
|
||||||
cfg.calcDrawerSize(context);
|
|
||||||
setState(() {});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
CheckboxListTile(
|
CheckboxListTile(
|
||||||
secondary: const Icon(Symbols.hide),
|
secondary: const Icon(Symbols.hide),
|
||||||
title: Text('settingsHideBottomNav').tr(),
|
title: Text('settingsHideBottomNav').tr(),
|
||||||
|
@ -16,12 +16,7 @@ class ConnectionIndicator extends StatelessWidget {
|
|||||||
final ws = context.watch<WebSocketProvider>();
|
final ws = context.watch<WebSocketProvider>();
|
||||||
final cfg = context.watch<ConfigProvider>();
|
final cfg = context.watch<ConfigProvider>();
|
||||||
|
|
||||||
final marginLeft =
|
final marginLeft = cfg.drawerIsCollapsed ? 0.0 : 80.0;
|
||||||
cfg.drawerIsCollapsed
|
|
||||||
? 0.0
|
|
||||||
: cfg.drawerIsExpanded
|
|
||||||
? 304.0
|
|
||||||
: 80.0;
|
|
||||||
|
|
||||||
return ListenableBuilder(
|
return ListenableBuilder(
|
||||||
listenable: ws,
|
listenable: ws,
|
||||||
@ -35,41 +30,52 @@ class ConnectionIndicator extends StatelessWidget {
|
|||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
child: Material(
|
child: Material(
|
||||||
elevation: 2,
|
elevation: 2,
|
||||||
shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(16))),
|
shape: const RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.all(Radius.circular(16))),
|
||||||
color: Theme.of(context).colorScheme.secondaryContainer,
|
color: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
child:
|
child: ua.isAuthorized
|
||||||
ua.isAuthorized
|
? Row(
|
||||||
? Row(
|
mainAxisSize: MainAxisSize.min,
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
children: [
|
||||||
children: [
|
if (ws.isBusy)
|
||||||
if (ws.isBusy)
|
Text(
|
||||||
Text(
|
'serverConnecting',
|
||||||
'serverConnecting',
|
).tr().textColor(Theme.of(context)
|
||||||
).tr().textColor(Theme.of(context).colorScheme.onSecondaryContainer)
|
.colorScheme
|
||||||
else if (!ws.isConnected)
|
.onSecondaryContainer)
|
||||||
Text(
|
else if (!ws.isConnected)
|
||||||
'serverDisconnected',
|
Text(
|
||||||
).tr().textColor(Theme.of(context).colorScheme.onSecondaryContainer)
|
'serverDisconnected',
|
||||||
else
|
).tr().textColor(Theme.of(context)
|
||||||
Text(
|
.colorScheme
|
||||||
'serverConnected',
|
.onSecondaryContainer)
|
||||||
).tr().textColor(Theme.of(context).colorScheme.onSecondaryContainer),
|
else
|
||||||
const Gap(8),
|
Text(
|
||||||
if (ws.isBusy)
|
'serverConnected',
|
||||||
const CircularProgressIndicator(
|
).tr().textColor(Theme.of(context)
|
||||||
strokeWidth: 2.5,
|
.colorScheme
|
||||||
padding: EdgeInsets.zero,
|
.onSecondaryContainer),
|
||||||
).width(12).height(12).padding(horizontal: 4, right: 4)
|
const Gap(8),
|
||||||
else if (!ws.isConnected)
|
if (ws.isBusy)
|
||||||
const Icon(Symbols.power_off, size: 18)
|
const CircularProgressIndicator(
|
||||||
else
|
strokeWidth: 2.5,
|
||||||
const Icon(Symbols.power, size: 18),
|
padding: EdgeInsets.zero,
|
||||||
],
|
)
|
||||||
).padding(horizontal: 8, vertical: 4)
|
.width(12)
|
||||||
: const SizedBox.shrink(),
|
.height(12)
|
||||||
).opacity(show ? 1 : 0, animate: true).animate(const Duration(milliseconds: 300), Curves.easeInOut),
|
.padding(horizontal: 4, right: 4)
|
||||||
|
else if (!ws.isConnected)
|
||||||
|
const Icon(Symbols.power_off, size: 18)
|
||||||
|
else
|
||||||
|
const Icon(Symbols.power, size: 18),
|
||||||
|
],
|
||||||
|
).padding(horizontal: 8, vertical: 4)
|
||||||
|
: const SizedBox.shrink(),
|
||||||
|
)
|
||||||
|
.opacity(show ? 1 : 0, animate: true)
|
||||||
|
.animate(const Duration(milliseconds: 300), Curves.easeInOut),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (!ws.isConnected && !ws.isBusy) {
|
if (!ws.isConnected && !ws.isBusy) {
|
||||||
ws.connect();
|
ws.connect();
|
||||||
|
@ -26,9 +26,7 @@ class ContextMenuArea extends StatelessWidget {
|
|||||||
final cfg = context.read<ConfigProvider>();
|
final cfg = context.read<ConfigProvider>();
|
||||||
if (!cfg.drawerIsCollapsed) {
|
if (!cfg.drawerIsCollapsed) {
|
||||||
// Leave padding for side navigation
|
// Leave padding for side navigation
|
||||||
mousePosition = cfg.drawerIsExpanded
|
mousePosition = mousePosition.copyWith(dx: mousePosition.dx - 80 * 2);
|
||||||
? mousePosition.copyWith(dx: mousePosition.dx - 304 * 2)
|
|
||||||
: mousePosition.copyWith(dx: mousePosition.dx - 80 * 2);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
@ -40,7 +38,8 @@ class ContextMenuArea extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void _showMenu(BuildContext context, Offset mousePosition) async {
|
void _showMenu(BuildContext context, Offset mousePosition) async {
|
||||||
final menu = contextMenu.copyWith(position: contextMenu.position ?? mousePosition);
|
final menu =
|
||||||
|
contextMenu.copyWith(position: contextMenu.position ?? mousePosition);
|
||||||
final value = await showContextMenu(context, contextMenu: menu);
|
final value = await showContextMenu(context, contextMenu: menu);
|
||||||
onItemSelected?.call(value);
|
onItemSelected?.call(value);
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,6 @@ import 'package:material_symbols_icons/symbols.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
import 'package:styled_widget/styled_widget.dart';
|
import 'package:styled_widget/styled_widget.dart';
|
||||||
import 'package:surface/providers/channel.dart';
|
import 'package:surface/providers/channel.dart';
|
||||||
import 'package:surface/providers/config.dart';
|
|
||||||
import 'package:surface/providers/navigation.dart';
|
import 'package:surface/providers/navigation.dart';
|
||||||
import 'package:surface/providers/sn_network.dart';
|
import 'package:surface/providers/sn_network.dart';
|
||||||
import 'package:surface/providers/sn_realm.dart';
|
import 'package:surface/providers/sn_realm.dart';
|
||||||
@ -45,27 +44,18 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final ua = context.read<UserProvider>();
|
final ua = context.read<UserProvider>();
|
||||||
final nav = context.watch<NavigationProvider>();
|
final nav = context.watch<NavigationProvider>();
|
||||||
final cfg = context.watch<ConfigProvider>();
|
|
||||||
|
|
||||||
final backgroundColor = cfg.drawerIsExpanded ? Colors.transparent : null;
|
|
||||||
|
|
||||||
return ListenableBuilder(
|
return ListenableBuilder(
|
||||||
listenable: nav,
|
listenable: nav,
|
||||||
builder: (context, _) {
|
builder: (context, _) {
|
||||||
return Drawer(
|
return Drawer(
|
||||||
elevation: widget.elevation,
|
elevation: widget.elevation,
|
||||||
backgroundColor: backgroundColor,
|
|
||||||
shape: const RoundedRectangleBorder(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(0))),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
if (!kIsWeb &&
|
if (!kIsWeb &&
|
||||||
(Platform.isWindows ||
|
(Platform.isWindows || Platform.isLinux || Platform.isMacOS))
|
||||||
Platform.isLinux ||
|
|
||||||
Platform.isMacOS) &&
|
|
||||||
!cfg.drawerIsExpanded)
|
|
||||||
Container(
|
Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border(
|
border: Border(
|
||||||
@ -78,42 +68,36 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer> {
|
|||||||
child: WindowTitleBarBox(),
|
child: WindowTitleBarBox(),
|
||||||
),
|
),
|
||||||
Gap(MediaQuery.of(context).padding.top),
|
Gap(MediaQuery.of(context).padding.top),
|
||||||
Expanded(
|
Column(
|
||||||
child: _DrawerContentList(),
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text('Solar Network').bold(),
|
||||||
|
AppVersionLabel(),
|
||||||
|
],
|
||||||
|
).padding(
|
||||||
|
horizontal: 32,
|
||||||
|
vertical: 12,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: ListView(
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
children: [
|
||||||
|
...nav.destinations.mapIndexed((idx, ele) {
|
||||||
|
return ListTile(
|
||||||
|
leading: ele.icon,
|
||||||
|
title: Text(ele.label).tr(),
|
||||||
|
contentPadding: EdgeInsets.symmetric(horizontal: 24),
|
||||||
|
selected: nav.currentIndex == idx,
|
||||||
|
onTap: () {
|
||||||
|
GoRouter.of(context).pushNamed(ele.screen);
|
||||||
|
nav.setIndex(idx);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
})
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
Row(
|
|
||||||
spacing: 8,
|
|
||||||
children:
|
|
||||||
nav.destinations.where((ele) => ele.isPinned).mapIndexed(
|
|
||||||
(idx, ele) {
|
|
||||||
return Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message: ele.label.tr(),
|
|
||||||
child: IconButton(
|
|
||||||
icon: ele.icon,
|
|
||||||
color: nav.currentIndex == idx
|
|
||||||
? Theme.of(context).colorScheme.onPrimaryContainer
|
|
||||||
: Theme.of(context).colorScheme.onSurface,
|
|
||||||
style: ButtonStyle(
|
|
||||||
backgroundColor: WidgetStatePropertyAll(
|
|
||||||
nav.currentIndex == idx
|
|
||||||
? Theme.of(context)
|
|
||||||
.colorScheme
|
|
||||||
.primaryContainer
|
|
||||||
: Colors.transparent,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onPressed: () {
|
|
||||||
GoRouter.of(context).goNamed(ele.screen);
|
|
||||||
Scaffold.of(context).closeDrawer();
|
|
||||||
nav.setIndex(idx);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
).toList(),
|
|
||||||
).padding(horizontal: 16, bottom: 8),
|
|
||||||
Align(
|
Align(
|
||||||
alignment: Alignment.bottomCenter,
|
alignment: Alignment.bottomCenter,
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
|
@ -13,6 +13,7 @@ import 'package:surface/providers/navigation.dart';
|
|||||||
import 'package:surface/widgets/connection_indicator.dart';
|
import 'package:surface/widgets/connection_indicator.dart';
|
||||||
import 'package:surface/widgets/navigation/app_background.dart';
|
import 'package:surface/widgets/navigation/app_background.dart';
|
||||||
import 'package:surface/widgets/navigation/app_bottom_navigation.dart';
|
import 'package:surface/widgets/navigation/app_bottom_navigation.dart';
|
||||||
|
import 'package:surface/widgets/navigation/app_drawer_navigation.dart';
|
||||||
import 'package:surface/widgets/navigation/app_rail_navigation.dart';
|
import 'package:surface/widgets/navigation/app_rail_navigation.dart';
|
||||||
import 'package:surface/widgets/notify_indicator.dart';
|
import 'package:surface/widgets/notify_indicator.dart';
|
||||||
|
|
||||||
@ -221,6 +222,7 @@ class AppRootScaffold extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
drawerEdgeDragWidth: isPopable ? 0 : null,
|
drawerEdgeDragWidth: isPopable ? 0 : null,
|
||||||
|
drawer: isCollapseDrawer ? const AppNavigationDrawer() : null,
|
||||||
bottomNavigationBar:
|
bottomNavigationBar:
|
||||||
isShowBottomNavigation ? AppBottomNavigationBar() : null,
|
isShowBottomNavigation ? AppBottomNavigationBar() : null,
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user