2020-11-01 16:23:03 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:git_touch/models/auth.dart';
|
|
|
|
import 'package:git_touch/models/gitee.dart';
|
|
|
|
import 'package:git_touch/scaffolds/refresh_stateful.dart';
|
2021-02-14 15:17:22 +01:00
|
|
|
import 'package:git_touch/utils/utils.dart';
|
2020-11-01 16:23:03 +01:00
|
|
|
import 'package:git_touch/widgets/action_entry.dart';
|
|
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
|
|
|
import 'package:git_touch/widgets/blob_view.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
2021-02-03 05:04:41 +01:00
|
|
|
import 'package:flutter_gen/gen_l10n/S.dart';
|
2020-11-01 16:23:03 +01:00
|
|
|
|
|
|
|
class GeBlobScreen extends StatelessWidget {
|
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
final String sha;
|
|
|
|
final String path;
|
|
|
|
GeBlobScreen(this.owner, this.name, this.sha, this.path);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-05-16 09:16:35 +02:00
|
|
|
return RefreshStatefulScaffold<String?>(
|
|
|
|
title: AppBarTitle(AppLocalizations.of(context)!.file),
|
2020-11-01 16:23:03 +01:00
|
|
|
fetch: () async {
|
|
|
|
final auth = context.read<AuthModel>();
|
|
|
|
final res = await auth.fetchGitee('/repos/$owner/$name/git/blobs/$sha');
|
|
|
|
return GiteeBlob.fromJson(res).content;
|
|
|
|
},
|
2021-02-14 15:17:22 +01:00
|
|
|
action: ActionEntry(iconData: Ionicons.cog, url: '/choose-code-theme'),
|
2020-11-01 16:23:03 +01:00
|
|
|
bodyBuilder: (content, _) {
|
|
|
|
return BlobView(path, base64Text: content);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|