lemmur-app-android/lib/util/goto.dart

67 lines
2.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2021-04-05 20:14:39 +02:00
import 'package:lemmy_api_client/v3.dart';
import '../pages/community/community.dart';
2021-09-11 01:04:15 +02:00
import '../pages/full_post/full_post.dart';
2020-10-06 22:24:03 +02:00
import '../pages/media_view.dart';
2020-09-10 14:00:39 +02:00
import '../pages/user.dart';
2020-09-30 19:05:00 +02:00
/// Pushes onto the navigator stack the given widget
Future<dynamic> goTo(
BuildContext context,
Widget Function(BuildContext context) builder,
) =>
Navigator.of(context).push(MaterialPageRoute(
builder: builder,
));
2020-09-30 19:05:00 +02:00
/// Replaces the top of the navigator stack with the given widget
2020-09-28 20:28:06 +02:00
Future<dynamic> goToReplace(
BuildContext context,
Widget Function(BuildContext context) builder,
) =>
Navigator.of(context).pushReplacement(MaterialPageRoute(
2020-09-28 20:28:06 +02:00
builder: builder,
));
// ignore: camel_case_types
abstract class goToCommunity {
/// Navigates to `CommunityPage`
static void byId(
BuildContext context, String instanceHost, int communityId) =>
Navigator.of(context)
.push(CommunityPage.fromIdRoute(instanceHost, communityId));
static void byName(
BuildContext context, String instanceHost, String communityName) =>
Navigator.of(context)
.push(CommunityPage.fromNameRoute(instanceHost, communityName));
}
// ignore: camel_case_types
abstract class goToUser {
static void byId(BuildContext context, String instanceHost, int userId) =>
goTo(context,
(context) => UserPage(instanceHost: instanceHost, userId: userId));
static void byName(
BuildContext context, String instanceHost, String userName) =>
throw UnimplementedError('need to create UserProfile constructor first');
2021-02-24 20:52:18 +01:00
2021-04-05 20:14:39 +02:00
static void fromPersonSafe(BuildContext context, PersonSafe personSafe) =>
goToUser.byId(context, personSafe.instanceHost, personSafe.id);
}
void goToPost(BuildContext context, String instanceHost, int postId) =>
Navigator.of(context).push(FullPostPage.route(postId, instanceHost));
2020-10-06 22:24:03 +02:00
void goToMedia(BuildContext context, String url) => Navigator.push(
2020-10-06 17:02:19 +02:00
context,
PageRouteBuilder(
pageBuilder: (_, __, ___) => MediaViewPage(url),
2021-02-08 12:15:48 +01:00
opaque: false,
2020-10-06 17:02:19 +02:00
transitionsBuilder: (_, animation, __, child) =>
FadeTransition(opacity: animation, child: child),
),
);