git-touch-android-ios-app/lib/screens/object.dart

165 lines
4.2 KiB
Dart
Raw Normal View History

2019-08-30 08:23:58 +02:00
import 'package:flutter_highlight/themes/github.dart';
2019-08-31 16:44:27 +02:00
import 'package:git_touch/screens/image_view.dart';
2019-08-30 08:23:58 +02:00
import 'package:path/path.dart' as path;
2019-08-30 08:08:09 +02:00
import 'package:flutter/material.dart';
2019-08-30 08:23:58 +02:00
import 'package:flutter_highlight/flutter_highlight.dart';
2019-08-30 08:08:09 +02:00
import 'package:git_touch/providers/settings.dart';
import 'package:git_touch/scaffolds/refresh.dart';
import 'package:git_touch/utils/utils.dart';
import 'package:git_touch/widgets/link.dart';
2019-08-30 09:20:29 +02:00
import 'package:primer/primer.dart';
2019-08-30 08:08:09 +02:00
class ObjectScreen extends StatelessWidget {
final String owner;
final String name;
final String branch;
final List<String> paths;
2019-08-30 08:23:58 +02:00
final String type;
2019-08-30 08:08:09 +02:00
ObjectScreen({
@required this.owner,
@required this.name,
this.branch = 'master',
this.paths = const [],
2019-08-30 08:23:58 +02:00
this.type = 'tree',
2019-08-30 08:08:09 +02:00
});
2019-08-31 16:44:27 +02:00
String get expression => '$branch:' + paths.join('/');
String get extname {
if (paths.isEmpty) return '';
var dotext = path.extension(paths.last);
if (dotext.isEmpty) return '';
return dotext.substring(1);
}
String get rawUrl =>
'https://raw.githubusercontent.com/$owner/$name/$branch/' +
paths.join('/'); // TODO:
2019-08-30 08:08:09 +02:00
IconData _buildIconData(item) {
switch (item['type']) {
case 'tree':
return Octicons.file_directory;
case 'blob':
return Octicons.file;
default:
return Octicons.link;
}
}
2019-08-30 08:23:58 +02:00
String get _subQuery {
switch (type) {
case 'tree':
return '''
... on Tree {
entries {
type
name
}
}
''';
case 'blob':
default:
return '''
... on Blob {
text
}
''';
}
}
Widget _buildTree(payload) {
2019-08-30 09:20:29 +02:00
var entries = payload['entries'] as List;
2019-08-30 08:23:58 +02:00
return Column(
2019-08-30 09:20:29 +02:00
children: entries.map((item) {
2019-08-30 08:23:58 +02:00
return Link(
screenBuilder: (context) {
2019-08-31 16:44:27 +02:00
// TODO: All image types
var ext = path.extension(item['name']);
if (ext.isNotEmpty) ext = ext.substring(1);
if (['png', 'jpg', 'jpeg'].contains(ext)) {
return ImageView(NetworkImage('$rawUrl/' + item['name']));
}
2019-08-30 08:23:58 +02:00
return ObjectScreen(
name: name,
owner: owner,
branch: branch,
paths: [...paths, item['name']],
type: item['type'],
);
},
child: Container(
padding: EdgeInsets.all(12),
decoration: BoxDecoration(
border:
Border(bottom: BorderSide(color: Colors.grey.shade100))),
child: Row(
children: <Widget>[
Icon(_buildIconData(item), color: Color(0x80032f62), size: 20),
SizedBox(width: 8),
Expanded(
2019-08-30 09:20:29 +02:00
child: Text(item['name'],
style: TextStyle(
fontSize: 16, color: PrimerColors.blue500)))
2019-08-30 08:23:58 +02:00
],
),
),
);
}).toList(),
);
}
Widget _buildBlob(payload) {
2019-09-02 16:35:20 +02:00
return SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: HighlightView(
payload['text'],
language: extname.isEmpty ? 'plaintext' : extname,
theme: githubTheme,
padding: EdgeInsets.all(10),
),
2019-08-30 08:23:58 +02:00
);
}
2019-08-30 08:08:09 +02:00
@override
Widget build(BuildContext context) {
return RefreshScaffold(
title: Text(paths.join('/')),
onRefresh: () async {
var data = await SettingsProvider.of(context).query('''{
repository(owner: "$owner", name: "$name") {
object(expression: "$expression") {
2019-08-30 08:23:58 +02:00
$_subQuery
2019-08-30 08:08:09 +02:00
}
}
}''');
2019-08-30 09:20:29 +02:00
if (type == 'tree') {
var entries = data['repository']['object']['entries'] as List;
entries.sort((a, b) {
if (a['type'] == 'tree' && b['type'] == 'blob') {
return -1;
}
if (a['type'] == 'blob' && b['type'] == 'tree') {
return 1;
}
return 0;
});
}
2019-08-30 08:23:58 +02:00
return data['repository']['object'];
2019-08-30 08:08:09 +02:00
},
bodyBuilder: (payload) {
2019-08-30 08:23:58 +02:00
switch (type) {
case 'tree':
return _buildTree(payload);
case 'blob':
return _buildBlob(payload);
default:
return null;
}
2019-08-30 08:08:09 +02:00
},
);
}
}