1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 23:13:22 +00:00
comunicmobile/lib/ui/widgets/text_rich_content_widget.dart

71 lines
1.7 KiB
Dart
Raw Normal View History

2019-05-01 08:21:26 +00:00
import 'dart:ui';
import 'package:comunic/utils/input_utils.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
/// Text rich content widget
///
/// This widget is used to parse user content (URLs, references,
/// layout content...)
///
/// @author Pierre HUBERT
class TextRichContentWidget extends StatelessWidget {
final TextAlign textAlign;
final TextStyle style;
2020-05-08 07:14:25 +00:00
final String text;
2019-05-01 08:21:26 +00:00
TextRichContentWidget(
2020-05-08 07:14:25 +00:00
this.text, {
2019-05-01 08:21:26 +00:00
this.textAlign,
this.style,
2020-05-08 07:14:25 +00:00
}) : assert(text != null);
2019-05-01 08:21:26 +00:00
/// Parse the text and return it as a list of span elements
static List<TextSpan> _parse(String text, TextStyle style) {
if (style == null) style = TextStyle();
2021-03-13 14:14:54 +00:00
List<TextSpan> list = [];
2019-05-01 08:21:26 +00:00
String currString = "";
text.split("\n").forEach((f) {
text.split(" ").forEach((s) {
if (validateUrl(s)) {
if (currString.length > 0)
//"Flush" previous text
list.add(TextSpan(style: style, text: currString + " "));
// Add link
list.add(TextSpan(
style: style.copyWith(color: Colors.indigo),
text: s,
recognizer: TapGestureRecognizer()
..onTap = () {
launch(s);
}));
currString = "";
} else
currString += s;
currString += " ";
});
currString += "\n";
});
list.add(TextSpan(
style: style, text: currString.substring(0, currString.length - 2)));
return list;
}
@override
Widget build(BuildContext context) {
2020-05-08 07:14:25 +00:00
return RichText(
textAlign: textAlign, text: TextSpan(children: _parse(text, style)));
2019-05-01 08:21:26 +00:00
}
}