671b0b67ce
This commit includes several UX changes to give users better control over video playback. It also, by design, work arounds a SwiftUI quirk* Here are the changes to the UX: 1. Videos on the feed only have a mute/unmute button 2. When the user clicks on the video, they are taken to a full screen carousel view (similar to when you click on an image) 3. The full-screen carousel view shows all video playback controls (through a specific SwiftUI hack) 4. If the carousel has multiple videos/images, the user can swipe between them normally as expected Other UI changes that were made: - The full screen carousel now uses dark mode (black background, white close button) * The SwiftUI quirk is that when video views are placed within a TabView with ".page" tab view style, the tabview consumes most of the user gestures, making the video playback controls unusable. Changelog-Changed: Improve UX around video playback Signed-off-by: Daniel D’Aquino <daniel@daquino.me> Link: 20240318222048.14226-3-daniel@daquino.me Signed-off-by: William Casarin <jb55@jb55.com>
111 lines
3.1 KiB
Swift
111 lines
3.1 KiB
Swift
//
|
|
// ProfileZoomView.swift
|
|
// damus
|
|
//
|
|
// Created by scoder1747 on 12/27/22.
|
|
//
|
|
import SwiftUI
|
|
import Kingfisher
|
|
|
|
struct ProfileImageContainerView: View {
|
|
let url: URL?
|
|
let settings: UserSettingsStore
|
|
|
|
@State private var image: UIImage?
|
|
@State private var showShareSheet = false
|
|
|
|
private struct ImageHandler: ImageModifier {
|
|
@Binding var handler: UIImage?
|
|
|
|
func modify(_ image: UIImage) -> UIImage {
|
|
handler = image
|
|
return image
|
|
}
|
|
}
|
|
|
|
var body: some View {
|
|
|
|
KFAnimatedImage(url)
|
|
.imageContext(.pfp, disable_animation: settings.disable_animation)
|
|
.configure { view in
|
|
view.framePreloadCount = 3
|
|
}
|
|
.imageModifier(ImageHandler(handler: $image))
|
|
.clipShape(Circle())
|
|
.modifier(ImageContextMenuModifier(url: url, image: image, settings: settings, showShareSheet: $showShareSheet))
|
|
.sheet(isPresented: $showShareSheet) {
|
|
ShareSheet(activityItems: [url])
|
|
}
|
|
}
|
|
}
|
|
|
|
struct NavDismissBarView: View {
|
|
|
|
@Environment(\.presentationMode) var presentationMode
|
|
let showBackgroundCircle: Bool
|
|
|
|
init(showBackgroundCircle: Bool = true) {
|
|
self.showBackgroundCircle = showBackgroundCircle
|
|
}
|
|
|
|
var body: some View {
|
|
HStack {
|
|
Button(action: {
|
|
presentationMode.wrappedValue.dismiss()
|
|
}, label: {
|
|
if showBackgroundCircle {
|
|
Image("close")
|
|
.frame(width: 33, height: 33)
|
|
.background(.regularMaterial)
|
|
.clipShape(Circle())
|
|
}
|
|
else {
|
|
Image("close")
|
|
.frame(width: 33, height: 33)
|
|
}
|
|
})
|
|
|
|
Spacer()
|
|
}
|
|
.padding()
|
|
}
|
|
}
|
|
|
|
struct ProfilePicImageView: View {
|
|
let pubkey: Pubkey
|
|
let profiles: Profiles
|
|
let settings: UserSettingsStore
|
|
|
|
@Environment(\.presentationMode) var presentationMode
|
|
|
|
var body: some View {
|
|
ZStack {
|
|
Color(.systemBackground)
|
|
.ignoresSafeArea()
|
|
|
|
ZoomableScrollView {
|
|
ProfileImageContainerView(url: get_profile_url(picture: nil, pubkey: pubkey, profiles: profiles), settings: settings)
|
|
.aspectRatio(contentMode: .fit)
|
|
.padding(.top, Theme.safeAreaInsets?.top)
|
|
.padding(.bottom, Theme.safeAreaInsets?.bottom)
|
|
.padding(.horizontal)
|
|
}
|
|
.ignoresSafeArea()
|
|
.modifier(SwipeToDismissModifier(minDistance: 50, onDismiss: {
|
|
presentationMode.wrappedValue.dismiss()
|
|
}))
|
|
}
|
|
.overlay(NavDismissBarView(), alignment: .top)
|
|
}
|
|
}
|
|
|
|
struct ProfileZoomView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ProfilePicImageView(
|
|
pubkey: test_pubkey,
|
|
profiles: make_preview_profiles(test_pubkey),
|
|
settings: test_damus_state.settings
|
|
)
|
|
}
|
|
}
|