-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add image gallery to articles #41
Conversation
# Conflicts: # ForPDA.xcodeproj/project.pbxproj
# Conflicts: # ForPDA.xcodeproj/project.pbxproj
@@ -1,6 +1,19 @@ | |||
{ | |||
"sourceLanguage" : "en", | |||
"strings" : { | |||
"" : { | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Пустая локализация, скорее всего надо просто завернуть вызов в String
"" : { | ||
|
||
}, | ||
"%lld / %lld" : { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Либо переводим либо заворачиваем в стрингу
@@ -20,6 +20,9 @@ struct ArticleElementView: View { | |||
@State private var gallerySelection: Int = 0 | |||
@State private var pollSelection: ArticlePoll.Option? | |||
@State private var pollSelections: Set<ArticlePoll.Option> = .init() | |||
@State private var showFullScreenImage: Bool = false | |||
@State private var showFullScreenGallery: Bool = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Что произойдет если мы их оба поставим на true? Мне кажется это нужно завернуть в Destination, посмотри примеры с шитами
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Оставил только showFullScreenImage
// | ||
|
||
import SwiftUI | ||
import UIKit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
По идее import UIKit можно убрать
|
||
func updateUIView(_ uiView: UICollectionView, context: Context) { | ||
let indexPath = IndexPath(item: selectedIndex, section: 0) | ||
DispatchQueue.main.async { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Отдаем предпочтение Task { @MainActor in
Перепроверяем что с ним все работает также
tempFileUrls[element.offset] = tempFileUrl | ||
} | ||
} catch { | ||
print("Image not loaded: \(error)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Писал выше про ошибки
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
нужно отобразить ошибку. (Tost manager)
print("Image not loaded: \(error)") | ||
} | ||
case .failure(let error): | ||
print("Image not loaded: \(error)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Писал выше про ошибки
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
нужно отобразить ошибку. (Tost manager)
try FileManager.default.removeItem(at: fileURL) | ||
} | ||
} catch { | ||
print("Error deleting temp files: \(error)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Писал выше про ошибки
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
нужно отобразить ошибку. (Tost manager)
.scaleEffect(0.8) // TODO: ? | ||
.background( | ||
Circle() | ||
.fill(.ultraThinMaterial.opacity(backgroundOpacity)) // Материал |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Материал
func makeUIViewController(context: Context) -> UIActivityViewController { | ||
let activityVC = UIActivityViewController(activityItems: activityItems, applicationActivities: nil) | ||
|
||
print(activityItems) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если принт больше не нужен, то убери
No description provided.