-
Notifications
You must be signed in to change notification settings - Fork 21
/
image-swipe.ios.ts
368 lines (287 loc) · 12.3 KB
/
image-swipe.ios.ts
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/*! *****************************************************************************
Copyright (c) 2019 Tangra Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
***************************************************************************** */
import * as utils from "utils/utils";
import { ImageSwipeBase, allowZoomProperty, itemsProperty, pageNumberProperty } from "./image-swipe-common";
export * from "./image-swipe-common";
export class ImageSwipe extends ImageSwipeBase {
public isScrollingIn = false;
private _views: Array<{ view: UIView; imageView: UIImageView; zoomDelegate: UIScrollViewZoomDelegateImpl }>;
private _delegate: UIScrollViewPagedDelegate;
constructor() {
super();
this._delegate = UIScrollViewPagedDelegate.initWithOwner(new WeakRef(this));
this._views = [];
}
public initNativeView() {
const scrollView: UIScrollView = this.nativeViewProtected as UIScrollView;
scrollView.pagingEnabled = true;
scrollView.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight;
}
public onLoaded() {
super.onLoaded();
(this.nativeViewProtected as UIScrollView).delegate = this._delegate;
}
public onUnloaded() {
(this.nativeViewProtected as UIScrollView).delegate = null;
this._purgeAllPages();
super.onUnloaded();
}
public onLayout(left: number, top: number, right: number, bottom: number) {
// console.log(`LAYOUT ${left} ${top} ${right} ${bottom}`);
super.onLayout(left, top, right, bottom);
if (this.items && this.items.length > 0) {
const scrollView: UIScrollView = this.nativeViewProtected;
this._calcScrollViewContentSize();
// console.log(`setContentOffsetAnimated ${this.pageNumber} * ${utils.layout.toDeviceIndependentPixels(this.getMeasuredWidth())}`);
scrollView.setContentOffsetAnimated(CGPointMake(this.pageNumber * utils.layout.toDeviceIndependentPixels(this.getMeasuredWidth()), 0), false);
for (let loop = Math.max(0, this.pageNumber - 1); loop <= Math.min(this.pageNumber + 1, this.items.length - 1); loop++) {
this._resizeNativeViews(loop);
if (this._views[loop]) {
this._positionImageView(this._views[loop].imageView);
}
}
}
}
public [allowZoomProperty.setNative](value: boolean) {
for (const viewHolder of this._views) {
if (viewHolder) {
this._positionImageView(viewHolder.imageView);
}
}
}
public refresh() {
this._purgeAllPages();
this._calcScrollViewContentSize();
// Coerce selected index after we have set items to native view.
pageNumberProperty.coerce(this);
if (this.pageNumber !== undefined && this.pageNumber !== null) {
this._loadCurrentPage(this.pageNumber);
}
}
public [itemsProperty.setNative](value: any) {
this.refresh();
}
public [pageNumberProperty.setNative](value: number) {
if (value === null) {
return;
}
this._loadCurrentPage(value);
this.notify({
eventName: ImageSwipeBase.pageChangedEvent,
object: this,
page: value
});
}
public _centerImageView(imageView: UIImageView) {
const boundSize = imageView.superview.bounds.size;
const contentsFrame = imageView.frame;
const newPosition: { x: number; y: number } = { x: 0, y: 0 };
if (contentsFrame.size.width < boundSize.width) {
newPosition.x = (boundSize.width - contentsFrame.size.width) / 2;
}
else {
newPosition.x = 0;
}
if (contentsFrame.size.height < boundSize.height) {
newPosition.y = (boundSize.height - contentsFrame.size.height) / 2;
}
else {
newPosition.y = 0;
}
contentsFrame.origin = CGPointMake(newPosition.x, newPosition.y);
imageView.frame = contentsFrame;
}
private _loadCurrentPage(page: number) {
const scrollView: UIScrollView = this.nativeViewProtected;
if (!scrollView) {
return;
}
const pageWidth = scrollView.frame.size.width;
if (!this.isScrollingIn) {
scrollView.contentOffset = CGPointMake(page * pageWidth, 0);
}
for (let loop = 0; loop < page - 1; loop++) {
this._purgePage(loop);
}
// Load current page and one ahead one behind for caching purposes
this._loadPage(page); // Always load the current page first
if (page - 1 >= 0) {
this._loadPage(page - 1);
}
if (page + 1 < this.items.length) {
this._loadPage(page + 1);
}
for (let loop = page + 2; loop < this.items.length; loop++) {
this._purgePage(loop);
}
}
private _resizeNativeViews(page: number) {
if (page < 0 || page >= this.items.length) { // Outside Bounds
return;
}
if (!this._views[page]) {
return;
}
const scrollView: UIScrollView = this.nativeViewProtected;
const frame = scrollView.bounds;
const view = this._views[page].view;
frame.origin = CGPointMake(frame.size.width * page, 0);
view.frame = frame;
// console.log(`_resizeNativeViews ${frame.size.width}, ${frame.size.height}`);
for (let loop = 0; loop < view.subviews.count; loop++) {
const subview = view.subviews.objectAtIndex(loop);
subview.frame = CGRectMake(0, 0, frame.size.width, frame.size.height);
}
}
private _loadPage(page: number) {
if (page < 0 || page >= this.items.length) { // Outside Bounds
return;
}
if (this._views[page]) { // View already Loaded
return;
}
const scrollView: UIScrollView = this.nativeViewProtected;
const imageUrl = this._getDataItem(page)[this.imageUrlProperty];
let imageView: UIImageView;
let activityIndicator: UIActivityIndicatorView;
let view: UIView;
let zoomScrollView: UIScrollView;
let image;
view = UIView.alloc().init();
view.autoresizingMask = UIViewAutoresizing.FlexibleWidth
| UIViewAutoresizing.FlexibleHeight
| UIViewAutoresizing.FlexibleLeftMargin
| UIViewAutoresizing.FlexibleRightMargin;
zoomScrollView = UIScrollView.alloc().init();
zoomScrollView.maximumZoomScale = 1;
zoomScrollView.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight;
imageView = UIImageView.alloc().init();
zoomScrollView.delegate = UIScrollViewZoomDelegateImpl.initWithOwnerAndZoomView(new WeakRef(this), new WeakRef(imageView));
activityIndicator = UIActivityIndicatorView.alloc().init();
activityIndicator.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight;
activityIndicator.hidesWhenStopped = true;
zoomScrollView.addSubview(imageView);
view.addSubview(activityIndicator);
view.addSubview(zoomScrollView);
scrollView.addSubview(view);
this._views[page] = {
view,
imageView,
zoomDelegate: zoomScrollView.delegate as UIScrollViewZoomDelegateImpl
};
this._resizeNativeViews(page);
activityIndicator.startAnimating();
image = ImageSwipeBase._imageCache.get(imageUrl);
if (image) {
this._prepareImageView(image, imageView);
activityIndicator.stopAnimating();
}
else {
ImageSwipeBase._imageCache.push({
key: imageUrl,
url: imageUrl,
completed: (imageSource) => {
this._prepareImageView(imageSource, imageView);
activityIndicator.stopAnimating();
}
});
}
}
private _prepareImageView(image: UIImage, imageView: UIImageView) {
imageView.image = image;
imageView.frame = CGRectMake(0, 0, image.size.width, image.size.height);
this._positionImageView(imageView);
}
private _positionImageView(imageView: UIImageView) {
if (!imageView || !imageView.image) {
return;
}
const zoomScrollView = imageView.superview as UIScrollView;
if (!zoomScrollView
|| zoomScrollView.frame.size.width === 0
|| zoomScrollView.frame.size.height === 0) { // This is to avoid incorrect resize before the control is layout
return;
}
const minimumScale = Math.min(zoomScrollView.frame.size.width / imageView.image.size.width, zoomScrollView.frame.size.height / imageView.image.size.height);
zoomScrollView.contentSize = imageView.frame.size;
zoomScrollView.minimumZoomScale = minimumScale;
zoomScrollView.zoomScale = minimumScale;
zoomScrollView.maximumZoomScale = this.allowZoom ? 1.0 : minimumScale;
this._centerImageView(imageView);
}
private _purgePage(page: number) {
if (page < 0 || page >= this.items.length) { // Outside Bounds
return;
}
const pageView = this._views[page];
if (pageView) {
pageView.view.removeFromSuperview();
}
this._views[page] = null;
}
private _purgeAllPages() {
if (!this._views) {
return;
}
for (let loop = 0; loop < this.items.length; loop++) {
this._purgePage(loop);
}
}
private _calcScrollViewContentSize() {
const scrollView: UIScrollView = this.nativeViewProtected;
if (!scrollView) {
return;
}
const width = utils.layout.toDeviceIndependentPixels(this.getMeasuredWidth());
const height = utils.layout.toDeviceIndependentPixels(this.getMeasuredHeight());
const safeAreaInsets = this.getSafeAreaInsets();
const insetAllowance = utils.layout.toDeviceIndependentPixels(safeAreaInsets.left + safeAreaInsets.right);
const calculatedWidth = width + insetAllowance;
scrollView.contentSize = CGSizeMake(this.items.length * calculatedWidth, height);
}
}
@ObjCClass(UIScrollViewDelegate)
class UIScrollViewPagedDelegate extends NSObject implements UIScrollViewDelegate {
public static initWithOwner(owner: WeakRef<ImageSwipe>): UIScrollViewPagedDelegate {
const delegate = UIScrollViewPagedDelegate.new() as UIScrollViewPagedDelegate;
delegate._owner = owner;
return delegate;
}
private _owner: WeakRef<ImageSwipe>;
public scrollViewDidScroll(scrollView: UIScrollView) {
this._owner.get().isScrollingIn = true;
}
public scrollViewDidEndDecelerating(scrollView: UIScrollView) {
const pageWidth = scrollView.frame.size.width;
const owner = this._owner.get();
owner.isScrollingIn = false;
owner.pageNumber = Math.floor(Math.abs(scrollView.contentOffset.x) / pageWidth);
}
}
@ObjCClass(UIScrollViewDelegate)
class UIScrollViewZoomDelegateImpl extends NSObject implements UIScrollViewDelegate {
public static initWithOwnerAndZoomView(owner: WeakRef<ImageSwipe>, zoomView: WeakRef<UIImageView>): UIScrollViewZoomDelegateImpl {
const delegate = UIScrollViewZoomDelegateImpl.new() as UIScrollViewZoomDelegateImpl;
delegate._zoomView = zoomView;
delegate._owner = owner;
return delegate;
}
private _zoomView: WeakRef<UIImageView>;
private _owner: WeakRef<ImageSwipe>;
public viewForZoomingInScrollView(scrollView: UIScrollView) {
return this._zoomView.get();
}
public scrollViewDidZoom(scrollView: UIScrollView) {
this._owner.get()._centerImageView(this._zoomView.get());
}
}