revanced-manager/lib/ui/widgets/latest_commit_card.dart

113 lines
3.9 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2022-08-07 01:37:12 +02:00
import 'package:flutter_i18n/flutter_i18n.dart';
2022-08-01 10:38:22 +02:00
import 'package:google_fonts/google_fonts.dart';
2022-08-06 23:35:35 +02:00
import 'package:revanced_manager/services/github_api.dart';
import 'package:revanced_manager/constants.dart';
import 'package:revanced_manager/ui/widgets/patch_text_button.dart';
2022-08-01 20:15:55 +02:00
class LatestCommitCard extends StatefulWidget {
2022-08-18 16:33:33 +02:00
final Function() onPressed;
2022-08-11 22:17:10 +02:00
final Color? color;
const LatestCommitCard({
Key? key,
2022-08-18 16:33:33 +02:00
required this.onPressed,
2022-08-11 22:17:10 +02:00
this.color = const Color(0xff1B222B),
}) : super(key: key);
@override
2022-08-01 20:15:55 +02:00
State<LatestCommitCard> createState() => _LatestCommitCardState();
}
2022-08-01 20:15:55 +02:00
class _LatestCommitCardState extends State<LatestCommitCard> {
2022-08-18 16:33:33 +02:00
final GithubAPI _githubAPI = GithubAPI();
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
2022-08-11 22:17:10 +02:00
color: widget.color,
),
padding: const EdgeInsets.symmetric(vertical: 18, horizontal: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
2022-08-01 10:38:22 +02:00
children: [
Row(
children: [
I18nText(
'latestCommitCard.patcherLabel',
child: Text(
'',
style: GoogleFonts.roboto(
fontWeight: FontWeight.w700,
),
),
2022-08-01 10:38:22 +02:00
),
FutureBuilder<String>(
2022-08-18 16:33:33 +02:00
future: _githubAPI.latestCommitTime(ghOrg, patcherRepo),
builder: (context, snapshot) => Text(
snapshot.hasData && snapshot.data!.isNotEmpty
2022-08-17 14:25:08 +02:00
? FlutterI18n.translate(
context,
'latestCommitCard.timeagoLabel',
translationParams: {'time': snapshot.data!},
)
2022-08-17 14:18:08 +02:00
: FlutterI18n.translate(
context,
'latestCommitCard.loadingLabel',
),
style: robotoTextStyle,
),
),
],
),
const SizedBox(height: 8),
Row(
children: [
I18nText(
'latestCommitCard.managerLabel',
child: Text(
'',
style: GoogleFonts.roboto(
fontWeight: FontWeight.w700,
),
),
),
FutureBuilder<String>(
2022-08-18 16:33:33 +02:00
future: _githubAPI.latestCommitTime(ghOrg, managerRepo),
builder: (context, snapshot) => Text(
snapshot.hasData && snapshot.data!.isNotEmpty
2022-08-17 14:25:08 +02:00
? FlutterI18n.translate(
context,
'latestCommitCard.timeagoLabel',
translationParams: {'time': snapshot.data!},
)
2022-08-17 14:18:08 +02:00
: FlutterI18n.translate(
context,
'latestCommitCard.loadingLabel',
),
style: robotoTextStyle,
),
),
],
2022-08-01 10:38:22 +02:00
),
],
),
2022-08-01 10:38:22 +02:00
PatchTextButton(
2022-08-07 01:37:12 +02:00
text: FlutterI18n.translate(
context,
'latestCommitCard.updateButton',
),
2022-08-18 16:33:33 +02:00
onPressed: widget.onPressed,
backgroundColor: Theme.of(context).colorScheme.secondary,
borderColor: Theme.of(context).colorScheme.secondary,
2022-08-01 10:38:22 +02:00
),
],
),
);
}
}