mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
219 lines
6.2 KiB
Dart
219 lines
6.2 KiB
Dart
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:nc_photos/account.dart';
|
|
import 'package:nc_photos/api/api.dart';
|
|
import 'package:nc_photos/api/api_util.dart' as api_util;
|
|
import 'package:nc_photos/entity/file.dart';
|
|
import 'package:nc_photos/k.dart' as k;
|
|
import 'package:nc_photos/widget/cached_network_image_mod.dart' as mod;
|
|
|
|
class ImageViewer extends StatefulWidget {
|
|
ImageViewer({
|
|
@required this.account,
|
|
@required this.file,
|
|
this.canZoom,
|
|
this.onLoaded,
|
|
this.onHeightChanged,
|
|
this.onZoomStarted,
|
|
this.onZoomEnded,
|
|
});
|
|
|
|
@override
|
|
createState() => _ImageViewerState();
|
|
|
|
static void preloadImage(Account account, File file) {
|
|
DefaultCacheManager().getFileStream(
|
|
_getImageUrl(account, file),
|
|
headers: {
|
|
"Authorization": Api.getAuthorizationHeaderValue(account),
|
|
},
|
|
);
|
|
}
|
|
|
|
final Account account;
|
|
final File file;
|
|
final bool canZoom;
|
|
final VoidCallback onLoaded;
|
|
final void Function(double height) onHeightChanged;
|
|
final VoidCallback onZoomStarted;
|
|
final VoidCallback onZoomEnded;
|
|
}
|
|
|
|
class _ImageViewerState extends State<ImageViewer>
|
|
with TickerProviderStateMixin {
|
|
@override
|
|
build(BuildContext context) {
|
|
final content = InteractiveViewer(
|
|
minScale: 1.0,
|
|
maxScale: 3.0,
|
|
transformationController: _transformationController,
|
|
panEnabled: widget.canZoom,
|
|
scaleEnabled: widget.canZoom,
|
|
// allow the image to be zoomed to fill the whole screen
|
|
child: Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
height: MediaQuery.of(context).size.height,
|
|
alignment: Alignment.center,
|
|
child: NotificationListener<SizeChangedLayoutNotification>(
|
|
onNotification: (_) {
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
if (_key.currentContext != null) {
|
|
widget.onHeightChanged?.call(_key.currentContext.size.height);
|
|
}
|
|
});
|
|
return false;
|
|
},
|
|
child: SizeChangedLayoutNotifier(
|
|
child: mod.CachedNetworkImage(
|
|
key: _key,
|
|
imageUrl: _getImageUrl(widget.account, widget.file),
|
|
httpHeaders: {
|
|
"Authorization":
|
|
Api.getAuthorizationHeaderValue(widget.account),
|
|
},
|
|
fit: BoxFit.contain,
|
|
fadeInDuration: const Duration(),
|
|
filterQuality: FilterQuality.high,
|
|
imageRenderMethodForWeb: ImageRenderMethodForWeb.HttpGet,
|
|
imageBuilder: (context, child, imageProvider) {
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
_onItemLoaded();
|
|
});
|
|
SizeChangedLayoutNotification().dispatch(context);
|
|
return child;
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
if (widget.canZoom) {
|
|
return Listener(
|
|
onPointerDown: (_) {
|
|
++_finger;
|
|
if (_finger >= 2) {
|
|
_setIsZooming(true);
|
|
}
|
|
},
|
|
onPointerUp: (event) {
|
|
--_finger;
|
|
if (_finger < 2) {
|
|
_setIsZooming(false);
|
|
}
|
|
_prevFingerPosition = event.position;
|
|
},
|
|
child: GestureDetector(
|
|
onDoubleTap: () {
|
|
if (_isZoomed) {
|
|
// restore transformation
|
|
_autoZoomOut();
|
|
} else {
|
|
_autoZoomIn();
|
|
}
|
|
},
|
|
child: content,
|
|
),
|
|
);
|
|
} else {
|
|
return content;
|
|
}
|
|
}
|
|
|
|
@override
|
|
dispose() {
|
|
super.dispose();
|
|
_transformationController.dispose();
|
|
}
|
|
|
|
void _onItemLoaded() {
|
|
if (!_isLoaded) {
|
|
_log.info("[_onItemLoaded]");
|
|
_isLoaded = true;
|
|
widget.onLoaded?.call();
|
|
}
|
|
}
|
|
|
|
void _setIsZooming(bool flag) {
|
|
_isZooming = flag;
|
|
final next = _isZoomed;
|
|
if (next != _wasZoomed) {
|
|
_wasZoomed = next;
|
|
_log.info("[_setIsZooming] Is zoomed: $next");
|
|
if (next) {
|
|
widget.onZoomStarted?.call();
|
|
} else {
|
|
widget.onZoomEnded?.call();
|
|
}
|
|
}
|
|
}
|
|
|
|
bool get _isZoomed =>
|
|
_isZooming || _transformationController.value.getMaxScaleOnAxis() != 1.0;
|
|
|
|
/// Called when double tapping the image to zoom in to the default level
|
|
void _autoZoomIn() {
|
|
final animController =
|
|
AnimationController(duration: k.animationDurationShort, vsync: this);
|
|
final originX = -_prevFingerPosition.dx / 2;
|
|
final originY = -_prevFingerPosition.dy / 2;
|
|
final anim = Matrix4Tween(
|
|
begin: Matrix4.identity(),
|
|
end: Matrix4.identity()
|
|
..scale(2.0)
|
|
..translate(originX, originY))
|
|
.animate(animController);
|
|
animController
|
|
..addListener(() {
|
|
_transformationController.value = anim.value;
|
|
})
|
|
..addStatusListener((status) {
|
|
if (status == AnimationStatus.completed) {
|
|
_setIsZooming(false);
|
|
}
|
|
})
|
|
..forward();
|
|
_setIsZooming(true);
|
|
}
|
|
|
|
/// Called when double tapping the zoomed image to zoom out
|
|
void _autoZoomOut() {
|
|
final animController =
|
|
AnimationController(duration: k.animationDurationShort, vsync: this);
|
|
final anim = Matrix4Tween(
|
|
begin: _transformationController.value, end: Matrix4.identity())
|
|
.animate(animController);
|
|
animController
|
|
..addListener(() {
|
|
_transformationController.value = anim.value;
|
|
})
|
|
..addStatusListener((status) {
|
|
if (status == AnimationStatus.completed) {
|
|
_setIsZooming(false);
|
|
}
|
|
})
|
|
..forward();
|
|
_setIsZooming(true);
|
|
}
|
|
|
|
final _key = GlobalKey();
|
|
final _transformationController = TransformationController();
|
|
|
|
var _isLoaded = false;
|
|
var _isZooming = false;
|
|
var _wasZoomed = false;
|
|
|
|
int _finger = 0;
|
|
var _prevFingerPosition = Offset(0, 0);
|
|
|
|
static final _log = Logger("widget.image_viewer._ImageViewerState");
|
|
}
|
|
|
|
String _getImageUrl(Account account, File file) => api_util.getFilePreviewUrl(
|
|
account,
|
|
file,
|
|
width: 1080,
|
|
height: 1080,
|
|
a: true,
|
|
);
|