105 lines
3.2 KiB
Swift
105 lines
3.2 KiB
Swift
/*
|
|
* This file is part of the SDWebImage package.
|
|
* (c) DreamPiggy <lizhuoli1126@126.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
import SwiftUI
|
|
import SDWebImageSwiftUI
|
|
|
|
struct DetailView: View {
|
|
let url: String
|
|
let animated: Bool
|
|
@State var progress: CGFloat = 1
|
|
@State var isAnimating: Bool = true
|
|
|
|
var body: some View {
|
|
VStack {
|
|
HStack {
|
|
ProgressBar(value: $progress)
|
|
.foregroundColor(.blue)
|
|
.frame(maxHeight: 6)
|
|
}
|
|
Spacer()
|
|
#if os(iOS) || os(tvOS)
|
|
if animated {
|
|
contentView()
|
|
.navigationBarItems(trailing: Button(isAnimating ? "Stop" : "Start") {
|
|
self.isAnimating.toggle()
|
|
})
|
|
} else {
|
|
contentView()
|
|
}
|
|
#endif
|
|
#if os(macOS)
|
|
if animated {
|
|
contentView()
|
|
.contextMenu {
|
|
Button(isAnimating ? "Stop" : "Start") {
|
|
self.isAnimating.toggle()
|
|
}
|
|
}
|
|
} else {
|
|
contentView()
|
|
}
|
|
#endif
|
|
#if os(watchOS)
|
|
contentView()
|
|
#endif
|
|
Spacer()
|
|
}
|
|
}
|
|
|
|
func contentView() -> some View {
|
|
HStack {
|
|
#if os(iOS) || os(tvOS) || os(macOS)
|
|
if animated {
|
|
AnimatedImage(url: URL(string:url), options: [.progressiveLoad], isAnimating: $isAnimating)
|
|
.onProgress(perform: { (receivedSize, expectedSize) in
|
|
// SwiftUI engine itself ensure the main queue dispatch
|
|
if (expectedSize >= 0) {
|
|
self.progress = CGFloat(receivedSize) / CGFloat(expectedSize)
|
|
} else {
|
|
self.progress = 1
|
|
}
|
|
})
|
|
.resizable()
|
|
.scaledToFit()
|
|
} else {
|
|
WebImage(url: URL(string:url), options: [.progressiveLoad])
|
|
.onProgress(perform: { (receivedSize, expectedSize) in
|
|
if (expectedSize >= 0) {
|
|
self.progress = CGFloat(receivedSize) / CGFloat(expectedSize)
|
|
} else {
|
|
self.progress = 1
|
|
}
|
|
})
|
|
.resizable()
|
|
.scaledToFit()
|
|
}
|
|
#else
|
|
WebImage(url: URL(string:url), options: [.progressiveLoad])
|
|
.onProgress(perform: { (receivedSize, expectedSize) in
|
|
if (expectedSize >= 0) {
|
|
self.progress = CGFloat(receivedSize) / CGFloat(expectedSize)
|
|
} else {
|
|
self.progress = 1
|
|
}
|
|
})
|
|
.resizable()
|
|
.scaledToFit()
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
struct DetailView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
DetailView(url: "https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic", animated: false)
|
|
}
|
|
}
|
|
#endif
|