Skip to content
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

[Order form] Fix blurry image for scan product, and QR & TTP payment methods; update selected icon color in product selector #15465

Merged
merged 4 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
-----
- [*] Order Creation: Resolved an issue where the exit confirmation was not displayed when there were unsaved changes in a split view [https://github.com/woocommerce/woocommerce-ios/pull/15394].
- [*] Order Creation: Fixed an issue where order recalculation would stop working after canceling a confirmation with unsaved changes [https://github.com/woocommerce/woocommerce-ios/pull/15392].
- [*] Order Creation/Editing: Fixed blurry icons for product scanning, QR code & Tap To Pay payment methods. Polished checkmark icon color in selected product row. [https://github.com/woocommerce/woocommerce-ios/pull/15465]
- [internal] POS: Always create a new order during the checkout [https://github.com/woocommerce/woocommerce-ios/pull/15427].
- [internal] Improve data fetching in Order Details, to avoid I/O performance on the main thread. [https://github.com/woocommerce/woocommerce-ios/pull/14999]
- [internal] POS: Show location pre-alert and error during reader connection [https://github.com/woocommerce/woocommerce-ios/pull/15456].
Expand Down
4 changes: 0 additions & 4 deletions WooCommerce/Classes/Extensions/UIImage+Woo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,6 @@ extension UIImage {
UIImage(systemName: "wave.3.right.circle")?.withRenderingMode(.alwaysTemplate) ?? .creditCardImage
}

static var bankIcon: UIImage {
UIImage(systemName: "building.columns")?.withRenderingMode(.alwaysTemplate) ?? .emptyBoxImage
}

static var scanToPayIcon: UIImage {
UIImage(systemName: "qrcode.viewfinder")?.withRenderingMode(.alwaysTemplate) ?? .creditCardImage
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ private extension ProductsSection {
ProgressView()
} else {
HStack() {
Image(uiImage: .scanImage.withRenderingMode(.alwaysTemplate))
Image(systemName: "barcode.viewfinder")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(height: Layout.scanImageSize * scale)
Expand All @@ -838,7 +838,7 @@ private extension ProductsSection {
if showAddProductViaSKUScannerLoading {
ProgressView()
} else {
Image(uiImage: .scanImage.withRenderingMode(.alwaysTemplate))
Image(systemName: "barcode.viewfinder")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(height: Layout.scanImageSize * scale)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct GiftCardInputView: View {
Button {
showsScanner = true
} label: {
Image(uiImage: .scanImage.withRenderingMode(.alwaysTemplate))
Image(systemName: "barcode.viewfinder")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(maxHeight: Constants.scanImageSize * scale)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct PaymentMethodsView: View {
VStack(alignment: .leading, spacing: 8) {
VStack(alignment: .leading, spacing: Layout.noSpacing) {
if viewModel.showTapToPayRow {
MethodRow(icon: .tapToPayOnIPhoneIcon,
MethodRow(icon: Image(systemName: "wave.3.right.circle"),
title: Localization.tapToPay,
accessibilityID: Accessibility.tapToPayMethod) {
viewModel.collectPayment(using: .tapToPay, on: rootViewController, onSuccess: dismiss, onFailure: dismiss)
Expand Down Expand Up @@ -77,7 +77,11 @@ struct PaymentMethodsView: View {
if viewModel.showScanToPayRow {
Divider()

MethodRow(icon: .scanToPayIcon, title: Localization.scanToPay, accessibilityID: Accessibility.scanToPayMethod) {
MethodRow(
icon: Image(systemName: "qrcode.viewfinder"),
title: Localization.scanToPay,
accessibilityID: Accessibility.scanToPayMethod
) {
showingScanToPayView = true
viewModel.trackCollectByScanToPay()
}
Expand Down Expand Up @@ -150,7 +154,7 @@ struct PaymentMethodsView: View {
private struct MethodRow: View {
/// Icon of the row
///
private let icon: UIImage
private let icon: Image

/// Title of the row
///
Expand All @@ -173,6 +177,13 @@ private struct MethodRow: View {
@Environment(\.safeAreaInsets) var safeAreaInsets: EdgeInsets

init(icon: UIImage, title: String, accessibilityID: String = "", action: @escaping () -> ()) {
self.icon = Image(uiImage: icon)
self.title = title
self.accessibilityID = accessibilityID
self.action = action
}

init(icon: Image, title: String, accessibilityID: String = "", action: @escaping () -> ()) {
self.icon = icon
self.title = title
self.accessibilityID = accessibilityID
Expand All @@ -182,7 +193,7 @@ private struct MethodRow: View {
var body: some View {
Button(action: action) {
HStack {
Image(uiImage: icon)
icon
.resizable()
.flipsForRightToLeftLayoutDirection(true)
.frame(width: PaymentMethodsView.Layout.iconWidthHeight(scale: scale),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct ProductRow: View {
Image(uiImage: viewModel.selectedState.image)
.resizable()
.frame(width: Layout.checkImageSize * scale, height: Layout.checkImageSize * scale)
.foregroundColor(isEnabled ? Color(.brand) : .gray)
.foregroundColor(isEnabled ? Color(.accent) : .gray)
}
}

Expand Down
Loading