123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- import 'package:flutter/material.dart';
- import 'package:photos/ente_theme_data.dart';
- import 'package:photos/models/collection.dart';
- import 'package:photos/models/trash_file.dart';
- import 'package:photos/theme/colors.dart';
- import 'package:photos/ui/sharing/user_avator_widget.dart';
- import 'package:photos/utils/date_time_util.dart';
- class ThumbnailPlaceHolder extends StatelessWidget {
- const ThumbnailPlaceHolder({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Container(
- alignment: Alignment.center,
- color: Theme.of(context).colorScheme.galleryThumbBackgroundColor,
- );
- }
- }
- class UnSyncedIcon extends StatelessWidget {
- const UnSyncedIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomLeftOverlayIcon(
- Icons.cloud_off_outlined,
- baseSize: 18,
- );
- }
- }
- class DeviceIcon extends StatelessWidget {
- const DeviceIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomLeftOverlayIcon(
- Icons.mobile_friendly_rounded,
- baseSize: 18,
- color: Color.fromRGBO(1, 222, 77, 0.8),
- );
- }
- }
- class CloudOnlyIcon extends StatelessWidget {
- const CloudOnlyIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomLeftOverlayIcon(
- Icons.cloud_done_outlined,
- baseSize: 18,
- color: Color.fromRGBO(1, 222, 77, 0.8),
- );
- }
- }
- class FavoriteOverlayIcon extends StatelessWidget {
- const FavoriteOverlayIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomLeftOverlayIcon(
- Icons.favorite_rounded,
- baseSize: 22,
- );
- }
- }
- class ArchiveOverlayIcon extends StatelessWidget {
- const ArchiveOverlayIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomLeftOverlayIcon(
- Icons.archive_outlined,
- color: fixedStrokeMutedWhite,
- );
- }
- }
- class LivePhotoOverlayIcon extends StatelessWidget {
- const LivePhotoOverlayIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const _BottomRightOverlayIcon(
- Icons.album_outlined,
- baseSize: 18,
- );
- }
- }
- class VideoOverlayIcon extends StatelessWidget {
- const VideoOverlayIcon({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return const SizedBox(
- height: 64,
- child: Icon(
- Icons.play_circle_outline,
- size: 40,
- color: Colors.white70,
- ),
- );
- }
- }
- class OwnerAvatarOverlayIcon extends StatelessWidget {
- final User user;
- const OwnerAvatarOverlayIcon(this.user, {Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Align(
- alignment: Alignment.topRight,
- child: Padding(
- padding: const EdgeInsets.only(right: 4, top: 4),
- child: UserAvatarWidget(
- user,
- type: AvatarType.tiny,
- thumbnailView: true,
- ),
- ),
- );
- }
- }
- class TrashedFileOverlayText extends StatelessWidget {
- final TrashFile file;
- const TrashedFileOverlayText(this.file, {Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.bottomCenter,
- end: Alignment.topCenter,
- colors: [Colors.black.withOpacity(0.33), Colors.transparent],
- ),
- ),
- alignment: Alignment.bottomCenter,
- padding: const EdgeInsets.only(bottom: 5),
- child: Text(
- daysLeft(file.deleteBy),
- style: Theme.of(context)
- .textTheme
- .subtitle2!
- .copyWith(color: Colors.white), //same for both themes
- ),
- );
- }
- }
- // Base variations
- /// Icon overlay in the bottom left.
- ///
- /// This usually indicates ente specific state of a file, e.g. if it is
- /// favorited/archived.
- class _BottomLeftOverlayIcon extends StatelessWidget {
- final IconData icon;
- /// Overriddable color. Default is a fixed white.
- final Color color;
- /// Overriddable default size. This is just the initial hint, the actual size
- /// is dynamic based on the widget's width (so that we show smaller icons in
- /// smaller thumbnails).
- final double baseSize;
- const _BottomLeftOverlayIcon(
- this.icon, {
- Key? key,
- this.baseSize = 24,
- this.color = Colors.white, // fixed
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return LayoutBuilder(
- builder: (context, constraints) {
- double inset = 4;
- double size = baseSize;
- if (constraints.hasBoundedWidth) {
- final w = constraints.maxWidth;
- if (w > 125) {
- size = 24;
- } else if (w < 75) {
- inset = 3;
- size = 16;
- }
- }
- return Container(
- decoration: const BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.bottomLeft,
- end: Alignment.center,
- colors: [
- Color.fromRGBO(0, 0, 0, 0.14),
- Color.fromRGBO(0, 0, 0, 0.05),
- Color.fromRGBO(0, 0, 0, 0.0),
- ],
- stops: [0, 0.6, 1],
- ),
- ),
- child: Align(
- alignment: Alignment.bottomLeft,
- child: Padding(
- padding: EdgeInsets.only(left: inset, bottom: inset),
- child: Icon(
- icon,
- size: size,
- color: color,
- ),
- ),
- ),
- );
- },
- );
- }
- }
- /// Icon overlay in the bottom right.
- ///
- /// This usually indicates information about the file itself, e.g. whether it is
- /// a live photo, or the duration of the video.
- class _BottomRightOverlayIcon extends StatelessWidget {
- final IconData icon;
- /// Overriddable color. Default is a fixed white.
- final Color color;
- /// Overriddable default size. This is just the initial hint, the actual size
- /// is dynamic based on the widget's width (so that we show smaller icons in
- /// smaller thumbnails).
- final double baseSize;
- const _BottomRightOverlayIcon(
- this.icon, {
- Key? key,
- this.baseSize = 24,
- this.color = Colors.white, // fixed
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return LayoutBuilder(
- builder: (context, constraints) {
- double inset = 4;
- double size = baseSize;
- if (constraints.hasBoundedWidth) {
- final w = constraints.maxWidth;
- if (w > 120) {
- size = 24;
- } else if (w < 75) {
- inset = 3;
- size = 16;
- }
- }
- return Container(
- decoration: const BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.bottomRight,
- end: Alignment.center,
- colors: [
- Color.fromRGBO(0, 0, 0, 0.14),
- Color.fromRGBO(0, 0, 0, 0.05),
- Color.fromRGBO(0, 0, 0, 0.0),
- ],
- stops: [0, 0.6, 1],
- ),
- ),
- child: Align(
- alignment: Alignment.bottomRight,
- child: Padding(
- padding: EdgeInsets.only(bottom: inset, right: inset),
- child: Icon(
- icon,
- size: size,
- color: color,
- ),
- ),
- ),
- );
- },
- );
- }
- }
|