Merge pull request #2625 from krille-chan/krille/improve-spaces-ux
refactor: Better UX for create space children
This commit is contained in:
commit
d376e009bc
4 changed files with 208 additions and 199 deletions
|
|
@ -176,8 +176,11 @@ abstract class AppRoutes {
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: 'newgroup',
|
path: 'newgroup',
|
||||||
pageBuilder: (context, state) =>
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
defaultPageBuilder(context, state, const NewGroup()),
|
context,
|
||||||
|
state,
|
||||||
|
NewGroup(spaceId: state.uri.queryParameters['space_id']),
|
||||||
|
),
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
|
|
@ -185,7 +188,10 @@ abstract class AppRoutes {
|
||||||
pageBuilder: (context, state) => defaultPageBuilder(
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
context,
|
context,
|
||||||
state,
|
state,
|
||||||
const NewGroup(createGroupType: CreateGroupType.space),
|
NewGroup(
|
||||||
|
createGroupType: CreateGroupType.space,
|
||||||
|
spaceId: state.uri.queryParameters['space_id'],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
@ -12,20 +13,22 @@ import 'package:fluffychat/config/themes.dart';
|
||||||
import 'package:fluffychat/l10n/l10n.dart';
|
import 'package:fluffychat/l10n/l10n.dart';
|
||||||
import 'package:fluffychat/pages/chat_list/unread_bubble.dart';
|
import 'package:fluffychat/pages/chat_list/unread_bubble.dart';
|
||||||
import 'package:fluffychat/utils/localized_exception_extension.dart';
|
import 'package:fluffychat/utils/localized_exception_extension.dart';
|
||||||
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
|
|
||||||
import 'package:fluffychat/utils/stream_extension.dart';
|
import 'package:fluffychat/utils/stream_extension.dart';
|
||||||
import 'package:fluffychat/utils/string_color.dart';
|
import 'package:fluffychat/utils/string_color.dart';
|
||||||
import 'package:fluffychat/widgets/adaptive_dialogs/show_modal_action_popup.dart';
|
|
||||||
import 'package:fluffychat/widgets/adaptive_dialogs/show_ok_cancel_alert_dialog.dart';
|
import 'package:fluffychat/widgets/adaptive_dialogs/show_ok_cancel_alert_dialog.dart';
|
||||||
import 'package:fluffychat/widgets/adaptive_dialogs/show_text_input_dialog.dart';
|
|
||||||
import 'package:fluffychat/widgets/avatar.dart';
|
import 'package:fluffychat/widgets/avatar.dart';
|
||||||
import 'package:fluffychat/widgets/future_loading_dialog.dart';
|
import 'package:fluffychat/widgets/future_loading_dialog.dart';
|
||||||
import 'package:fluffychat/widgets/hover_builder.dart';
|
import 'package:fluffychat/widgets/hover_builder.dart';
|
||||||
import 'package:fluffychat/widgets/matrix.dart';
|
import 'package:fluffychat/widgets/matrix.dart';
|
||||||
|
|
||||||
enum AddRoomType { chat, subspace }
|
enum SpaceChildAction {
|
||||||
|
mute,
|
||||||
enum SpaceChildAction { edit, moveToSpace, removeFromSpace }
|
unmute,
|
||||||
|
markAsUnread,
|
||||||
|
markAsRead,
|
||||||
|
removeFromSpace,
|
||||||
|
leave,
|
||||||
|
}
|
||||||
|
|
||||||
enum SpaceActions { settings, invite, members, leave }
|
enum SpaceActions { settings, invite, members, leave }
|
||||||
|
|
||||||
|
|
@ -54,13 +57,30 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
bool _noMoreRooms = false;
|
bool _noMoreRooms = false;
|
||||||
bool _isLoading = false;
|
bool _isLoading = false;
|
||||||
|
|
||||||
|
StreamSubscription? _childStateSub;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
_loadHierarchy();
|
_loadHierarchy();
|
||||||
|
_childStateSub = Matrix.of(context).client.onSync.stream
|
||||||
|
.where(
|
||||||
|
(syncUpdate) =>
|
||||||
|
syncUpdate.rooms?.join?[widget.spaceId]?.timeline?.events?.any(
|
||||||
|
(event) => event.type == EventTypes.SpaceChild,
|
||||||
|
) ??
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
.listen(_loadHierarchy);
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _loadHierarchy() async {
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_childStateSub?.cancel();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadHierarchy([_]) async {
|
||||||
final matrix = Matrix.of(context);
|
final matrix = Matrix.of(context);
|
||||||
final room = matrix.client.getRoomById(widget.spaceId);
|
final room = matrix.client.getRoomById(widget.spaceId);
|
||||||
if (room == null) return;
|
if (room == null) return;
|
||||||
|
|
@ -184,87 +204,14 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _addChatOrSubspace(AddRoomType roomType) async {
|
|
||||||
final names = await showTextInputDialog(
|
|
||||||
context: context,
|
|
||||||
title: roomType == AddRoomType.subspace
|
|
||||||
? L10n.of(context).newSubSpace
|
|
||||||
: L10n.of(context).createGroup,
|
|
||||||
hintText: roomType == AddRoomType.subspace
|
|
||||||
? L10n.of(context).spaceName
|
|
||||||
: L10n.of(context).groupName,
|
|
||||||
minLines: 1,
|
|
||||||
maxLines: 1,
|
|
||||||
maxLength: 64,
|
|
||||||
validator: (text) {
|
|
||||||
if (text.isEmpty) {
|
|
||||||
return L10n.of(context).pleaseChoose;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
okLabel: L10n.of(context).create,
|
|
||||||
cancelLabel: L10n.of(context).cancel,
|
|
||||||
);
|
|
||||||
if (names == null) return;
|
|
||||||
final client = Matrix.of(context).client;
|
|
||||||
final result = await showFutureLoadingDialog(
|
|
||||||
context: context,
|
|
||||||
future: () async {
|
|
||||||
late final String roomId;
|
|
||||||
final activeSpace = client.getRoomById(widget.spaceId)!;
|
|
||||||
await activeSpace.postLoad();
|
|
||||||
final isPublicSpace = activeSpace.joinRules == JoinRules.public;
|
|
||||||
|
|
||||||
if (roomType == AddRoomType.subspace) {
|
|
||||||
roomId = await client.createSpace(
|
|
||||||
name: names,
|
|
||||||
visibility: isPublicSpace
|
|
||||||
? sdk.Visibility.public
|
|
||||||
: sdk.Visibility.private,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
roomId = await client.createGroupChat(
|
|
||||||
enableEncryption: !isPublicSpace,
|
|
||||||
groupName: names,
|
|
||||||
preset: isPublicSpace
|
|
||||||
? CreateRoomPreset.publicChat
|
|
||||||
: CreateRoomPreset.privateChat,
|
|
||||||
visibility: isPublicSpace
|
|
||||||
? sdk.Visibility.public
|
|
||||||
: sdk.Visibility.private,
|
|
||||||
initialState: isPublicSpace
|
|
||||||
? null
|
|
||||||
: [
|
|
||||||
StateEvent(
|
|
||||||
content: {
|
|
||||||
'join_rule': 'restricted',
|
|
||||||
'allow': [
|
|
||||||
{
|
|
||||||
'room_id': widget.spaceId,
|
|
||||||
'type': 'm.room_membership',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
type: EventTypes.RoomJoinRules,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
await activeSpace.setSpaceChild(roomId);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (result.error != null) return;
|
|
||||||
setState(() {
|
|
||||||
_nextBatch = null;
|
|
||||||
_discoveredChildren.clear();
|
|
||||||
});
|
|
||||||
_loadHierarchy();
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _showSpaceChildEditMenu(
|
Future<void> _showSpaceChildEditMenu(
|
||||||
BuildContext posContext,
|
BuildContext posContext,
|
||||||
String roomId,
|
String roomId,
|
||||||
) async {
|
) async {
|
||||||
|
final client = Matrix.of(context).client;
|
||||||
|
final space = client.getRoomById(widget.spaceId);
|
||||||
|
final room = client.getRoomById(roomId);
|
||||||
|
if (space == null) return;
|
||||||
final overlay =
|
final overlay =
|
||||||
Overlay.of(posContext).context.findRenderObject() as RenderBox;
|
Overlay.of(posContext).context.findRenderObject() as RenderBox;
|
||||||
|
|
||||||
|
|
@ -285,85 +232,94 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
context: posContext,
|
context: posContext,
|
||||||
position: position,
|
position: position,
|
||||||
items: [
|
items: [
|
||||||
PopupMenuItem(
|
if (room != null && room.membership == Membership.join) ...[
|
||||||
value: SpaceChildAction.moveToSpace,
|
PopupMenuItem(
|
||||||
child: Row(
|
value: room.pushRuleState == PushRuleState.notify
|
||||||
mainAxisSize: .min,
|
? SpaceChildAction.mute
|
||||||
children: [
|
: SpaceChildAction.unmute,
|
||||||
const Icon(Icons.move_down_outlined),
|
child: Row(
|
||||||
const SizedBox(width: 12),
|
mainAxisSize: .min,
|
||||||
Text(L10n.of(context).moveToDifferentSpace),
|
children: [
|
||||||
],
|
Icon(
|
||||||
|
room.pushRuleState == PushRuleState.notify
|
||||||
|
? Icons.notifications_off_outlined
|
||||||
|
: Icons.notifications_on_outlined,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Text(
|
||||||
|
room.pushRuleState == PushRuleState.notify
|
||||||
|
? L10n.of(context).muteChat
|
||||||
|
: L10n.of(context).unmuteChat,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
PopupMenuItem(
|
||||||
PopupMenuItem(
|
value: room.markedUnread
|
||||||
value: SpaceChildAction.edit,
|
? SpaceChildAction.markAsRead
|
||||||
child: Row(
|
: SpaceChildAction.markAsUnread,
|
||||||
mainAxisSize: .min,
|
child: Row(
|
||||||
children: [
|
mainAxisSize: .min,
|
||||||
const Icon(Icons.edit_outlined),
|
children: [
|
||||||
const SizedBox(width: 12),
|
Icon(
|
||||||
Text(L10n.of(context).edit),
|
room.markedUnread
|
||||||
],
|
? Icons.mark_as_unread
|
||||||
|
: Icons.mark_as_unread_outlined,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Text(
|
||||||
|
room.isUnread
|
||||||
|
? L10n.of(context).markAsRead
|
||||||
|
: L10n.of(context).markAsUnread,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
PopupMenuItem(
|
||||||
PopupMenuItem(
|
value: SpaceChildAction.leave,
|
||||||
value: SpaceChildAction.removeFromSpace,
|
child: Row(
|
||||||
child: Row(
|
mainAxisSize: .min,
|
||||||
mainAxisSize: .min,
|
children: [
|
||||||
children: [
|
Icon(
|
||||||
const Icon(Icons.group_remove_outlined),
|
Icons.delete_outlined,
|
||||||
const SizedBox(width: 12),
|
color: Theme.of(context).colorScheme.onErrorContainer,
|
||||||
Text(L10n.of(context).removeFromSpace),
|
),
|
||||||
],
|
const SizedBox(width: 12),
|
||||||
|
Text(
|
||||||
|
L10n.of(context).leave,
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.onErrorContainer,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
if (space.canChangeStateEvent(EventTypes.SpaceChild) == true)
|
||||||
|
PopupMenuItem(
|
||||||
|
value: SpaceChildAction.removeFromSpace,
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: .min,
|
||||||
|
children: [
|
||||||
|
Icon(
|
||||||
|
Icons.remove,
|
||||||
|
color: Theme.of(context).colorScheme.onErrorContainer,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Text(
|
||||||
|
L10n.of(context).removeFromSpace,
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.onErrorContainer,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
if (action == null) return;
|
if (action == null) return;
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
final space = Matrix.of(context).client.getRoomById(widget.spaceId);
|
|
||||||
if (space == null) return;
|
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case SpaceChildAction.edit:
|
|
||||||
context.push('/rooms/$roomId/details');
|
|
||||||
case SpaceChildAction.moveToSpace:
|
|
||||||
final spacesWithPowerLevels = space.client.rooms
|
|
||||||
.where(
|
|
||||||
(room) =>
|
|
||||||
room.isSpace &&
|
|
||||||
room.canChangeStateEvent(EventTypes.SpaceChild) &&
|
|
||||||
room.id != widget.spaceId,
|
|
||||||
)
|
|
||||||
.toList();
|
|
||||||
final newSpace = await showModalActionPopup(
|
|
||||||
context: context,
|
|
||||||
title: L10n.of(context).space,
|
|
||||||
actions: spacesWithPowerLevels
|
|
||||||
.map(
|
|
||||||
(space) => AdaptiveModalAction(
|
|
||||||
value: space,
|
|
||||||
label: space.getLocalizedDisplayname(
|
|
||||||
MatrixLocals(L10n.of(context)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
.toList(),
|
|
||||||
);
|
|
||||||
if (newSpace == null) return;
|
|
||||||
final result = await showFutureLoadingDialog(
|
|
||||||
context: context,
|
|
||||||
future: () async {
|
|
||||||
await newSpace.setSpaceChild(newSpace.id);
|
|
||||||
await space.removeSpaceChild(roomId);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (result.isError) return;
|
|
||||||
if (!mounted) return;
|
|
||||||
_nextBatch = null;
|
|
||||||
_loadHierarchy();
|
|
||||||
return;
|
|
||||||
|
|
||||||
case SpaceChildAction.removeFromSpace:
|
case SpaceChildAction.removeFromSpace:
|
||||||
final consent = await showOkCancelAlertDialog(
|
final consent = await showOkCancelAlertDialog(
|
||||||
context: context,
|
context: context,
|
||||||
|
|
@ -379,8 +335,32 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
if (result.isError) return;
|
if (result.isError) return;
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
_nextBatch = null;
|
_nextBatch = null;
|
||||||
_loadHierarchy();
|
|
||||||
return;
|
return;
|
||||||
|
case SpaceChildAction.mute:
|
||||||
|
await showFutureLoadingDialog(
|
||||||
|
context: context,
|
||||||
|
future: () => room!.setPushRuleState(PushRuleState.mentionsOnly),
|
||||||
|
);
|
||||||
|
case SpaceChildAction.unmute:
|
||||||
|
await showFutureLoadingDialog(
|
||||||
|
context: context,
|
||||||
|
future: () => room!.setPushRuleState(PushRuleState.notify),
|
||||||
|
);
|
||||||
|
case SpaceChildAction.markAsUnread:
|
||||||
|
await showFutureLoadingDialog(
|
||||||
|
context: context,
|
||||||
|
future: () => room!.markUnread(true),
|
||||||
|
);
|
||||||
|
case SpaceChildAction.markAsRead:
|
||||||
|
await showFutureLoadingDialog(
|
||||||
|
context: context,
|
||||||
|
future: () => room!.markUnread(false),
|
||||||
|
);
|
||||||
|
case SpaceChildAction.leave:
|
||||||
|
await showFutureLoadingDialog(
|
||||||
|
context: context,
|
||||||
|
future: () => room!.leave(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -420,34 +400,11 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
if (isAdmin)
|
if (isAdmin)
|
||||||
PopupMenuButton<AddRoomType>(
|
IconButton(
|
||||||
icon: const Icon(Icons.add_outlined),
|
icon: Icon(Icons.add_outlined),
|
||||||
onSelected: _addChatOrSubspace,
|
|
||||||
tooltip: L10n.of(context).addChatOrSubSpace,
|
tooltip: L10n.of(context).addChatOrSubSpace,
|
||||||
itemBuilder: (context) => [
|
onPressed: () =>
|
||||||
PopupMenuItem(
|
context.go('/rooms/newgroup?space_id=${widget.spaceId}'),
|
||||||
value: AddRoomType.chat,
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: .min,
|
|
||||||
children: [
|
|
||||||
const Icon(Icons.group_add_outlined),
|
|
||||||
const SizedBox(width: 12),
|
|
||||||
Text(L10n.of(context).newGroup),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
PopupMenuItem(
|
|
||||||
value: AddRoomType.subspace,
|
|
||||||
child: Row(
|
|
||||||
mainAxisSize: .min,
|
|
||||||
children: [
|
|
||||||
const Icon(Icons.workspaces_outlined),
|
|
||||||
const SizedBox(width: 12),
|
|
||||||
Text(L10n.of(context).newSubSpace),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
PopupMenuButton<SpaceActions>(
|
PopupMenuButton<SpaceActions>(
|
||||||
useRootNavigator: true,
|
useRootNavigator: true,
|
||||||
|
|
@ -580,6 +537,7 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
if (joinedRoom?.membership == Membership.leave) {
|
if (joinedRoom?.membership == Membership.leave) {
|
||||||
joinedRoom = null;
|
joinedRoom = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.symmetric(
|
padding: const EdgeInsets.symmetric(
|
||||||
horizontal: 8,
|
horizontal: 8,
|
||||||
|
|
@ -607,13 +565,13 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
onTap: joinedRoom != null
|
onTap: joinedRoom != null
|
||||||
? () => widget.onChatTab(joinedRoom!)
|
? () => widget.onChatTab(joinedRoom!)
|
||||||
: null,
|
: null,
|
||||||
onLongPress: isAdmin
|
onLongPress: joinedRoom != null
|
||||||
? () => _showSpaceChildEditMenu(
|
? () => _showSpaceChildEditMenu(
|
||||||
context,
|
context,
|
||||||
item.roomId,
|
item.roomId,
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
leading: hovered && isAdmin
|
leading: hovered
|
||||||
? SizedBox.square(
|
? SizedBox.square(
|
||||||
dimension: avatarSize,
|
dimension: avatarSize,
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
|
|
@ -627,11 +585,13 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
.colorScheme
|
.colorScheme
|
||||||
.tertiaryContainer,
|
.tertiaryContainer,
|
||||||
),
|
),
|
||||||
onPressed: () =>
|
onPressed:
|
||||||
_showSpaceChildEditMenu(
|
isAdmin || joinedRoom != null
|
||||||
context,
|
? () => _showSpaceChildEditMenu(
|
||||||
item.roomId,
|
context,
|
||||||
),
|
item.roomId,
|
||||||
|
)
|
||||||
|
: null,
|
||||||
icon: const Icon(Icons.edit_outlined),
|
icon: const Icon(Icons.edit_outlined),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
@ -676,6 +636,16 @@ class _SpaceViewState extends State<SpaceView> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
if (joinedRoom != null &&
|
||||||
|
joinedRoom.pushRuleState !=
|
||||||
|
PushRuleState.notify)
|
||||||
|
const Padding(
|
||||||
|
padding: EdgeInsets.only(left: 4.0),
|
||||||
|
child: Icon(
|
||||||
|
Icons.notifications_off_outlined,
|
||||||
|
size: 16,
|
||||||
|
),
|
||||||
|
),
|
||||||
if (joinedRoom != null)
|
if (joinedRoom != null)
|
||||||
UnreadBubble(room: joinedRoom)
|
UnreadBubble(room: joinedRoom)
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,12 @@ import 'package:fluffychat/widgets/matrix.dart';
|
||||||
|
|
||||||
class NewGroup extends StatefulWidget {
|
class NewGroup extends StatefulWidget {
|
||||||
final CreateGroupType createGroupType;
|
final CreateGroupType createGroupType;
|
||||||
const NewGroup({this.createGroupType = CreateGroupType.group, super.key});
|
final String? spaceId;
|
||||||
|
const NewGroup({
|
||||||
|
this.createGroupType = CreateGroupType.group,
|
||||||
|
this.spaceId,
|
||||||
|
super.key,
|
||||||
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
NewGroupController createState() => NewGroupController();
|
NewGroupController createState() => NewGroupController();
|
||||||
|
|
@ -63,7 +68,9 @@ class NewGroupController extends State<NewGroup> {
|
||||||
|
|
||||||
Future<void> _createGroup() async {
|
Future<void> _createGroup() async {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
final roomId = await Matrix.of(context).client.createGroupChat(
|
final client = Matrix.of(context).client;
|
||||||
|
|
||||||
|
final roomId = await client.createGroupChat(
|
||||||
visibility: groupCanBeFound
|
visibility: groupCanBeFound
|
||||||
? sdk.Visibility.public
|
? sdk.Visibility.public
|
||||||
: sdk.Visibility.private,
|
: sdk.Visibility.private,
|
||||||
|
|
@ -79,7 +86,9 @@ class NewGroupController extends State<NewGroup> {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
await _addToSpace(roomId);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
|
|
||||||
context.go('/rooms/$roomId/invite');
|
context.go('/rooms/$roomId/invite');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -104,10 +113,23 @@ class NewGroupController extends State<NewGroup> {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
await _addToSpace(spaceId);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
context.pop<String>(spaceId);
|
context.pop<String>(spaceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> _addToSpace(String roomId) async {
|
||||||
|
final spaceId = widget.spaceId;
|
||||||
|
if (spaceId != null) {
|
||||||
|
final activeSpace = Matrix.of(context).client.getRoomById(spaceId);
|
||||||
|
if (activeSpace == null) {
|
||||||
|
throw Exception('Can not add group to space: Space not found $spaceId');
|
||||||
|
}
|
||||||
|
await activeSpace.postLoad();
|
||||||
|
await activeSpace.setSpaceChild(roomId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> submitAction([_]) async {
|
Future<void> submitAction([_]) async {
|
||||||
final client = Matrix.of(context).client;
|
final client = Matrix.of(context).client;
|
||||||
|
|
||||||
|
|
@ -143,6 +165,16 @@ class NewGroupController extends State<NewGroup> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
final spaceId = widget.spaceId;
|
||||||
|
if (spaceId != null) {
|
||||||
|
final space = Matrix.of(context).client.getRoomById(spaceId);
|
||||||
|
publicGroup = space?.joinRules == JoinRules.public;
|
||||||
|
}
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) => NewGroupView(this);
|
Widget build(BuildContext context) => NewGroupView(this);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -113,10 +113,11 @@ class SpacesNavigationRail extends StatelessWidget {
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
if (FluffyThemes.isColumnMode(context))
|
||||||
padding: const EdgeInsets.all(12.0),
|
Padding(
|
||||||
child: StartChatFab(),
|
padding: const EdgeInsets.all(12.0),
|
||||||
),
|
child: StartChatFab(),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue