mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-25 17:51:01 +00:00
Revert "Fix StatusRowContentView invade SwipeActions area (#2007)"
This reverts commit 3782300b27
.
This commit is contained in:
parent
e71c55b488
commit
899b92e390
2 changed files with 24 additions and 26 deletions
|
@ -83,33 +83,33 @@ public struct StatusRowView: View {
|
||||||
viewModel.navigateToAccountDetail(account: viewModel.finalStatus.account)
|
viewModel.navigateToAccountDetail(account: viewModel.finalStatus.account)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !isCompact {
|
VStack(alignment: .leading, spacing: .statusComponentSpacing) {
|
||||||
StatusRowHeaderView(viewModel: viewModel)
|
if !isCompact {
|
||||||
}
|
StatusRowHeaderView(viewModel: viewModel)
|
||||||
}
|
|
||||||
VStack(alignment: .leading, spacing: .statusComponentSpacing) {
|
|
||||||
StatusRowContentView(viewModel: viewModel)
|
|
||||||
.contentShape(Rectangle())
|
|
||||||
.onTapGesture {
|
|
||||||
guard !isFocused else { return }
|
|
||||||
viewModel.navigateToDetail()
|
|
||||||
}
|
}
|
||||||
.accessibilityActions {
|
StatusRowContentView(viewModel: viewModel)
|
||||||
if isFocused, viewModel.showActions {
|
.contentShape(Rectangle())
|
||||||
accessibilityActions
|
.onTapGesture {
|
||||||
|
guard !isFocused else { return }
|
||||||
|
viewModel.navigateToDetail()
|
||||||
}
|
}
|
||||||
|
.accessibilityActions {
|
||||||
|
if isFocused, viewModel.showActions {
|
||||||
|
accessibilityActions
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !reasons.contains(.placeholder),
|
||||||
|
viewModel.showActions, isFocused || theme.statusActionsDisplay != .none,
|
||||||
|
!isInCaptureMode
|
||||||
|
{
|
||||||
|
StatusRowActionsView(isBlockConfirmationPresented: $isBlockConfirmationPresented,
|
||||||
|
viewModel: viewModel)
|
||||||
|
.tint(isFocused ? theme.tintColor : .gray)
|
||||||
}
|
}
|
||||||
if !reasons.contains(.placeholder),
|
|
||||||
viewModel.showActions, isFocused || theme.statusActionsDisplay != .none,
|
|
||||||
!isInCaptureMode
|
|
||||||
{
|
|
||||||
StatusRowActionsView(isBlockConfirmationPresented: $isBlockConfirmationPresented,
|
|
||||||
viewModel: viewModel)
|
|
||||||
.tint(isFocused ? theme.tintColor : .gray)
|
|
||||||
}
|
|
||||||
|
|
||||||
if isFocused, !isCompact {
|
if isFocused, !isCompact {
|
||||||
StatusRowDetailView(viewModel: viewModel)
|
StatusRowDetailView(viewModel: viewModel)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,6 @@ public struct StatusRowMediaPreviewView: View {
|
||||||
: CGSize(width: imageMaxHeight, height: imageMaxHeight),
|
: CGSize(width: imageMaxHeight, height: imageMaxHeight),
|
||||||
sensitive: sensitive
|
sensitive: sensitive
|
||||||
)
|
)
|
||||||
.padding(.horizontal, .layoutPadding)
|
|
||||||
.accessibilityElement(children: .ignore)
|
.accessibilityElement(children: .ignore)
|
||||||
.accessibilityLabel(Self.accessibilityLabel(for: attachments[0]))
|
.accessibilityLabel(Self.accessibilityLabel(for: attachments[0]))
|
||||||
.accessibilityAddTraits([.isButton, .isImage])
|
.accessibilityAddTraits([.isButton, .isImage])
|
||||||
|
@ -67,11 +66,10 @@ public struct StatusRowMediaPreviewView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding(.bottom, scrollBottomPadding)
|
.padding(.bottom, scrollBottomPadding)
|
||||||
.padding(.horizontal, .layoutPadding)
|
|
||||||
}
|
}
|
||||||
|
.scrollClipDisabled()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding(.horizontal, -1 * .layoutPadding)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ViewBuilder
|
@ViewBuilder
|
||||||
|
|
Loading…
Reference in a new issue