2021-09-11 01:04:15 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
|
|
|
|
import '../../l10n/l10n.dart';
|
|
|
|
import '../../util/icons.dart';
|
|
|
|
import '../../util/observer_consumers.dart';
|
|
|
|
import '../../util/share.dart';
|
|
|
|
import 'post_status.dart';
|
|
|
|
import 'post_store.dart';
|
|
|
|
import 'post_voting.dart';
|
|
|
|
import 'save_post_button.dart';
|
|
|
|
|
|
|
|
class PostActions extends HookWidget {
|
|
|
|
const PostActions();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final fullPost = context.read<IsFullPost>();
|
|
|
|
|
2021-10-18 01:02:35 +02:00
|
|
|
// assemble actions section
|
2021-09-11 01:04:15 +02:00
|
|
|
return ObserverBuilder<PostStore>(builder: (context, store) {
|
|
|
|
return Padding(
|
2021-10-18 01:11:04 +02:00
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 5),
|
2021-09-11 01:04:15 +02:00
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.comment),
|
|
|
|
const SizedBox(width: 6),
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
2021-11-05 21:37:27 +01:00
|
|
|
L10n.of(context)
|
2021-09-11 01:04:15 +02:00
|
|
|
.number_of_comments(store.postView.counts.comments),
|
|
|
|
overflow: TextOverflow.fade,
|
|
|
|
softWrap: false,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (!fullPost)
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(shareIcon),
|
|
|
|
onPressed: () =>
|
|
|
|
share(store.postView.post.apId, context: context),
|
|
|
|
),
|
|
|
|
if (!fullPost) const SavePostButton(),
|
|
|
|
const PostVoting(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|