git-touch-android-ios-app/lib/widgets/markdown_view.dart

125 lines
4.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
2020-01-20 03:32:27 +01:00
import 'package:git_touch/models/code.dart';
2019-09-30 14:49:22 +02:00
import 'package:git_touch/models/theme.dart';
2019-09-14 11:19:33 +02:00
import 'package:git_touch/utils/utils.dart';
2019-09-30 14:49:22 +02:00
import 'package:provider/provider.dart';
import 'package:uri/uri.dart';
2019-11-06 14:56:52 +01:00
import 'package:path/path.dart' as path;
class MarkdownView extends StatelessWidget {
final String text;
2019-11-06 14:56:52 +01:00
final List<String> basePaths;
2019-11-06 14:56:52 +01:00
MarkdownView(this.text, {this.basePaths});
2019-09-30 14:49:22 +02:00
Map<String, String> matchPattern(String url, String pattern) {
var uri = Uri.parse(url);
return UriParser(UriTemplate(pattern)).match(uri)?.parameters;
}
@override
Widget build(BuildContext context) {
2019-11-08 12:56:49 +01:00
final theme = Provider.of<ThemeModel>(context);
2020-01-20 03:32:27 +01:00
final code = Provider.of<CodeModel>(context);
2020-01-27 08:11:51 +01:00
final _basicStyle =
TextStyle(fontSize: 16, color: theme.palette.text, height: 1.5);
2019-11-08 12:56:49 +01:00
final _hStyle =
_basicStyle.copyWith(fontWeight: FontWeight.w600, height: 1.25);
return MarkdownBody(
2019-09-30 14:49:22 +02:00
onTapLink: (url) {
2019-11-06 14:56:52 +01:00
if (basePaths != null &&
!url.startsWith('https://') &&
!url.startsWith('http://')) {
// Treat as relative path
final x = basePaths.sublist(3).join('/');
var y = path.join(x, url);
if (y.startsWith('/')) y = y.substring(1);
2019-12-13 04:09:04 +01:00
return Provider.of<ThemeModel>(context).push(context,
'/${basePaths[0]}/${basePaths[1]}/${basePaths[2]}?path=${y.urlencode}');
2019-11-06 14:56:52 +01:00
}
2019-09-30 14:49:22 +02:00
// TODO: Relative paths
if (url.startsWith('https://github.com')) {
Map<String, String> m;
m = matchPattern(url, '/{owner}/{name}/pull/{number}');
if (m != null) {
2019-12-13 04:09:04 +01:00
return Provider.of<ThemeModel>(context).push(context, url);
2019-09-30 14:49:22 +02:00
}
m = matchPattern(url, '/{owner}/{name}/issues/{number}');
if (m != null) {
2019-12-13 04:09:04 +01:00
return Provider.of<ThemeModel>(context).push(context, url);
2019-09-30 14:49:22 +02:00
}
m = matchPattern(url, '/{owner}/{name}');
if (m != null) {
2019-12-13 04:09:04 +01:00
return Provider.of<ThemeModel>(context).push(context, url);
2019-09-30 14:49:22 +02:00
}
m = matchPattern(url, '/{login}');
if (m != null) {
2019-12-13 04:09:04 +01:00
return Provider.of<ThemeModel>(context).push(context, url);
2019-09-30 14:49:22 +02:00
}
}
launchUrl(url);
},
data: text,
styleSheet: MarkdownStyleSheet(
2020-01-27 08:11:51 +01:00
a: _basicStyle.copyWith(color: theme.palette.primary),
2019-09-13 18:31:33 +02:00
p: _basicStyle,
code: _basicStyle.copyWith(
fontSize: 16 * 0.85,
height: 1.45,
2020-01-20 03:32:27 +01:00
fontFamily: code.fontFamilyUsed,
2019-09-13 18:31:33 +02:00
),
h1: _hStyle.copyWith(fontSize: 32),
h2: _hStyle.copyWith(fontSize: 24),
h3: _hStyle.copyWith(fontSize: 20),
h4: _hStyle,
h5: _hStyle.copyWith(fontSize: 14),
2019-11-08 12:56:49 +01:00
h6: _hStyle.copyWith(
2020-01-27 08:11:51 +01:00
fontSize: 16 * 0.85, color: theme.palette.tertiaryText),
2019-09-13 18:31:33 +02:00
em: _basicStyle.copyWith(fontStyle: FontStyle.italic),
strong: _basicStyle.copyWith(fontWeight: FontWeight.w600),
2019-11-30 15:44:55 +01:00
del: const TextStyle(decoration: TextDecoration.lineThrough),
2020-01-27 08:11:51 +01:00
blockquote: _basicStyle.copyWith(color: theme.palette.tertiaryText),
2019-09-13 18:31:33 +02:00
img: _basicStyle,
2019-11-30 15:44:55 +01:00
checkbox: _basicStyle,
2019-09-13 18:31:33 +02:00
blockSpacing: 16,
listIndent: 32,
2019-11-30 15:44:55 +01:00
listBullet: _basicStyle,
2020-01-28 16:44:25 +01:00
// tableHead: _basicStyle,
2019-11-30 15:44:55 +01:00
tableBody: _basicStyle,
2020-01-28 16:44:25 +01:00
// tableHeadAlign: TextAlign.center,
// tableBorder: TableBorder.all(color: Colors.grey.shade300, width: 0),
// tableColumnWidth: const FlexColumnWidth(),
// tableCellsPadding: const EdgeInsets.fromLTRB(16, 8, 16, 8),
2019-11-07 14:46:05 +01:00
blockquotePadding: EdgeInsets.symmetric(horizontal: 16),
blockquoteDecoration: BoxDecoration(
2019-09-13 18:31:33 +02:00
border: Border(left: BorderSide(color: Color(0xffdfe2e5), width: 4)),
),
2019-11-07 14:46:05 +01:00
codeblockPadding: EdgeInsets.all(16),
codeblockDecoration: BoxDecoration(
2020-01-27 08:11:51 +01:00
color: theme.palette.grayBackground,
2019-09-13 18:31:33 +02:00
borderRadius: BorderRadius.circular(3),
),
horizontalRuleDecoration: BoxDecoration(
2019-09-13 18:31:33 +02:00
border: Border(
2019-12-27 08:31:54 +01:00
top: BorderSide(
width: 4,
2020-01-27 08:11:51 +01:00
color: theme.palette.grayBackground,
2019-12-27 08:31:54 +01:00
),
2019-09-13 18:31:33 +02:00
),
),
),
// syntaxHighlighter: , // TODO:
);
}
}