-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathdiff_view.dart
86 lines (80 loc) · 2.48 KB
/
diff_view.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// import 'package:flutter/widgets.dart';
// import 'package:git_touch/models/code.dart';
// import 'package:git_touch/models/theme.dart';
// import 'package:provider/provider.dart';
// class DiffLine {
// String? type;
// int lineNumber;
// String content;
// DiffLine({
// required this.type,
// required this.lineNumber,
// required this.content,
// });
// }
// class DiffChunk {
// String heading;
// List<DiffLine> lines;
// DiffChunk({required this.heading, required this.lines});
// }
// class DiffView extends StatelessWidget {
// final String source;
// DiffView(this.source);
// @override
// Widget build(BuildContext context) {
// final code = Provider.of<CodeModel>(context);
// final theme = Provider.of<ThemeModel>(context);
// final lines = source.split('\n');
// final chunks = <DiffChunk>[];
// var offset = 0;
// for (final line in lines) {
// if (line.startsWith('@@')) {
// chunks.add(DiffChunk(heading: line, lines: []));
// offset = int.parse(line.substring(4).split(',')[0]);
// } else {
// chunks.last.lines.add(DiffLine(
// type: line.isEmpty ? null : line[0],
// lineNumber: offset,
// content: line,
// ));
// offset++;
// }
// }
// return DefaultTextStyle(
// child: Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// for (var c in chunks)
// Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// Text(
// c.heading,
// style: TextStyle(
// color: AntTheme.of(context).tertiaryText,
// backgroundColor: Color(0xfffafafa),
// ),
// ),
// for (var l in c.lines)
// Text(
// l.content,
// style: TextStyle(
// backgroundColor: l.type == '-'
// ? Color(0x00fbe9eb)
// : l.type == '+'
// ? Color(0xffecfdf0)
// : null,
// ),
// ),
// ],
// ),
// ],
// ),
// style: TextStyle(
// fontFamily: code.fontFamilyUsed,
// fontSize: 14,
// color: AntTheme.of(context).text,
// ),
// );
// }
// }