2019-12-11 16:58:25 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:git_touch/models/auth.dart';
|
|
|
|
import 'package:git_touch/models/gitlab.dart';
|
|
|
|
import 'package:git_touch/scaffolds/refresh_stateful.dart';
|
2019-12-14 17:08:12 +01:00
|
|
|
import 'package:git_touch/utils/utils.dart';
|
2020-01-30 07:51:22 +01:00
|
|
|
import 'package:git_touch/widgets/action_entry.dart';
|
2019-12-11 16:58:25 +01:00
|
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
|
|
|
import 'package:git_touch/widgets/blob_view.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
2020-02-07 15:26:37 +01:00
|
|
|
class GlBlobScreen extends StatelessWidget {
|
2019-12-11 16:58:25 +01:00
|
|
|
final int id;
|
2020-02-02 03:58:42 +01:00
|
|
|
final String ref;
|
2019-12-11 16:58:25 +01:00
|
|
|
final String path;
|
2020-02-07 15:26:37 +01:00
|
|
|
GlBlobScreen(this.id, this.ref, {this.path});
|
2019-12-11 16:58:25 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return RefreshStatefulScaffold<GitlabBlob>(
|
2020-01-29 05:42:36 +01:00
|
|
|
title: AppBarTitle(path ?? ''),
|
2020-10-06 14:52:40 +02:00
|
|
|
fetch: () async {
|
2020-10-04 14:37:23 +02:00
|
|
|
final auth = context.read<AuthModel>();
|
|
|
|
final res = await auth.fetchGitlab(
|
2020-02-02 03:58:42 +01:00
|
|
|
'/projects/$id/repository/files/${path.urlencode}?ref=$ref');
|
2019-12-11 16:58:25 +01:00
|
|
|
return GitlabBlob.fromJson(res);
|
|
|
|
},
|
2020-01-31 09:54:01 +01:00
|
|
|
action: ActionEntry(iconData: Icons.settings, url: '/choose-code-theme'),
|
2019-12-11 16:58:25 +01:00
|
|
|
bodyBuilder: (data, _) {
|
2020-01-30 07:06:25 +01:00
|
|
|
return BlobView(path, base64Text: data.content);
|
2019-12-11 16:58:25 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|