git-touch-android-ios-app/lib/widgets/action_button.dart

134 lines
3.7 KiB
Dart
Raw Normal View History

2019-02-20 09:31:22 +01:00
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
2019-09-30 09:46:06 +02:00
import 'package:git_touch/utils/utils.dart';
import 'package:provider/provider.dart';
import 'package:git_touch/models/theme.dart';
2019-09-30 09:46:06 +02:00
import 'package:share/share.dart';
2019-02-20 09:31:22 +01:00
2019-09-30 09:46:06 +02:00
class ActionItem {
2019-02-20 09:31:22 +01:00
String text;
2020-01-01 13:59:20 +01:00
String url;
2020-02-01 11:30:32 +01:00
bool isDestructiveAction;
2020-01-01 13:59:20 +01:00
void Function(BuildContext context) onTap;
IconData iconData;
ActionItem({
@required this.text,
2020-01-01 13:59:20 +01:00
this.onTap,
this.url,
this.iconData,
2020-02-01 11:30:32 +01:00
this.isDestructiveAction = false,
});
2019-02-20 09:31:22 +01:00
2020-01-27 06:41:17 +01:00
static List<ActionItem> getUrlActions(String url) {
return [
ActionItem(
text: 'Share',
iconData: Octicons.rocket,
2020-01-27 06:41:17 +01:00
onTap: (_) {
2019-09-30 09:46:06 +02:00
Share.share(url);
2020-01-27 06:41:17 +01:00
},
),
ActionItem(
text: 'Open in Browser',
iconData: Octicons.globe,
2020-01-27 06:41:17 +01:00
onTap: (_) {
2019-09-30 09:46:06 +02:00
launchUrl(url);
2020-01-27 06:41:17 +01:00
},
),
];
}
2019-02-20 09:31:22 +01:00
}
class ActionButton extends StatelessWidget {
final String title;
2019-09-30 09:46:06 +02:00
final List<ActionItem> items;
2019-02-20 09:31:22 +01:00
final IconData iconData;
2019-10-02 08:58:11 +02:00
final int selected;
2019-02-20 09:31:22 +01:00
ActionButton({
@required this.title,
2019-09-30 09:46:06 +02:00
@required this.items,
2021-02-14 15:17:22 +01:00
this.iconData = Ionicons.ellipsis_horizontal,
2019-10-02 08:58:11 +02:00
this.selected,
2019-02-20 09:31:22 +01:00
});
@override
Widget build(BuildContext context) {
2020-01-01 13:59:20 +01:00
final theme = Provider.of<ThemeModel>(context);
switch (theme.theme) {
2019-09-19 15:10:50 +02:00
case AppThemeType.cupertino:
2020-01-04 15:47:48 +01:00
return CupertinoButton(
minSize: 0,
child: Icon(iconData, size: 22),
2020-01-04 15:47:48 +01:00
padding: EdgeInsets.zero,
onPressed: () async {
2019-09-30 09:46:06 +02:00
var value = await showCupertinoModalPopup<int>(
2019-02-20 09:31:22 +01:00
context: context,
builder: (BuildContext context) {
return CupertinoActionSheet(
title: Text(title),
2019-09-30 09:46:06 +02:00
actions: items.asMap().entries.map((entry) {
2019-02-20 09:31:22 +01:00
return CupertinoActionSheetAction(
child: Row(
children: [
Icon(entry.value.iconData),
SizedBox(width: 10),
Text(
entry.value.text,
style: TextStyle(
fontWeight: selected == entry.key
? FontWeight.w500
: FontWeight.w400),
),
],
2019-10-02 08:58:11 +02:00
),
2019-02-20 09:31:22 +01:00
onPressed: () {
Navigator.pop(context, entry.key);
},
);
}).toList(),
cancelButton: CupertinoActionSheetAction(
child: const Text('Cancel'),
isDefaultAction: true,
onPressed: () {
Navigator.pop(context);
},
),
);
},
);
2019-09-30 09:46:06 +02:00
if (value != null) {
2020-01-01 13:59:20 +01:00
if (items[value].onTap != null) items[value].onTap(context);
if (items[value].url != null)
theme.push(context, items[value].url);
2019-09-30 09:46:06 +02:00
}
2019-02-20 09:31:22 +01:00
},
);
default:
return PopupMenuButton(
icon: Icon(iconData),
2019-10-02 08:58:11 +02:00
initialValue: selected,
itemBuilder: (context) {
return items.asMap().entries.map((entry) {
return PopupMenuItem(
value: entry.key,
child: Row(
children: [
Icon(entry.value.iconData),
SizedBox(width: 10),
Text(entry.value.text)
],
),
);
}).toList();
},
2019-10-02 08:58:11 +02:00
onSelected: (value) {
2020-01-01 13:59:20 +01:00
items[value].onTap(context);
},
);
2019-02-20 09:31:22 +01:00
}
}
}