ente/lib/ui/tabs/shared/empty_state.dart

202 lines
7 KiB
Dart
Raw Normal View History

import "package:flutter/material.dart";
2023-06-06 16:43:32 +00:00
import "package:photos/core/event_bus.dart";
import "package:photos/events/tab_changed_event.dart";
import "package:photos/generated/l10n.dart";
import "package:photos/theme/ente_theme.dart";
2023-06-06 09:57:17 +00:00
import 'package:photos/ui/collections/collection_action_sheet.dart';
import 'package:photos/ui/components/buttons/button_widget.dart';
import "package:photos/ui/components/empty_state_item_widget.dart";
import "package:photos/ui/components/models/button_type.dart";
import "package:photos/utils/share_util.dart";
2023-06-06 16:43:32 +00:00
import "package:photos/utils/toast_util.dart";
2023-06-06 16:43:32 +00:00
class SharedEmptyStateWidget extends StatelessWidget {
const SharedEmptyStateWidget({super.key});
@override
Widget build(BuildContext context) {
final textTheme = getEnteTextTheme(context);
return SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.fromLTRB(16, 12, 16, 114),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 10),
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Padding(
padding:
const EdgeInsets.symmetric(horizontal: 4, vertical: 16),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
S.of(context).privateSharing,
style: textTheme.h3Bold,
textAlign: TextAlign.start,
),
const SizedBox(height: 24),
Column(
mainAxisSize: MainAxisSize.min,
children: [
EmptyStateItemWidget(
S.of(context).shareOnlyWithThePeopleYouWant,
),
const SizedBox(height: 12),
EmptyStateItemWidget(
S.of(context).usePublicLinksForPeopleNotOnEnte,
),
const SizedBox(height: 12),
EmptyStateItemWidget(
S.of(context).allowPeopleToAddPhotos,
),
],
),
],
),
),
const SizedBox(height: 16),
Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ButtonWidget(
2023-02-15 05:37:47 +00:00
buttonType: ButtonType.trailingIconPrimary,
labelText: S.of(context).shareAnAlbumNow,
2023-02-15 05:37:47 +00:00
icon: Icons.arrow_forward_outlined,
onTap: () async {
showCollectionActionSheet(
context,
actionType: CollectionActionType.shareCollection,
);
},
),
const SizedBox(height: 6),
ButtonWidget(
buttonType: ButtonType.trailingIconSecondary,
labelText: S.of(context).collectEventPhotos,
icon: Icons.add_photo_alternate_outlined,
onTap: () async {
showCollectionActionSheet(
context,
actionType: CollectionActionType.collectPhotos,
);
},
),
const SizedBox(height: 6),
ButtonWidget(
buttonType: ButtonType.trailingIconSecondary,
labelText: S.of(context).inviteYourFriends,
icon: Icons.ios_share_outlined,
onTap: () async {
2023-12-21 07:34:06 +00:00
// ignore: unawaited_futures
shareText(S.of(context).shareTextRecommendUsingEnte);
},
),
],
),
),
],
),
),
),
);
}
}
2023-06-06 16:43:32 +00:00
class OutgoingAlbumEmptyState extends StatelessWidget {
const OutgoingAlbumEmptyState({super.key});
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.symmetric(vertical: 24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.collections_outlined,
color: getEnteColorScheme(context).strokeMuted,
),
const SizedBox(height: 12),
Text(
S.of(context).noAlbumsSharedByYouYet,
style: getEnteTextTheme(context).bodyMuted,
),
],
2023-06-06 16:43:32 +00:00
),
),
const SizedBox(height: 12),
Padding(
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 24),
child: ButtonWidget(
buttonType: ButtonType.trailingIconPrimary,
labelText: S.of(context).shareYourFirstAlbum,
icon: Icons.add,
onTap: () async {
2023-12-16 21:04:26 +00:00
showToast(
context,
S.of(context).shareAlbumHint,
);
Bus.instance.fire(
TabChangedEvent(1, TabChangedEventSource.collectionsPage),
);
},
2023-06-06 16:43:32 +00:00
),
),
2023-07-19 10:11:36 +00:00
const SizedBox(height: 12),
],
2023-06-06 16:43:32 +00:00
);
}
}
class IncomingAlbumEmptyState extends StatelessWidget {
const IncomingAlbumEmptyState({super.key});
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.symmetric(vertical: 24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.collections_outlined,
color: getEnteColorScheme(context).strokeMuted,
),
const SizedBox(height: 12),
Text(
S.of(context).nothingSharedWithYouYet,
style: getEnteTextTheme(context).bodyMuted,
),
],
2023-06-06 16:43:32 +00:00
),
),
const SizedBox(height: 12),
Padding(
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 24),
child: ButtonWidget(
buttonType: ButtonType.trailingIconPrimary,
labelText: S.of(context).inviteYourFriends,
icon: Icons.ios_share_outlined,
onTap: () async {
2023-12-21 07:34:06 +00:00
// ignore: unawaited_futures
shareText(S.of(context).shareTextRecommendUsingEnte);
},
2023-06-06 16:43:32 +00:00
),
),
2023-07-19 10:11:36 +00:00
const SizedBox(height: 12),
],
2023-06-06 16:43:32 +00:00
);
}
}