chore: hide invite page share button if room does not have join code / is not space (#3426)

pull/2245/head
ggurdin 4 months ago committed by GitHub
parent 2803de4d3b
commit 7e07289ae7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -16,7 +16,6 @@ import 'package:fluffychat/pangea/chat_settings/pages/pangea_invitation_selectio
import 'package:fluffychat/pangea/common/config/environment.dart';
import 'package:fluffychat/pangea/extensions/pangea_room_extension.dart';
import 'package:fluffychat/pangea/spaces/constants/space_constants.dart';
import 'package:fluffychat/utils/fluffy_share.dart';
import 'package:fluffychat/utils/stream_extension.dart';
import 'package:fluffychat/widgets/adaptive_dialogs/user_dialog.dart';
import 'package:fluffychat/widgets/avatar.dart';
@ -47,9 +46,35 @@ class PangeaInvitationSelectionView extends StatelessWidget {
final theme = Theme.of(context);
final contacts = controller.filteredContacts();
final alias = room.canonicalAlias.isEmpty
? controller.widget.roomId
: room.canonicalAlias;
final doneButton = ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: theme.colorScheme.primaryContainer,
padding: const EdgeInsets.symmetric(
horizontal: 24,
vertical: 16,
),
),
child: Row(
spacing: 34.0,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.check,
color: theme.colorScheme.onPrimaryContainer,
),
Text(
L10n.of(context).done,
style: TextStyle(
color: theme.colorScheme.onPrimaryContainer,
fontWeight: FontWeight.w600,
),
),
],
),
onPressed: () => context.go(
room.isSpace ? "/rooms?spaceId=${room.id}" : "/rooms/${room.id}",
),
);
return Scaffold(
appBar: AppBar(
@ -316,71 +341,10 @@ class PangeaInvitationSelectionView extends StatelessWidget {
),
],
),
)
else
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: theme.colorScheme.primaryContainer,
padding: const EdgeInsets.symmetric(
horizontal: 24,
vertical: 16,
),
),
child: Row(
spacing: 34.0,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.share_outlined,
color: theme.colorScheme.onPrimaryContainer,
),
Text(
L10n.of(context).share,
style: TextStyle(
color: theme.colorScheme.onPrimaryContainer,
fontWeight: FontWeight.w600,
),
),
],
),
onPressed: () => FluffyShare.share(
"${Environment.frontendURL}/#/join_with_alias?alias=$alias",
context,
),
),
),
ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: theme.colorScheme.primaryContainer,
padding: const EdgeInsets.symmetric(
horizontal: 24,
vertical: 16,
),
),
child: Row(
spacing: 34.0,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.check,
color: theme.colorScheme.onPrimaryContainer,
),
Text(
L10n.of(context).done,
style: TextStyle(
color: theme.colorScheme.onPrimaryContainer,
fontWeight: FontWeight.w600,
),
),
],
),
onPressed: () => context.go(
room.isSpace
? "/rooms?spaceId=${room.id}"
: "/rooms/${room.id}",
),
),
room.isSpace && room.classCode != null
? doneButton
: Expanded(child: doneButton),
],
),
],

Loading…
Cancel
Save