Better side navigation

🐛 Bug fixes and optimizations
This commit is contained in:
LittleSheep 2024-09-13 20:22:10 +08:00
parent dd01f964d4
commit b449735bf5
33 changed files with 212 additions and 182 deletions

View File

@ -391,5 +391,6 @@
"userLevel10": "Grandmaster", "userLevel10": "Grandmaster",
"userLevel11": "Legend", "userLevel11": "Legend",
"userLevel12": "Mythic", "userLevel12": "Mythic",
"userLevel13": "Immortal" "userLevel13": "Immortal",
"postBrowsingIn": "Browsing in @region"
} }

View File

@ -392,5 +392,6 @@
"userLevel10": "出神入化", "userLevel10": "出神入化",
"userLevel11": "名垂千古", "userLevel11": "名垂千古",
"userLevel12": "独占鳌头", "userLevel12": "独占鳌头",
"userLevel13": "万古流芳" "userLevel13": "万古流芳",
"postBrowsingIn": "浏览 @region 内的帖子中"
} }

View File

@ -155,13 +155,14 @@ class PostEditorController extends GetxController {
); );
} }
void localRead() { Future<bool> localRead() async {
SharedPreferences.getInstance().then((inst) { final inst = await SharedPreferences.getInstance();
if (inst.containsKey('post_editor_local_save')) { if (inst.containsKey('post_editor_local_save')) {
isRestoreFromLocal.value = true; isRestoreFromLocal.value = true;
payload = jsonDecode(inst.getString('post_editor_local_save')!); payload = jsonDecode(inst.getString('post_editor_local_save')!);
} return true;
}); }
return false;
} }
void localClear() { void localClear() {

View File

@ -80,8 +80,8 @@ Future<void> _initializePlatformComponents() async {
} }
final themeSwitcher = ThemeSwitcher( final themeSwitcher = ThemeSwitcher(
lightThemeData: SolianTheme.build(Brightness.light), lightThemeData: AppTheme.build(Brightness.light),
darkThemeData: SolianTheme.build(Brightness.dark), darkThemeData: AppTheme.build(Brightness.dark),
); );
class SolianApp extends StatelessWidget { class SolianApp extends StatelessWidget {

View File

@ -16,8 +16,8 @@ class ThemeSwitcher extends ChangeNotifier {
if (prefs.containsKey('global_theme_color')) { if (prefs.containsKey('global_theme_color')) {
final value = prefs.getInt('global_theme_color')!; final value = prefs.getInt('global_theme_color')!;
final color = Color(value); final color = Color(value);
lightThemeData = SolianTheme.build(Brightness.light, seedColor: color); lightThemeData = AppTheme.build(Brightness.light, seedColor: color);
darkThemeData = SolianTheme.build(Brightness.dark, seedColor: color); darkThemeData = AppTheme.build(Brightness.dark, seedColor: color);
notifyListeners(); notifyListeners();
} }
} }

View File

@ -154,6 +154,7 @@ abstract class AppRouter {
name: 'channelChat', name: 'channelChat',
builder: (context, state) { builder: (context, state) {
return ChannelChatScreen( return ChannelChatScreen(
key: UniqueKey(),
alias: state.pathParameters['alias']!, alias: state.pathParameters['alias']!,
realm: state.uri.queryParameters['realm'] ?? 'global', realm: state.uri.queryParameters['realm'] ?? 'global',
); );

View File

@ -133,7 +133,7 @@ class _FriendScreenState extends State<FriendScreen>
).paddingAll(14), ).paddingAll(14),
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
bottom: TabBar( bottom: TabBar(

View File

@ -152,7 +152,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
SliverAppBar( SliverAppBar(
centerTitle: false, centerTitle: false,
floating: true, floating: true,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
leadingWidth: 24, leadingWidth: 24,
automaticallyImplyLeading: false, automaticallyImplyLeading: false,
flexibleSpace: Row( flexibleSpace: Row(
@ -207,7 +207,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
onPressed: null, onPressed: null,
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
), ),

View File

@ -205,7 +205,7 @@ class _CallScreenState extends State<CallScreen> with TickerProviderStateMixin {
: AppBar( : AppBar(
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
centerTitle: true, centerTitle: true,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
title: Obx( title: Obx(
() => RichText( () => RichText(
textAlign: TextAlign.center, textAlign: TextAlign.center,

View File

@ -217,8 +217,8 @@ class _ChannelChatScreenState extends State<ChannelChatScreen>
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle(title), title: AppBarTitle(title),
centerTitle: false, centerTitle: false,
titleSpacing: SolianTheme.titleSpacing(context), titleSpacing: AppTheme.titleSpacing(context),
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
const BackgroundStateWidget(), const BackgroundStateWidget(),
Builder(builder: (context) { Builder(builder: (context) {
@ -255,7 +255,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen>
}, },
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
), ),
@ -276,7 +276,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen>
channel: _channel!, channel: _channel!,
ongoingCall: _ongoingCall!, ongoingCall: _ongoingCall!,
onJoin: () { onJoin: () {
if (!SolianTheme.isLargeScreen(context)) { if (!AppTheme.isLargeScreen(context)) {
final ChatCallProvider call = Get.find(); final ChatCallProvider call = Get.find();
call.gotoScreen(context); call.gotoScreen(context);
} }
@ -337,7 +337,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen>
), ),
Obx(() { Obx(() {
final ChatCallProvider call = Get.find(); final ChatCallProvider call = Get.find();
if (call.isMounted.value && SolianTheme.isLargeScreen(context)) { if (call.isMounted.value && AppTheme.isLargeScreen(context)) {
return const Expanded( return const Expanded(
child: Row(children: [ child: Row(children: [
VerticalDivider(width: 0.3, thickness: 0.3), VerticalDivider(width: 0.3, thickness: 0.3),

View File

@ -110,7 +110,7 @@ class _ChannelOrganizeScreenState extends State<ChannelOrganizeScreen> {
appBar: AppBar( appBar: AppBar(
title: AppBarTitle('channelOrganizing'.tr), title: AppBarTitle('channelOrganizing'.tr),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
TextButton( TextButton(
onPressed: _isBusy ? null : () => applyChannel(), onPressed: _isBusy ? null : () => applyChannel(),

View File

@ -47,7 +47,7 @@ class _ChatScreenState extends State<ChatScreen> {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle('chat'.tr), title: AppBarTitle('chat'.tr),
centerTitle: true, centerTitle: true,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
const BackgroundStateWidget(), const BackgroundStateWidget(),
const NotificationButton(), const NotificationButton(),
@ -95,7 +95,7 @@ class _ChatScreenState extends State<ChatScreen> {
], ],
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
), ),

View File

@ -504,7 +504,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
/// Footer /// Footer
Column( Column(
mainAxisAlignment: SolianTheme.isLargeScreen(context) mainAxisAlignment: AppTheme.isLargeScreen(context)
? MainAxisAlignment.start ? MainAxisAlignment.start
: MainAxisAlignment.center, : MainAxisAlignment.center,
children: [ children: [

View File

@ -85,13 +85,13 @@ class _FeedScreenState extends State<FeedScreen>
title: AppBarTitle('feed'.tr), title: AppBarTitle('feed'.tr),
centerTitle: false, centerTitle: false,
floating: true, floating: true,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
actions: [ actions: [
const BackgroundStateWidget(), const BackgroundStateWidget(),
const NotificationButton(), const NotificationButton(),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
bottom: TabBar( bottom: TabBar(
@ -118,7 +118,9 @@ class _FeedScreenState extends State<FeedScreen>
MaterialBanner( MaterialBanner(
leading: const Icon(Icons.layers), leading: const Icon(Icons.layers),
content: Text( content: Text(
'Browsing in realm #${navState.focusedRealm.value!.alias}', 'postBrowsingIn'.trParams({
'region': '#${navState.focusedRealm.value!.alias}',
}),
), ),
actions: const [SizedBox.shrink()], actions: const [SizedBox.shrink()],
), ),

View File

@ -61,10 +61,10 @@ class _DraftBoxScreenState extends State<DraftBoxScreen> {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle('draftBox'.tr), title: AppBarTitle('draftBox'.tr),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
), ),

View File

@ -11,6 +11,7 @@ import 'package:solian/models/post.dart';
import 'package:solian/models/realm.dart'; import 'package:solian/models/realm.dart';
import 'package:solian/providers/attachment_uploader.dart'; import 'package:solian/providers/attachment_uploader.dart';
import 'package:solian/providers/auth.dart'; import 'package:solian/providers/auth.dart';
import 'package:solian/providers/navigation.dart';
import 'package:solian/router.dart'; import 'package:solian/router.dart';
import 'package:solian/theme.dart'; import 'package:solian/theme.dart';
import 'package:solian/widgets/app_bar_leading.dart'; import 'package:solian/widgets/app_bar_leading.dart';
@ -124,7 +125,12 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
void initState() { void initState() {
super.initState(); super.initState();
if (widget.edit == null && widget.reply == null && widget.repost == null) { if (widget.edit == null && widget.reply == null && widget.repost == null) {
_editorController.localRead(); _editorController.localRead().then((res) {
if (!res) {
final navState = Get.find<NavigationStateProvider>();
_editorController.realmZone.value = navState.focusedRealm.value;
}
});
} }
if (widget.reply != null) { if (widget.reply != null) {
_editorController.replyTo.value = widget.reply; _editorController.replyTo.value = widget.reply;
@ -158,7 +164,7 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
), ),
), ),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
TextButton( TextButton(
onPressed: _isBusy ? null : () => _applyPost(), onPressed: _isBusy ? null : () => _applyPost(),
@ -177,23 +183,19 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
children: [ children: [
ListTile( ListTile(
tileColor: Theme.of(context).colorScheme.surfaceContainerLow, tileColor: Theme.of(context).colorScheme.surfaceContainerLow,
title: SingleChildScrollView( title: Row(
scrollDirection: Axis.horizontal, children: [
child: Row( Text(
children: [ _editorController.title ?? 'title'.tr,
Text( maxLines: 1,
_editorController.title ?? 'title'.tr, overflow: TextOverflow.ellipsis,
maxLines: 1, ),
overflow: TextOverflow.ellipsis, const Gap(6),
if (_editorController.aliasController.text.isNotEmpty)
Badge(
label: Text('#${_editorController.aliasController.text}'),
), ),
const Gap(6), ],
if (_editorController.aliasController.text.isNotEmpty)
Badge(
label:
Text('#${_editorController.aliasController.text}'),
),
],
),
), ),
subtitle: Text( subtitle: Text(
_editorController.description ?? 'description'.tr, _editorController.description ?? 'description'.tr,
@ -365,12 +367,12 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
], ],
), ),
), ),
if (SolianTheme.isLargeScreen(context)) if (AppTheme.isLargeScreen(context))
const VerticalDivider(width: 0.3, thickness: 0.3) const VerticalDivider(width: 0.3, thickness: 0.3)
.paddingSymmetric( .paddingSymmetric(
horizontal: 16, horizontal: 16,
), ),
if (SolianTheme.isLargeScreen(context)) if (AppTheme.isLargeScreen(context))
Expanded( Expanded(
child: SingleChildScrollView( child: SingleChildScrollView(
child: MarkdownTextContent( child: MarkdownTextContent(

View File

@ -62,7 +62,7 @@ class _RealmListScreenState extends State<RealmListScreen> {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle('realm'.tr), title: AppBarTitle('realm'.tr),
centerTitle: true, centerTitle: true,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
const BackgroundStateWidget(), const BackgroundStateWidget(),
const NotificationButton(), const NotificationButton(),
@ -77,7 +77,7 @@ class _RealmListScreenState extends State<RealmListScreen> {
}, },
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
), ),

View File

@ -102,7 +102,7 @@ class _RealmOrganizeScreenState extends State<RealmOrganizeScreen> {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle('realmOrganizing'.tr), title: AppBarTitle('realmOrganizing'.tr),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
TextButton( TextButton(
onPressed: _isBusy ? null : () => applyRealm(), onPressed: _isBusy ? null : () => applyRealm(),

View File

@ -114,7 +114,7 @@ class _RealmViewScreenState extends State<RealmViewScreen> {
}, },
), ),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
bottom: const TabBar( bottom: const TabBar(

View File

@ -33,11 +33,11 @@ class _SettingScreenState extends State<SettingScreen> {
tooltip: label, tooltip: label,
onPressed: () { onPressed: () {
context.read<ThemeSwitcher>().setTheme( context.read<ThemeSwitcher>().setTheme(
SolianTheme.build( AppTheme.build(
Brightness.light, Brightness.light,
seedColor: color, seedColor: color,
), ),
SolianTheme.build( AppTheme.build(
Brightness.dark, Brightness.dark,
seedColor: color, seedColor: color,
), ),

View File

@ -25,7 +25,7 @@ class CenteredShell extends StatelessWidget {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle(state.topRoute?.name?.tr ?? 'page'.tr), title: AppBarTitle(state.topRoute?.name?.tr ?? 'page'.tr),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
) )
: null, : null,
body: Center( body: Center(

View File

@ -41,10 +41,10 @@ class RootShell extends StatelessWidget {
return Scaffold( return Scaffold(
key: rootScaffoldKey, key: rootScaffoldKey,
drawer: SolianTheme.isLargeScreen(context) drawer: AppTheme.isLargeScreen(context)
? null ? null
: AppNavigationDrawer(routeName: routeName), : AppNavigationDrawer(routeName: routeName),
body: SolianTheme.isLargeScreen(context) body: AppTheme.isLargeScreen(context)
? Row( ? Row(
children: [ children: [
if (showNavigation) AppNavigationDrawer(routeName: routeName), if (showNavigation) AppNavigationDrawer(routeName: routeName),

View File

@ -29,9 +29,9 @@ class SidebarShell extends StatelessWidget {
flex: 2, flex: 2,
child: child, child: child,
), ),
if (SolianTheme.isExtraLargeScreen(context)) if (AppTheme.isExtraLargeScreen(context))
const VerticalDivider(thickness: 0.3, width: 1), const VerticalDivider(thickness: 0.3, width: 1),
if (SolianTheme.isExtraLargeScreen(context)) if (AppTheme.isExtraLargeScreen(context))
Flexible( Flexible(
flex: 1, flex: 1,
child: sidebar ?? const SidebarPlaceholder(), child: sidebar ?? const SidebarPlaceholder(),
@ -47,10 +47,10 @@ class SidebarShell extends StatelessWidget {
leading: AppBarLeadingButton.adaptive(context), leading: AppBarLeadingButton.adaptive(context),
title: AppBarTitle(state.topRoute?.name?.tr ?? 'page'.tr), title: AppBarTitle(state.topRoute?.name?.tr ?? 'page'.tr),
centerTitle: false, centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
) )
: null, : null,
body: SolianTheme.isLargeScreen(context) body: AppTheme.isLargeScreen(context)
? Row( ? Row(
children: sidebarFirst children: sidebarFirst
? buildContent(context).reversed.toList() ? buildContent(context).reversed.toList()

View File

@ -32,11 +32,11 @@ class TitleShell extends StatelessWidget {
title ?? (state!.topRoute?.name?.tr ?? 'page'.tr), title ?? (state!.topRoute?.name?.tr ?? 'page'.tr),
), ),
centerTitle: isCenteredTitle, centerTitle: isCenteredTitle,
toolbarHeight: SolianTheme.toolbarHeight(context), toolbarHeight: AppTheme.toolbarHeight(context),
actions: [ actions: [
const BackgroundStateWidget(), const BackgroundStateWidget(),
SizedBox( SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16, width: AppTheme.isLargeScreen(context) ? 8 : 16,
), ),
], ],
) )

View File

@ -1,7 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:solian/platform.dart'; import 'package:solian/platform.dart';
abstract class SolianTheme { abstract class AppTheme {
static bool isLargeScreen(BuildContext context) => static bool isLargeScreen(BuildContext context) =>
MediaQuery.of(context).size.width > 640; MediaQuery.of(context).size.width > 640;
@ -9,13 +9,13 @@ abstract class SolianTheme {
MediaQuery.of(context).size.width > 720; MediaQuery.of(context).size.width > 720;
static bool isSpecializedMacOS(BuildContext context) => static bool isSpecializedMacOS(BuildContext context) =>
PlatformInfo.isMacOS && !SolianTheme.isLargeScreen(context); PlatformInfo.isMacOS && !AppTheme.isLargeScreen(context);
static double? titleSpacing(BuildContext context) { static double? titleSpacing(BuildContext context) {
if (SolianTheme.isSpecializedMacOS(context)) { if (AppTheme.isSpecializedMacOS(context)) {
return 24; return 24;
} else { } else {
return SolianTheme.isLargeScreen(context) ? null : 24; return AppTheme.isLargeScreen(context) ? null : 24;
} }
} }

View File

@ -8,7 +8,7 @@ class AppBarTitle extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (SolianTheme.isSpecializedMacOS(context)) { if (AppTheme.isSpecializedMacOS(context)) {
return Text(title); return Text(title);
} else { } else {
return Text(title); return Text(title);

View File

@ -98,12 +98,12 @@ class ChannelCallIndicator extends StatelessWidget {
child: Text('callJoin'.tr), child: Text('callJoin'.tr),
); );
} else if (call.channel.value?.id == channel.id && } else if (call.channel.value?.id == channel.id &&
!SolianTheme.isLargeScreen(context)) { !AppTheme.isLargeScreen(context)) {
return TextButton( return TextButton(
onPressed: () => onJoin(), onPressed: () => onJoin(),
child: Text('callResume'.tr), child: Text('callResume'.tr),
); );
} else if (!SolianTheme.isLargeScreen(context)) { } else if (!AppTheme.isLargeScreen(context)) {
return TextButton( return TextButton(
onPressed: null, onPressed: null,
child: Text('callJoin'.tr), child: Text('callJoin'.tr),

View File

@ -11,6 +11,7 @@ class ChannelListWidget extends StatefulWidget {
final List<Channel> channels; final List<Channel> channels;
final int selfId; final int selfId;
final bool isDense; final bool isDense;
final bool isCollapsed;
final bool noCategory; final bool noCategory;
final bool useReplace; final bool useReplace;
final Function(Channel)? onSelected; final Function(Channel)? onSelected;
@ -20,6 +21,7 @@ class ChannelListWidget extends StatefulWidget {
required this.channels, required this.channels,
required this.selfId, required this.selfId,
this.isDense = false, this.isDense = false,
this.isCollapsed = false,
this.noCategory = false, this.noCategory = false,
this.useReplace = false, this.useReplace = false,
this.onSelected, this.onSelected,
@ -130,13 +132,25 @@ class _ChannelListWidgetState extends State<ChannelListWidget> {
final otherside = final otherside =
item.members!.where((e) => e.account.id != widget.selfId).first; item.members!.where((e) => e.account.id != widget.selfId).first;
final avatar = AccountAvatar(
content: otherside.account.avatar,
radius: widget.isDense ? 12 : 20,
bgColor: Theme.of(context).colorScheme.primary,
feColor: Theme.of(context).colorScheme.onPrimary,
);
if (widget.isCollapsed) {
return Tooltip(
message: otherside.account.nick,
child: InkWell(
child: avatar.paddingSymmetric(vertical: 12),
onTap: () => _gotoChannel(item),
),
);
}
return ListTile( return ListTile(
leading: AccountAvatar( leading: avatar,
content: otherside.account.avatar,
radius: widget.isDense ? 12 : 20,
bgColor: Theme.of(context).colorScheme.primary,
feColor: Theme.of(context).colorScheme.onPrimary,
),
contentPadding: padding, contentPadding: padding,
title: Text(otherside.account.nick), title: Text(otherside.account.nick),
subtitle: !widget.isDense subtitle: !widget.isDense
@ -145,21 +159,33 @@ class _ChannelListWidgetState extends State<ChannelListWidget> {
onTap: () => _gotoChannel(item), onTap: () => _gotoChannel(item),
); );
} else { } else {
final avatar = CircleAvatar(
backgroundColor: item.realmId == null
? Theme.of(context).colorScheme.primary
: Colors.transparent,
radius: widget.isDense ? 12 : 20,
child: FaIcon(
FontAwesomeIcons.hashtag,
color: item.realmId == null
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.primary,
size: widget.isDense ? 12 : 16,
),
);
if (widget.isCollapsed) {
return Tooltip(
message: item.name,
child: InkWell(
child: avatar.paddingSymmetric(vertical: 12),
onTap: () => _gotoChannel(item),
),
);
}
return ListTile( return ListTile(
minTileHeight: widget.isDense ? 48 : null, minTileHeight: widget.isDense ? 48 : null,
leading: CircleAvatar( leading: avatar,
backgroundColor: item.realmId == null
? Theme.of(context).colorScheme.primary
: Colors.transparent,
radius: widget.isDense ? 12 : 20,
child: FaIcon(
FontAwesomeIcons.hashtag,
color: item.realmId == null
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.primary,
size: widget.isDense ? 12 : 16,
),
),
contentPadding: padding, contentPadding: padding,
title: Text(item.name), title: Text(item.name),
subtitle: !widget.isDense subtitle: !widget.isDense

View File

@ -75,9 +75,6 @@ class ChatEvent extends StatelessWidget {
key: Key('m${item.uuid}attachments-box'), key: Key('m${item.uuid}attachments-box'),
width: MediaQuery.of(context).size.width, width: MediaQuery.of(context).size.width,
padding: EdgeInsets.only(top: isMerged ? 0 : 4, bottom: 4), padding: EdgeInsets.only(top: isMerged ? 0 : 4, bottom: 4),
constraints: const BoxConstraints(
maxHeight: 720,
),
child: AttachmentList( child: AttachmentList(
key: Key('m${item.uuid}attachments'), key: Key('m${item.uuid}attachments'),
parentId: item.uuid, parentId: item.uuid,
@ -301,7 +298,10 @@ class ChatEvent extends StatelessWidget {
], ],
).paddingSymmetric(horizontal: 12), ).paddingSymmetric(horizontal: 12),
_buildLinkExpansion().paddingOnly(left: 52, right: 8), _buildLinkExpansion().paddingOnly(left: 52, right: 8),
_buildAttachment(context).paddingOnly(left: 56, right: 8), _buildAttachment(
context,
isMinimal: ['messages.edit'].contains(item.type),
).paddingOnly(left: 56, right: 8),
], ],
); );
} }

View File

@ -245,7 +245,8 @@ class _ChatMessageInputState extends State<ChatMessageInput> {
_editTo = widget.edit!; _editTo = widget.edit!;
_textController.text = body.text; _textController.text = body.text;
_attachments.addAll( _attachments.addAll(
widget.edit!.body['attachments']?.cast<int>() ?? List.empty()); widget.edit!.body['attachments']?.cast<String>() ?? List.empty(),
);
} }
if (widget.reply != null) { if (widget.reply != null) {
_replyTo = widget.reply!; _replyTo = widget.reply!;

View File

@ -192,9 +192,9 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer>
} }
void _autoResize() { void _autoResize() {
if (SolianTheme.isExtraLargeScreen(context)) { if (AppTheme.isExtraLargeScreen(context)) {
_expandDrawer(); _expandDrawer();
} else if (SolianTheme.isLargeScreen(context)) { } else if (AppTheme.isLargeScreen(context)) {
_collapseDrawer(); _collapseDrawer();
} else { } else {
_drawerAnimationController.value = 1; _drawerAnimationController.value = 1;
@ -229,7 +229,7 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer>
return Drawer( return Drawer(
width: _drawerAnimation.value, width: _drawerAnimation.value,
backgroundColor: backgroundColor:
SolianTheme.isLargeScreen(context) ? Colors.transparent : null, AppTheme.isLargeScreen(context) ? Colors.transparent : null,
child: child, child: child,
); );
}, },
@ -247,20 +247,20 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer>
alignment: WrapAlignment.spaceAround, alignment: WrapAlignment.spaceAround,
children: AppNavigation.destinations children: AppNavigation.destinations
.map( .map(
(e) => Card( (e) => Tooltip(
elevation: 0, message: e.label,
margin: EdgeInsets.zero, child: InkWell(
child: Tooltip( borderRadius:
message: e.label, const BorderRadius.all(Radius.circular(8)),
child: InkWell( child: Icon(
borderRadius: e.icon,
const BorderRadius.all(Radius.circular(8)), size: 22,
child: Icon(e.icon, size: 20).paddingAll(20), color: Theme.of(context).colorScheme.onSurface,
onTap: () { ).paddingAll(16),
AppRouter.instance.goNamed(e.page); onTap: () {
_closeDrawer(); AppRouter.instance.goNamed(e.page);
}, _closeDrawer();
), },
), ),
), ),
) )

View File

@ -20,62 +20,42 @@ class AppNavigationRegion extends StatefulWidget {
State<AppNavigationRegion> createState() => _AppNavigationRegionState(); State<AppNavigationRegion> createState() => _AppNavigationRegionState();
} }
class _AppNavigationRegionState extends State<AppNavigationRegion> class _AppNavigationRegionState extends State<AppNavigationRegion> {
with SingleTickerProviderStateMixin {
bool _isTryingExit = false; bool _isTryingExit = false;
late final AnimationController _animationController = AnimationController(
vsync: this,
duration: const Duration(milliseconds: 250),
);
late final Animation<Offset> _animationTween = Tween<Offset>(
begin: Offset.zero,
end: const Offset(1.0, 0.0),
).animate(CurvedAnimation(
parent: _animationController,
curve: Curves.fastOutSlowIn,
));
void _focusRealm(Realm item) { void _focusRealm(Realm item) {
_animationController.animateTo(1).then((_) { setState(
setState( () => Get.find<NavigationStateProvider>().focusedRealm.value = item,
() => Get.find<NavigationStateProvider>().focusedRealm.value = item, );
);
_animationController.animateTo(0);
});
} }
void _unFocusRealm() { void _unFocusRealm() {
_animationController.animateTo(1).then((_) { setState(
setState( () => Get.find<NavigationStateProvider>().focusedRealm.value = null,
() => Get.find<NavigationStateProvider>().focusedRealm.value = null, );
);
_animationController.animateTo(0);
});
} }
@override @override
void dispose() { void dispose() {
_animationController.dispose();
super.dispose(); super.dispose();
} }
Widget _buildRealmFocusAvatar() { Widget _buildRealmFocusAvatar() {
final focusedRealm = Get.find<NavigationStateProvider>().focusedRealm.value; final focusedRealm = Get.find<NavigationStateProvider>().focusedRealm.value;
return MouseRegion( return GestureDetector(
child: AnimatedSwitcher( child: MouseRegion(
switchInCurve: Curves.fastOutSlowIn, child: AnimatedSwitcher(
switchOutCurve: Curves.fastOutSlowIn, switchInCurve: Curves.fastOutSlowIn,
duration: const Duration(milliseconds: 300), switchOutCurve: Curves.fastOutSlowIn,
transitionBuilder: (child, animation) { duration: const Duration(milliseconds: 300),
return ScaleTransition( transitionBuilder: (child, animation) {
scale: animation, return ScaleTransition(
child: child, scale: animation,
); child: child,
}, );
child: _isTryingExit },
? GestureDetector( child: _isTryingExit
child: CircleAvatar( ? CircleAvatar(
backgroundColor: Theme.of(context).colorScheme.primary, backgroundColor: Theme.of(context).colorScheme.primary,
child: const Icon( child: const Icon(
Icons.arrow_back, Icons.arrow_back,
@ -84,13 +64,13 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
), ),
).paddingSymmetric( ).paddingSymmetric(
vertical: 8, vertical: 8,
), )
onTap: () => _unFocusRealm(), : _buildEntryAvatar(focusedRealm!),
) ),
: _buildEntryAvatar(focusedRealm!), onEnter: (_) => setState(() => _isTryingExit = true),
onExit: (_) => setState(() => _isTryingExit = false),
), ),
onEnter: (_) => setState(() => _isTryingExit = true), onTap: () => _unFocusRealm(),
onExit: (_) => setState(() => _isTryingExit = false),
); );
} }
@ -113,11 +93,11 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
} }
Widget _buildEntry(BuildContext context, Realm item) { Widget _buildEntry(BuildContext context, Realm item) {
const padding = EdgeInsets.symmetric(horizontal: 20); const padding = EdgeInsets.symmetric(horizontal: 20, vertical: 8);
if (widget.isCollapsed) { if (widget.isCollapsed) {
return InkWell( return InkWell(
child: _buildEntryAvatar(item), child: _buildEntryAvatar(item).paddingSymmetric(vertical: 8),
onTap: () => _focusRealm(item), onTap: () => _focusRealm(item),
); );
} }
@ -144,19 +124,27 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
final NavigationStateProvider navState = Get.find(); final NavigationStateProvider navState = Get.find();
return Obx( return Obx(
() => AnimatedBuilder( () => AnimatedSwitcher(
animation: _animationController, switchInCurve: Curves.fastOutSlowIn,
builder: (context, child) { switchOutCurve: Curves.fastOutSlowIn,
duration: const Duration(milliseconds: 300),
transitionBuilder: (child, animation) {
return SlideTransition( return SlideTransition(
position: _animationTween, position: Tween<Offset>(
child: child, begin: const Offset(1.0, 0.0),
end: Offset.zero,
).animate(animation),
child: Material(
color: Theme.of(context).colorScheme.surface,
child: child,
),
); );
}, },
child: navState.focusedRealm.value == null child: navState.focusedRealm.value == null
? widget.isCollapsed ? widget.isCollapsed
? CustomScrollView( ? CustomScrollView(
slivers: [ slivers: [
const SliverPadding(padding: EdgeInsets.only(top: 8)), const SliverPadding(padding: EdgeInsets.only(top: 16)),
SliverList.builder( SliverList.builder(
itemCount: realms.availableRealms.length, itemCount: realms.availableRealms.length,
itemBuilder: (context, index) { itemBuilder: (context, index) {
@ -171,7 +159,6 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
) )
: CustomScrollView( : CustomScrollView(
slivers: [ slivers: [
const SliverPadding(padding: EdgeInsets.only(top: 8)),
SliverList.builder( SliverList.builder(
itemCount: realms.availableRealms.length, itemCount: realms.availableRealms.length,
itemBuilder: (context, index) { itemBuilder: (context, index) {
@ -179,7 +166,6 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
return _buildEntry(context, element); return _buildEntry(context, element);
}, },
), ),
const SliverPadding(padding: EdgeInsets.only(bottom: 8)),
], ],
) )
: Column( : Column(
@ -187,8 +173,9 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
if (widget.isCollapsed) if (widget.isCollapsed)
Tooltip( Tooltip(
message: navState.focusedRealm.value!.name, message: navState.focusedRealm.value!.name,
child: _buildRealmFocusAvatar().paddingSymmetric( child: _buildRealmFocusAvatar().paddingOnly(
vertical: 8, top: 24,
bottom: 8,
), ),
) )
else else
@ -209,13 +196,12 @@ class _AppNavigationRegionState extends State<AppNavigationRegion>
Expanded( Expanded(
child: Obx( child: Obx(
() => ChannelListWidget( () => ChannelListWidget(
useReplace: true,
channels: channels.availableChannels channels: channels.availableChannels
.where( .where((x) =>
(x) => x.realm?.id == navState.focusedRealm.value?.id)
x.realm?.id ==
navState.focusedRealm.value?.id,
)
.toList(), .toList(),
isCollapsed: widget.isCollapsed,
selfId: auth.userProfile.value!['id'], selfId: auth.userProfile.value!['id'],
noCategory: true, noCategory: true,
), ),

View File

@ -8,6 +8,7 @@ import 'package:intl/intl.dart';
import 'package:solian/models/post.dart'; import 'package:solian/models/post.dart';
import 'package:solian/screens/posts/post_detail.dart'; import 'package:solian/screens/posts/post_detail.dart';
import 'package:solian/shells/title_shell.dart'; import 'package:solian/shells/title_shell.dart';
import 'package:solian/theme.dart';
import 'package:solian/widgets/account/account_avatar.dart'; import 'package:solian/widgets/account/account_avatar.dart';
import 'package:solian/widgets/account/account_profile_popup.dart'; import 'package:solian/widgets/account/account_profile_popup.dart';
import 'package:solian/widgets/attachments/attachment_list.dart'; import 'package:solian/widgets/attachments/attachment_list.dart';
@ -302,7 +303,7 @@ class _PostItemState extends State<PostItem> {
autoload: false, autoload: false,
isGrid: true, isGrid: true,
).paddingOnly(left: 36, top: 4, bottom: 4); ).paddingOnly(left: 36, top: 4, bottom: 4);
} else if (attachments.length > 1) { } else if (attachments.length > 1 || AppTheme.isLargeScreen(context)) {
return AttachmentList( return AttachmentList(
parentId: widget.item.id.toString(), parentId: widget.item.id.toString(),
attachmentsId: attachments, attachmentsId: attachments,
@ -497,7 +498,10 @@ class _PostItemState extends State<PostItem> {
], ],
).paddingOnly( ).paddingOnly(
top: 10, top: 10,
bottom: attachments.length == 1 ? 10 : 0, bottom:
(attachments.length == 1 && !AppTheme.isLargeScreen(context))
? 10
: 0,
right: 16, right: 16,
left: 16, left: 16,
), ),
@ -514,8 +518,13 @@ class _PostItemState extends State<PostItem> {
}); });
}, },
).paddingOnly( ).paddingOnly(
top: attachments.length == 1 ? 10 : 6, top: (attachments.length == 1 && !AppTheme.isLargeScreen(context))
left: attachments.length == 1 ? 24 : 60, ? 10
: 6,
left:
(attachments.length == 1 && !AppTheme.isLargeScreen(context))
? 24
: 60,
right: 16, right: 16,
bottom: 10, bottom: 10,
) )