266 lines
10 KiB
Dart
266 lines
10 KiB
Dart
// ignore_for_file: library_private_types_in_public_api
|
|
|
|
import 'package:dismissible_page/dismissible_page.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:extended_image/extended_image.dart';
|
|
import 'package:pilipala/plugin/pl_player/index.dart';
|
|
import 'package:pilipala/utils/download.dart';
|
|
import 'controller.dart';
|
|
|
|
typedef DoubleClickAnimationListener = void Function();
|
|
|
|
class ImagePreview extends StatefulWidget {
|
|
const ImagePreview({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ImagePreviewState createState() => _ImagePreviewState();
|
|
}
|
|
|
|
class _ImagePreviewState extends State<ImagePreview>
|
|
with TickerProviderStateMixin {
|
|
final PreviewController _previewController = Get.put(PreviewController());
|
|
// late AnimationController animationController;
|
|
late AnimationController _doubleClickAnimationController;
|
|
Animation<double>? _doubleClickAnimation;
|
|
late DoubleClickAnimationListener _doubleClickAnimationListener;
|
|
List<double> doubleTapScales = <double>[1.0, 2.0];
|
|
bool _dismissDisabled = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
// animationController = AnimationController(
|
|
// vsync: this, duration: const Duration(milliseconds: 400));
|
|
_doubleClickAnimationController = AnimationController(
|
|
duration: const Duration(milliseconds: 250), vsync: this);
|
|
}
|
|
|
|
onOpenMenu() {
|
|
SmartDialog.show(
|
|
useSystem: true,
|
|
animationType: SmartAnimationType.centerFade_otherSlide,
|
|
builder: (BuildContext context) {
|
|
return AlertDialog(
|
|
clipBehavior: Clip.hardEdge,
|
|
contentPadding: const EdgeInsets.fromLTRB(0, 12, 0, 12),
|
|
content: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
ListTile(
|
|
onTap: () {
|
|
_previewController.onShareImg();
|
|
SmartDialog.dismiss();
|
|
},
|
|
dense: true,
|
|
title: const Text('分享', style: TextStyle(fontSize: 14)),
|
|
),
|
|
ListTile(
|
|
onTap: () {
|
|
Clipboard.setData(
|
|
ClipboardData(text: _previewController.currentImgUrl))
|
|
.then((value) {
|
|
SmartDialog.showToast('已复制到粘贴板');
|
|
SmartDialog.dismiss();
|
|
}).catchError((err) {
|
|
SmartDialog.showNotify(
|
|
msg: err.toString(),
|
|
notifyType: NotifyType.error,
|
|
);
|
|
});
|
|
},
|
|
dense: true,
|
|
title: const Text('复制链接', style: TextStyle(fontSize: 14)),
|
|
),
|
|
ListTile(
|
|
onTap: () {
|
|
DownloadUtils.downloadImg(_previewController.currentImgUrl);
|
|
},
|
|
dense: true,
|
|
title: const Text('保存到手机', style: TextStyle(fontSize: 14)),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
// animationController.dispose();
|
|
_doubleClickAnimationController.dispose();
|
|
clearGestureDetailsCache();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Colors.black,
|
|
appBar: AppBar(
|
|
primary: false,
|
|
toolbarHeight: 0,
|
|
backgroundColor: Colors.black,
|
|
systemOverlayStyle: SystemUiOverlayStyle.dark,
|
|
),
|
|
body: Stack(
|
|
children: [
|
|
DismissiblePage(
|
|
backgroundColor: Colors.transparent,
|
|
onDismissed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
// Note that scrollable widget inside DismissiblePage might limit the functionality
|
|
// If scroll direction matches DismissiblePage direction
|
|
direction: DismissiblePageDismissDirection.down,
|
|
disabled: _dismissDisabled,
|
|
isFullScreen: true,
|
|
child: Hero(
|
|
tag: _previewController
|
|
.imgList[_previewController.initialPage.value],
|
|
child: GestureDetector(
|
|
onLongPress: () => onOpenMenu(),
|
|
child: ExtendedImageGesturePageView.builder(
|
|
controller: ExtendedPageController(
|
|
initialPage: _previewController.initialPage.value,
|
|
pageSpacing: 0,
|
|
),
|
|
onPageChanged: (int index) =>
|
|
_previewController.onChange(index),
|
|
canScrollPage: (GestureDetails? gestureDetails) =>
|
|
gestureDetails!.totalScale! <= 1.0,
|
|
preloadPagesCount: 2,
|
|
itemCount: _previewController.imgList.length,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
return ExtendedImage.network(
|
|
_previewController.imgList[index],
|
|
fit: BoxFit.contain,
|
|
mode: ExtendedImageMode.gesture,
|
|
onDoubleTap: (ExtendedImageGestureState state) {
|
|
final Offset? pointerDownPosition =
|
|
state.pointerDownPosition;
|
|
final double? begin = state.gestureDetails!.totalScale;
|
|
double end;
|
|
|
|
//remove old
|
|
_doubleClickAnimation
|
|
?.removeListener(_doubleClickAnimationListener);
|
|
|
|
//stop pre
|
|
_doubleClickAnimationController.stop();
|
|
|
|
//reset to use
|
|
_doubleClickAnimationController.reset();
|
|
|
|
if (begin == doubleTapScales[0]) {
|
|
setState(() {
|
|
_dismissDisabled = true;
|
|
});
|
|
end = doubleTapScales[1];
|
|
} else {
|
|
setState(() {
|
|
_dismissDisabled = false;
|
|
});
|
|
end = doubleTapScales[0];
|
|
}
|
|
|
|
_doubleClickAnimationListener = () {
|
|
state.handleDoubleTap(
|
|
scale: _doubleClickAnimation!.value,
|
|
doubleTapPosition: pointerDownPosition);
|
|
};
|
|
_doubleClickAnimation = _doubleClickAnimationController
|
|
.drive(Tween<double>(begin: begin, end: end));
|
|
|
|
_doubleClickAnimation!
|
|
.addListener(_doubleClickAnimationListener);
|
|
|
|
_doubleClickAnimationController.forward();
|
|
},
|
|
// ignore: body_might_complete_normally_nullable
|
|
loadStateChanged: (ExtendedImageState state) {
|
|
if (state.extendedImageLoadState == LoadState.loading) {
|
|
final ImageChunkEvent? loadingProgress =
|
|
state.loadingProgress;
|
|
final double? progress =
|
|
loadingProgress?.expectedTotalBytes != null
|
|
? loadingProgress!.cumulativeBytesLoaded /
|
|
loadingProgress.expectedTotalBytes!
|
|
: null;
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
SizedBox(
|
|
width: 150.0,
|
|
child: LinearProgressIndicator(
|
|
value: progress,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
const SizedBox(height: 10.0),
|
|
Text('${((progress ?? 0.0) * 100).toInt()}%'),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
},
|
|
initGestureConfigHandler: (ExtendedImageState state) {
|
|
return GestureConfig(
|
|
inPageView: true,
|
|
initialScale: 1.0,
|
|
maxScale: 5.0,
|
|
animationMaxScale: 6.0,
|
|
initialAlignment: InitialAlignment.center,
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Positioned(
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
child: Container(
|
|
padding: EdgeInsets.only(
|
|
bottom: MediaQuery.of(context).padding.bottom, top: 20),
|
|
decoration: const BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topCenter,
|
|
end: Alignment.bottomCenter,
|
|
colors: <Color>[
|
|
Colors.transparent,
|
|
Colors.black87,
|
|
],
|
|
tileMode: TileMode.mirror,
|
|
),
|
|
),
|
|
child: Obx(
|
|
() => Text.rich(
|
|
textAlign: TextAlign.center,
|
|
TextSpan(
|
|
style: const TextStyle(color: Colors.white, fontSize: 15),
|
|
children: [
|
|
TextSpan(
|
|
text: _previewController.currentPage.toString()),
|
|
const TextSpan(text: ' / '),
|
|
TextSpan(
|
|
text: _previewController.imgList.length.toString()),
|
|
]),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|