app/lib/widgets/widgets.dart

144 lines
4.2 KiB
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
import 'package:fluent_ui/fluent_ui.dart';
2024-03-09 20:22:44 +08:00
import 'package:go_router/go_router.dart';
2024-03-07 23:01:32 +08:00
import 'package:url_launcher/url_launcher_string.dart';
import 'package:window_manager/window_manager.dart';
2023-10-09 09:32:07 +08:00
import 'package:markdown_widget/config/all.dart';
import 'package:markdown_widget/widget/all.dart';
2024-03-07 23:01:32 +08:00
import 'package:extended_image/extended_image.dart';
2024-03-09 21:53:37 +08:00
import 'dart:ui' as ui;
export 'src/cache_image.dart';
export 'src/countdown_time_text.dart';
export '../common/utils/base_utils.dart';
Widget makeLoading(
BuildContext context, {
double? width,
}) {
width ??= 30;
return Center(
child: SizedBox(
width: width,
height: width,
child: const ProgressRing(),
),
);
}
2023-10-09 09:32:07 +08:00
2024-03-07 23:01:32 +08:00
Widget makeDefaultPage(BuildContext context,
{Widget? titleRow,
List<Widget>? actions,
Widget? content,
bool automaticallyImplyLeading = true,
String title = ""}) {
return NavigationView(
appBar: NavigationAppBar(
automaticallyImplyLeading: automaticallyImplyLeading,
title: DragToMoveArea(
child: titleRow ??
Column(
children: [
Expanded(
child: Row(
children: [
Text(title),
],
),
)
],
),
2023-10-09 09:32:07 +08:00
),
2024-03-07 23:01:32 +08:00
actions: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [...?actions, const WindowButtons()],
)),
content: content,
);
2023-10-09 09:32:07 +08:00
}
2024-03-07 23:01:32 +08:00
class WindowButtons extends StatelessWidget {
const WindowButtons({super.key});
2023-10-09 09:32:07 +08:00
2024-03-07 23:01:32 +08:00
@override
Widget build(BuildContext context) {
final FluentThemeData theme = FluentTheme.of(context);
return SizedBox(
width: 138,
height: 50,
child: WindowCaption(
brightness: theme.brightness,
backgroundColor: Colors.transparent,
),
);
}
2023-10-09 09:32:07 +08:00
}
2023-12-05 21:26:46 +08:00
List<Widget> makeMarkdownView(String description, {String? attachmentsUrl}) {
2023-10-28 13:00:10 +08:00
return MarkdownGenerator().buildWidgets(description,
2023-10-09 09:32:07 +08:00
config: MarkdownConfig(configs: [
2023-10-28 13:00:10 +08:00
LinkConfig(onTap: (url) {
2023-12-05 21:26:46 +08:00
if (url.startsWith("/") && attachmentsUrl != null) {
url = "$attachmentsUrl/$url";
2023-10-09 09:32:07 +08:00
}
2023-10-28 13:00:10 +08:00
launchUrlString(url);
}),
ImgConfig(builder: (String url, Map<String, String> attributes) {
2023-12-05 21:26:46 +08:00
if (url.startsWith("/") && attachmentsUrl != null) {
url = "$attachmentsUrl/$url";
}
2023-10-28 13:00:10 +08:00
return ExtendedImage.network(
url,
loadStateChanged: (ExtendedImageState state) {
switch (state.extendedImageLoadState) {
case LoadState.loading:
return const Center(
child: Padding(
padding: EdgeInsets.all(8.0),
child: Column(
children: [
ProgressRing(),
SizedBox(
height: 12,
),
Text("加载图片...")
],
),
),
);
case LoadState.completed:
return ExtendedRawImage(
image: state.extendedImageInfo?.image,
);
case LoadState.failed:
2023-12-05 21:26:46 +08:00
return Text("Loading Image error $url");
2023-10-28 13:00:10 +08:00
}
},
);
})
]));
2023-10-09 09:32:07 +08:00
}
2024-03-09 20:22:44 +08:00
2024-03-09 21:53:37 +08:00
ColorFilter makeSvgColor(Color color) {
return ui.ColorFilter.mode(color, ui.BlendMode.srcIn);
}
2024-03-09 20:22:44 +08:00
CustomTransitionPage<T> myPageBuilder<T>(
BuildContext context, GoRouterState state, Widget child) {
return CustomTransitionPage(
child: child,
transitionsBuilder: (BuildContext context, Animation<double> animation,
Animation<double> secondaryAnimation, Widget child) {
return Semantics(
scopesRoute: true,
explicitChildNodes: true,
child: EntrancePageTransition(
animation: CurvedAnimation(
parent: animation,
curve: FluentTheme.of(context).animationCurve,
),
child: child,
),
);
});
}