mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 17:42:16 +00:00

* fix: recent views fix * fix: text button font color * fix: sidebar scrollbar inset * fix: account settings launch review * fix: open + menu on mobile provider issue * fix: code review * fix: push view improvement
75 lines
2.4 KiB
Dart
75 lines
2.4 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:appflowy/workspace/presentation/home/menu/menu_shared_state.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:appflowy/mobile/presentation/database/board/mobile_board_screen.dart';
|
|
import 'package:appflowy/mobile/presentation/database/mobile_calendar_screen.dart';
|
|
import 'package:appflowy/mobile/presentation/database/mobile_grid_screen.dart';
|
|
import 'package:appflowy/mobile/presentation/presentation.dart';
|
|
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/workspace/application/recent/cached_recent_service.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
extension MobileRouter on BuildContext {
|
|
Future<void> pushView(ViewPB view, [Map<String, dynamic>? arguments]) async {
|
|
await push(
|
|
Uri(
|
|
path: view.routeName,
|
|
queryParameters: view.queryParameters(arguments),
|
|
).toString(),
|
|
).then((value) {
|
|
getIt<MenuSharedState>().latestOpenView = view;
|
|
getIt<CachedRecentService>().updateRecentViews([view.id], true);
|
|
});
|
|
}
|
|
}
|
|
|
|
extension on ViewPB {
|
|
String get routeName {
|
|
switch (layout) {
|
|
case ViewLayoutPB.Document:
|
|
return MobileDocumentScreen.routeName;
|
|
case ViewLayoutPB.Grid:
|
|
return MobileGridScreen.routeName;
|
|
case ViewLayoutPB.Calendar:
|
|
return MobileCalendarScreen.routeName;
|
|
case ViewLayoutPB.Board:
|
|
return MobileBoardScreen.routeName;
|
|
default:
|
|
throw UnimplementedError('routeName for $this is not implemented');
|
|
}
|
|
}
|
|
|
|
Map<String, dynamic> queryParameters([Map<String, dynamic>? arguments]) {
|
|
switch (layout) {
|
|
case ViewLayoutPB.Document:
|
|
return {
|
|
MobileDocumentScreen.viewId: id,
|
|
MobileDocumentScreen.viewTitle: name,
|
|
};
|
|
case ViewLayoutPB.Grid:
|
|
return {
|
|
MobileGridScreen.viewId: id,
|
|
MobileGridScreen.viewTitle: name,
|
|
MobileGridScreen.viewArgs: jsonEncode(arguments),
|
|
};
|
|
case ViewLayoutPB.Calendar:
|
|
return {
|
|
MobileCalendarScreen.viewId: id,
|
|
MobileCalendarScreen.viewTitle: name,
|
|
};
|
|
case ViewLayoutPB.Board:
|
|
return {
|
|
MobileBoardScreen.viewId: id,
|
|
MobileBoardScreen.viewTitle: name,
|
|
};
|
|
default:
|
|
throw UnimplementedError(
|
|
'queryParameters for $this is not implemented',
|
|
);
|
|
}
|
|
}
|
|
}
|