jellyflood/Swiftfin/Views/ItemView/Components/ActionButton/ActionButton.swift
Joe Kribs 216375905c
[iOS & tvOS] Trailers (#1456)
* ItemViewModel Trailers

* iOS done.

* Sections >>> Divider

* tvOS kind of.

* Button/Menu cleanup

* Huge ActionButton overhaul

* Error Handling, ActionButton/Menu standardization, and ActionButtonLayout cleanup part 1.

* cleanup

* cleanup

* Combine ActionButton logic. Complete ActionButton rework and animation/style rework. Should this be 3 files??

* Dumb sizing error. Get size from WIDTH not HEIGHT! Height is always 100 and Width is larger.

* Pressed buttons are but focused buttons but slight less. Pressed buttons are still bigger than default, unfocused buttons. TIL.

* Cleanup / Structure

* Remove Test.

* New Setting. Version on PlayButton Row. Complete TrailerMenu revamp. Make ActionButtonLayout a single row.

* Spacing & remove test logic

* VERY WIP

* Fix the compact-ness

* Linting.

* Remove Testing logic.

* Pre-Cleanup - WIP

* Finalized. Moved ScrollingText to tvOS Only.

* MediaURL? = nil but it's already nil by default.

* Error on the View not the button. This was NOT showing for the button since it lived on the Menu. This resolves this.

* wip

* Update VersionMenu.swift

* Remove scrollingText from this PR.

* Remove labels & iOS Action Button cleanup / no foregroundStyle on de-selected.

* ActionButtonScaling

* .card all buttons in ActionButton

* Slow and less bounce-i-fy the menu animations. Also, slight padding

* Wait, don't add this padding this isn't needed.

* localize

---------

Co-authored-by: Ethan Pippin <ethanpippin2343@gmail.com>
2025-04-05 01:13:20 -04:00

87 lines
2.1 KiB
Swift

//
// Swiftfin is subject to the terms of the Mozilla Public
// License, v2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2025 Jellyfin & Jellyfin Contributors
//
import SwiftUI
extension ItemView {
struct ActionButton<Content: View>: View {
@Environment(\.isSelected)
private var isSelected
private let content: () -> Content
private let icon: String
private let onSelect: () -> Void
private let selectedIcon: String?
private let title: String
private var labelIconName: String {
isSelected ? selectedIcon ?? icon : icon
}
// MARK: - Body
var body: some View {
Group {
if Content.self == EmptyView.self {
Button(
title,
systemImage: labelIconName,
action: onSelect
)
.buttonStyle(.plain)
} else {
Menu(
title,
systemImage: labelIconName,
content: content
)
}
}
.symbolRenderingMode(.palette)
.labelStyle(.iconOnly)
.animation(.easeInOut(duration: 0.1), value: isSelected)
}
}
}
// MARK: - Initializers
extension ItemView.ActionButton {
// MARK: Button Initializer
init(
_ title: String,
icon: String,
selectedIcon: String? = nil,
onSelect: @escaping () -> Void
) where Content == EmptyView {
self.title = title
self.icon = icon
self.selectedIcon = selectedIcon
self.onSelect = onSelect
self.content = { EmptyView() }
}
// MARK: Menu Initializer
init(
_ title: String,
icon: String,
@ViewBuilder content: @escaping () -> Content
) {
self.title = title
self.icon = icon
self.selectedIcon = icon
self.onSelect = {}
self.content = content
}
}