-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathds_expanded_image.widget.dart
183 lines (172 loc) · 5.58 KB
/
ds_expanded_image.widget.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:get/get.dart';
import 'package:pinch_zoom/pinch_zoom.dart';
import '../../../blip_ds.dart';
import '../animations/ds_uploading.widget.dart';
class DSExpandedImage extends StatelessWidget {
final String appBarText;
final String url;
final BoxFit fit;
final double width;
final double height;
final bool isLoading;
final Uri? appBarPhotoUri;
final DSMessageBubbleStyle style;
final DSAlign align;
final bool shouldAuthenticate;
final bool isUploading;
final _error = RxBool(false);
final _isAppBarVisible = RxBool(false);
DSExpandedImage({
super.key,
required this.appBarText,
required this.url,
this.fit = BoxFit.cover,
this.width = double.infinity,
this.height = double.infinity,
this.isLoading = false,
this.appBarPhotoUri,
this.shouldAuthenticate = false,
DSMessageBubbleStyle? style,
DSAlign? align,
this.isUploading = false,
}) : style = style ?? DSMessageBubbleStyle(),
align = align ?? DSAlign.center;
@override
Widget build(BuildContext context) => Visibility(
visible: !isLoading,
replacement: _buildLoading(),
child: GestureDetector(
onTap: () {
if (!_error.value) {
_isAppBarVisible.value = true;
_expandImage();
}
},
child: url.startsWith('http')
? DSCachedNetworkImageView(
fit: fit,
width: width,
height: height,
url: url,
placeholder: (_, __) => _buildLoading(),
onError: () => _error.value = true,
align: align,
style: style,
shouldAuthenticate: shouldAuthenticate,
)
: Stack(
children: [
Image.file(
File(url),
width: width,
height: height,
fit: fit,
cacheWidth: 360,
errorBuilder: (_, __, ___) => _defaultErrorWidget(),
opacity:
isUploading ? const AlwaysStoppedAnimation(.3) : null,
),
Positioned(
bottom: 10.0,
right: 10.0,
child: Visibility(
visible: isUploading,
child: const DSUploading(),
),
),
],
),
),
);
Widget _defaultErrorWidget() {
_error.value = true;
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: Icon(
DSIcons.file_image_broken_outline,
color: style.isLightBubbleBackground(align)
? DSColors.neutralMediumElephant
: DSColors.neutralMediumCloud,
size: 75,
),
),
),
],
);
}
Future<T?> _expandImage<T>() => showGeneralDialog<T>(
context: Get.context!,
barrierDismissible: false,
transitionDuration: DSUtils.defaultAnimationDuration,
transitionBuilder: (_, animation, __, child) => FadeTransition(
opacity: animation,
child: ScaleTransition(
scale: animation,
child: child,
),
),
pageBuilder: (_, __, ___) => _buildPage(),
);
Widget _buildPage() => AnnotatedRegion<SystemUiOverlayStyle>(
value: DSSystemOverlayStyle.light,
child: Obx(
() => Scaffold(
backgroundColor: Colors.black,
appBar: DSHeader(
showBorder: false,
visible: _isAppBarVisible.value,
title: appBarText,
customerUri: appBarPhotoUri,
customerName: appBarText,
backgroundColor: Colors.black.withOpacity(0.7),
onBackButtonPressed: Get.back,
systemUiOverlayStyle: DSSystemOverlayStyle.light,
),
body: GestureDetector(
onTap: () => _isAppBarVisible.value = !_isAppBarVisible.value,
child: Container(
color: Colors.black,
child: Center(
child: PinchZoom(
child: url.startsWith('http')
? DSCachedNetworkImageView(
url: url,
fit: BoxFit.contain,
placeholder: (context, _) => _buildLoading(),
align: align,
style: style,
shouldAuthenticate: shouldAuthenticate,
)
: Image.file(
File(url),
fit: BoxFit.contain,
),
),
),
),
),
),
),
);
Widget _buildLoading() => Center(
child: Padding(
padding: const EdgeInsets.symmetric(
vertical: 8.0,
),
child: DSSpinnerLoading(
color: style.isLightBubbleBackground(align)
? DSColors.primaryNight
: DSColors.neutralLightSnow,
size: 32.0,
lineWidth: 4.0,
),
),
);
}