Solian/lib/screens/posts/post_publish.dart

288 lines
9.5 KiB
Dart
Raw Normal View History

2024-05-19 10:01:00 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_animate/flutter_animate.dart';
2024-05-23 12:00:26 +00:00
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
2024-05-19 10:01:00 +00:00
import 'package:get/get.dart';
2024-05-19 16:08:20 +00:00
import 'package:solian/exts.dart';
import 'package:solian/models/post.dart';
2024-05-29 14:42:11 +00:00
import 'package:solian/models/realm.dart';
2024-05-19 10:01:00 +00:00
import 'package:solian/providers/auth.dart';
import 'package:solian/router.dart';
2024-06-22 15:59:11 +00:00
import 'package:solian/theme.dart';
2024-05-19 10:01:00 +00:00
import 'package:solian/widgets/account/account_avatar.dart';
2024-06-22 15:59:11 +00:00
import 'package:solian/widgets/app_bar_title.dart';
2024-05-19 16:08:20 +00:00
import 'package:solian/widgets/attachments/attachment_publish.dart';
import 'package:solian/widgets/posts/post_item.dart';
import 'package:solian/widgets/posts/tags_field.dart';
2024-05-22 15:18:01 +00:00
import 'package:solian/widgets/prev_page.dart';
import 'package:textfield_tags/textfield_tags.dart';
class PostPublishingArguments {
final Post? edit;
final Post? reply;
final Post? repost;
2024-05-29 14:42:11 +00:00
final Realm? realm;
2024-05-29 14:42:11 +00:00
PostPublishingArguments({this.edit, this.reply, this.repost, this.realm});
}
2024-05-19 10:01:00 +00:00
class PostPublishingScreen extends StatefulWidget {
final Post? edit;
final Post? reply;
final Post? repost;
2024-05-29 14:42:11 +00:00
final Realm? realm;
const PostPublishingScreen({
super.key,
this.edit,
this.reply,
this.repost,
this.realm,
});
2024-05-19 10:01:00 +00:00
@override
State<PostPublishingScreen> createState() => _PostPublishingScreenState();
}
class _PostPublishingScreenState extends State<PostPublishingScreen> {
final _contentController = TextEditingController();
final _tagsController = StringTagController();
2024-05-19 10:01:00 +00:00
2024-05-25 16:11:00 +00:00
bool _isBusy = false;
2024-05-19 10:01:00 +00:00
List<int> _attachments = List.empty();
2024-05-19 16:08:20 +00:00
2024-05-26 13:03:25 +00:00
void showAttachments() {
2024-05-19 16:08:20 +00:00
showModalBottomSheet(
context: context,
2024-06-27 03:05:15 +00:00
builder: (context) => AttachmentPublishPopup(
2024-05-19 16:08:20 +00:00
usage: 'i.attachment',
current: _attachments,
onUpdate: (value) => _attachments = value,
),
);
}
2024-05-19 10:01:00 +00:00
void applyPost() async {
final AuthProvider auth = Get.find();
if (!await auth.isAuthorized) return;
if (_contentController.value.text.isEmpty) return;
2024-05-25 16:11:00 +00:00
setState(() => _isBusy = true);
2024-05-19 10:01:00 +00:00
2024-06-22 14:39:32 +00:00
final client = auth.configureClient('interactive');
2024-05-19 10:01:00 +00:00
final payload = {
2024-05-19 10:01:00 +00:00
'content': _contentController.value.text,
'tags': _tagsController.getTags?.map((x) => {'alias': x}).toList() ??
List.empty(),
2024-05-19 16:08:20 +00:00
'attachments': _attachments,
if (widget.edit != null) 'alias': widget.edit!.alias,
if (widget.reply != null) 'reply_to': widget.reply!.id,
if (widget.repost != null) 'repost_to': widget.repost!.id,
2024-05-29 14:42:11 +00:00
if (widget.realm != null) 'realm': widget.realm!.alias,
};
Response resp;
if (widget.edit != null) {
resp = await client.put('/api/posts/${widget.edit!.id}', payload);
} else {
resp = await client.post('/api/posts', payload);
}
2024-05-19 10:01:00 +00:00
if (resp.statusCode != 200) {
2024-05-19 16:08:20 +00:00
context.showErrorDialog(resp.bodyString);
2024-05-19 10:01:00 +00:00
} else {
AppRouter.instance.pop(resp.body);
}
2024-05-25 16:11:00 +00:00
setState(() => _isBusy = false);
2024-05-19 10:01:00 +00:00
}
void syncWidget() {
if (widget.edit != null) {
_contentController.text = widget.edit!.content;
_attachments = widget.edit!.attachments ?? List.empty();
}
}
void cancelAction() {
AppRouter.instance.pop();
}
@override
void initState() {
syncWidget();
super.initState();
}
2024-05-19 10:01:00 +00:00
@override
Widget build(BuildContext context) {
final AuthProvider auth = Get.find();
final notifyBannerActions = [
TextButton(
onPressed: cancelAction,
child: Text('cancel'.tr),
)
];
2024-05-19 10:01:00 +00:00
return Material(
color: Theme.of(context).colorScheme.surface,
2024-05-19 10:01:00 +00:00
child: Scaffold(
appBar: AppBar(
2024-06-22 15:59:11 +00:00
title: AppBarTitle('postPublishing'.tr),
centerTitle: false,
toolbarHeight: SolianTheme.toolbarHeight(context),
2024-05-22 15:18:01 +00:00
leading: const PrevPageButton(),
2024-05-19 10:01:00 +00:00
actions: [
TextButton(
2024-05-25 16:11:00 +00:00
onPressed: _isBusy ? null : () => applyPost(),
2024-05-19 10:01:00 +00:00
child: Text('postAction'.tr.toUpperCase()),
)
],
),
body: SafeArea(
top: false,
2024-07-06 19:02:10 +00:00
child: Stack(
2024-05-19 10:01:00 +00:00
children: [
2024-07-06 19:02:10 +00:00
ListView(
children: [
if (_isBusy)
const LinearProgressIndicator().animate().scaleX(),
if (widget.edit != null)
MaterialBanner(
leading: const Icon(Icons.edit),
leadingPadding:
const EdgeInsets.only(left: 10, right: 20),
dividerColor: Colors.transparent,
content: Text('postEditingNotify'.tr),
actions: notifyBannerActions,
),
if (widget.reply != null)
ExpansionTile(
leading: const FaIcon(
FontAwesomeIcons.reply,
size: 18,
).paddingOnly(left: 2),
title: Text('postReplyingNotify'.trParams(
{'username': '@${widget.reply!.author.name}'},
)),
collapsedBackgroundColor:
Theme.of(context).colorScheme.surfaceContainer,
children: [
PostItem(
item: widget.reply!,
isReactable: false,
).paddingOnly(bottom: 8),
],
),
if (widget.repost != null)
ExpansionTile(
leading: const FaIcon(
FontAwesomeIcons.retweet,
size: 18,
).paddingOnly(left: 2),
title: Text('postRepostingNotify'.trParams(
{'username': '@${widget.repost!.author.name}'},
)),
collapsedBackgroundColor:
Theme.of(context).colorScheme.surfaceContainer,
children: [
PostItem(
item: widget.repost!,
isReactable: false,
).paddingOnly(bottom: 8),
],
),
FutureBuilder(
future: auth.getProfile(),
builder: (context, snapshot) {
if (snapshot.hasData) {
return ListTile(
leading: AccountAvatar(
content: snapshot.data?.body!['avatar'],
radius: 22),
title: Text(snapshot.data?.body!['nick']),
subtitle: Text('postIdentityNotify'.tr),
);
} else {
return Container();
}
},
),
2024-07-06 19:02:10 +00:00
if (widget.realm != null)
MaterialBanner(
leading: const Icon(Icons.group),
leadingPadding:
const EdgeInsets.only(left: 10, right: 20),
dividerColor: Colors.transparent,
content: Text(
'postInRealmNotify'
.trParams({'realm': '#${widget.realm!.alias}'}),
),
2024-07-06 19:02:10 +00:00
actions: notifyBannerActions,
),
const Divider(thickness: 0.3, height: 0.3)
.paddingOnly(bottom: 8),
Container(
padding:
const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: TextField(
maxLines: null,
autofocus: true,
autocorrect: true,
keyboardType: TextInputType.multiline,
controller: _contentController,
decoration: InputDecoration.collapsed(
hintText: 'postContentPlaceholder'.tr,
),
2024-07-06 19:02:10 +00:00
onTapOutside: (_) =>
FocusManager.instance.primaryFocus?.unfocus(),
2024-05-19 10:01:00 +00:00
),
),
2024-07-06 19:02:10 +00:00
],
2024-05-19 10:01:00 +00:00
),
2024-07-06 19:02:10 +00:00
Positioned(
bottom: 0,
left: 0,
right: 0,
child: Column(
2024-05-19 10:01:00 +00:00
children: [
TagsField(
2024-07-07 04:33:54 +00:00
initialTags:
widget.edit?.tags?.map((x) => x.alias).toList(),
tagsController: _tagsController,
hintText: 'postTagsPlaceholder'.tr,
),
2024-07-06 19:02:10 +00:00
const Divider(thickness: 0.3, height: 0.3),
SizedBox(
height: 56,
child: Row(
children: [
TextButton(
style: TextButton.styleFrom(
shape: const CircleBorder(),
),
child: const Icon(Icons.camera_alt),
onPressed: () => showAttachments(),
)
],
),
),
2024-05-19 10:01:00 +00:00
],
),
),
],
),
),
),
);
}
@override
void dispose() {
_contentController.dispose();
_tagsController.dispose();
super.dispose();
}
2024-05-19 10:01:00 +00:00
}