1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Views/ShareButton.swift

118 lines
3.7 KiB
Swift
Raw Normal View History

2021-10-27 04:29:59 +05:30
import SwiftUI
struct ShareButton: View {
let contentItem: ContentItem
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<NavigationModel> private var navigation
2021-11-03 01:10:49 +05:30
@EnvironmentObject<PlayerModel> private var player
init(contentItem: ContentItem) {
2021-11-03 01:10:49 +05:30
self.contentItem = contentItem
}
2021-10-27 04:29:59 +05:30
var body: some View {
2021-11-03 01:10:49 +05:30
Menu {
instanceActions
2021-11-03 04:32:02 +05:30
Divider()
if !accounts.isDemo {
youtubeActions
}
2021-11-03 01:10:49 +05:30
} label: {
Label("Share...", systemImage: "square.and.arrow.up")
2021-11-03 01:10:49 +05:30
}
.menuStyle(.borderlessButton)
#if os(macOS)
.frame(maxWidth: 35)
#endif
}
private var instanceActions: some View {
2021-10-28 22:44:55 +05:30
Group {
2022-08-24 02:44:13 +05:30
Button(labelForShareURL(accounts.app.name)) {
if let url = player.playerAPI.shareURL(contentItem) {
2021-11-03 01:10:49 +05:30
shareAction(url)
2022-08-24 02:44:13 +05:30
} else {
navigation.presentAlert(
title: "Could not create share link",
message: "For custom locations you can configure Frontend URL in Locations settings"
)
2021-11-03 01:10:49 +05:30
}
2022-08-24 02:44:13 +05:30
}
2021-11-03 01:10:49 +05:30
2022-08-24 02:44:13 +05:30
if contentItemIsPlayerCurrentVideo {
Button(labelForShareURL(accounts.app.name, withTime: true)) {
shareAction(
player.playerAPI.shareURL(
contentItem,
time: player.backend.currentTime
)!
)
2021-11-03 01:10:49 +05:30
}
}
}
}
private var youtubeActions: some View {
Group {
if let url = accounts.api.shareURL(contentItem, frontendHost: "www.youtube.com") {
Button(labelForShareURL("YouTube")) {
shareAction(url)
}
if contentItemIsPlayerCurrentVideo {
2021-11-03 01:10:49 +05:30
Button(labelForShareURL("YouTube", withTime: true)) {
shareAction(
accounts.api.shareURL(
contentItem,
frontendHost: "www.youtube.com",
2022-02-17 01:53:11 +05:30
time: player.backend.currentTime
2021-11-03 01:10:49 +05:30
)!
)
}
2021-10-28 22:44:55 +05:30
}
}
2021-10-27 04:29:59 +05:30
}
}
private var contentItemIsPlayerCurrentVideo: Bool {
2022-06-30 04:19:35 +05:30
contentItem.contentType == .video && contentItem.video?.videoID == player.currentVideo?.videoID
}
2021-11-03 01:10:49 +05:30
private func shareAction(_ url: URL) {
#if os(macOS)
NSPasteboard.general.clearContents()
NSPasteboard.general.setString(url.absoluteString, forType: .string)
#else
2022-06-16 23:13:56 +05:30
player.pause()
navigation.shareURL = url
navigation.presentingShareSheet = true
2021-11-03 01:10:49 +05:30
#endif
}
private func labelForShareURL(_ app: String, withTime: Bool = false) -> String {
2022-09-04 20:58:30 +05:30
if withTime {
#if os(macOS)
return String(format: "Copy %@ link with time".localized(), app)
#else
return String(format: "Share %@ link with time".localized(), app)
#endif
} else {
#if os(macOS)
return String(format: "Copy %@ link".localized(), app)
#else
return String(format: "Share %@ link".localized(), app)
#endif
}
2021-10-27 04:29:59 +05:30
}
}
struct ShareButton_Previews: PreviewProvider {
static var previews: some View {
2021-11-03 01:10:49 +05:30
ShareButton(
contentItem: ContentItem(video: Video.fixture)
2021-11-03 01:10:49 +05:30
)
.injectFixtureEnvironmentObjects()
2021-10-27 04:29:59 +05:30
}
}