diff options
author | Eric Bailey <git@esb.lol> | 2023-11-08 12:34:10 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 10:34:10 -0800 |
commit | f18b15241ab708f8c25a11937a875e361e9f1221 (patch) | |
tree | 07829ce8617cb858b4519d6f16c89c7e43f84d9c /src/state/models/media/gallery.ts | |
parent | 5eadadffbf5475b233da7b1463e2345ff3e3cfce (diff) | |
download | voidsky-f18b15241ab708f8c25a11937a875e361e9f1221.tar.zst |
Add modal state provider, replace usage except methods (#1833)
* Add modal state provider, replace usage except methods * Replace easy spots * Fix sticky spots * Replace final usages * Memorize context objects * Add more warnings
Diffstat (limited to 'src/state/models/media/gallery.ts')
-rw-r--r-- | src/state/models/media/gallery.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/state/models/media/gallery.ts b/src/state/models/media/gallery.ts index 1b22fadbd..f9c3efcad 100644 --- a/src/state/models/media/gallery.ts +++ b/src/state/models/media/gallery.ts @@ -4,7 +4,6 @@ import {ImageModel} from './image' import {Image as RNImage} from 'react-native-image-crop-picker' import {openPicker} from 'lib/media/picker' import {getImageDim} from 'lib/media/manip' -import {isNative} from 'platform/detection' export class GalleryModel { images: ImageModel[] = [] @@ -42,18 +41,6 @@ export class GalleryModel { } } - async edit(image: ImageModel) { - if (isNative) { - this.crop(image) - } else { - this.rootStore.shell.openModal({ - name: 'edit-image', - image, - gallery: this, - }) - } - } - async paste(uri: string) { if (this.size >= 4) { return |