app/lib/widgets/widgets.dart

100 lines
3.0 KiB
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
import 'package:fluent_ui/fluent_ui.dart';
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';
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
}