23 lines
567 B
Swift
23 lines
567 B
Swift
import Foundation
|
|
|
|
enum SharingAction: Stateable {
|
|
case showSharing(Bool)
|
|
|
|
case shareLocation(lat: Double, lon: Double)
|
|
case shareContact(jid: String)
|
|
case shareDocuments([Data])
|
|
case shareMedia(ids: [String])
|
|
|
|
case checkCameraAccess
|
|
case setCameraAccess(Bool)
|
|
|
|
case checkGalleryAccess
|
|
case setGalleryAccess(Bool)
|
|
case fetchGallery
|
|
case galleryFetched([SharingGalleryItem])
|
|
case thumbnailUpdated(data: Data, id: String)
|
|
|
|
case cameraCaptured(media: Data, type: SharingCameraMediaType)
|
|
case flushCameraCaptured
|
|
}
|