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

[Woo POS] Coupons: Show error when coupons are disabled in core #15468

Merged
Merged
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Observation
import enum Yosemite.POSItem
import enum Yosemite.PointOfSaleCouponServiceError
import protocol Yosemite.PointOfSaleItemServiceProtocol
import protocol Yosemite.PointOfSaleCouponServiceProtocol

Expand All @@ -20,7 +21,8 @@ import protocol Yosemite.PointOfSaleCouponServiceProtocol
@MainActor
func loadItems(base: ItemListBaseItem) async {
// TODO:
// Handle unhappy path
// Handle unhappy path:
// Depending on the error type (failed to load vs coupons disabled) we want to show a different CTA choice
await loadFirstPage()
}

Expand Down Expand Up @@ -49,7 +51,16 @@ private extension PointOfSaleCouponsController {
itemsStack: .init(root: .loaded(coupons, hasMoreItems: false),
itemStates: [:]))
} catch {
debugPrint(error)
if let couponError = error as? PointOfSaleCouponServiceError {
switch couponError {
case .couponsLoadingError:
itemsViewState = ItemsViewState(containerState: .error(.errorOnLoadingCoupons()),
itemsStack: .init(root: .loaded([], hasMoreItems: false), itemStates: [:]))
case .couponsDisabled:
itemsViewState = ItemsViewState(containerState: .error(.errorCouponsDisabled()),
itemsStack: .init(root: .loaded([], hasMoreItems: false), itemStates: [:]))
}
}
}
}
}
8 changes: 8 additions & 0 deletions WooCommerce/Classes/POS/Models/PointOfSaleErrorState.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ struct PointOfSaleErrorState: Equatable {
buttonText: Constants.failedToLoadVariationsNextPageButtonTitle)
}

static func errorOnLoadingCoupons() -> Self {
PointOfSaleErrorState(title: "Error loading coupons", subtitle: "Error loading coupons", buttonText: "Retry")
}

static func errorCouponsDisabled() -> Self {
PointOfSaleErrorState(title: "Error loading coupons", subtitle: "Please enable coupons in WooCommerce Settings, and tap Retry", buttonText: "Retry")
}

enum Constants {
static let failedToLoadProductsTitle = NSLocalizedString(
"pos.itemList.failedToLoadProductsTitle",
Expand Down
46 changes: 46 additions & 0 deletions Yosemite/Yosemite/PointOfSale/PointOfSaleCouponService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ import class WooFoundation.CurrencyFormatter
import class WooFoundation.CurrencySettings
import Storage

public enum PointOfSaleCouponServiceError: Error {
case couponsLoadingError
case couponsDisabled
}

public protocol PointOfSaleCouponServiceProtocol {
func providePointOfSaleCoupons(pageNumber: Int) async throws -> PagedItems<POSItem>
}
Expand Down Expand Up @@ -42,6 +47,11 @@ public final class PointOfSaleCouponService: PointOfSaleCouponServiceProtocol {

@MainActor
public func providePointOfSaleCoupons(pageNumber: Int) async throws -> PagedItems<POSItem> {
let couponsEnabled = await checkStoreCouponSettings()
if !couponsEnabled {
throw PointOfSaleCouponServiceError.couponsDisabled
}

let coupons = await providePointOfSaleCoupons()

if !coupons.isEmpty {
Expand Down Expand Up @@ -109,4 +119,40 @@ private extension PointOfSaleCouponService {
}
}
}

private func checkStoreCouponSettings() async -> Bool {
await withCheckedContinuation { continuation in
let action = SettingAction.retrieveCouponSetting(siteID: siteID) { result in
switch result {
case let .success(isEnabled):
debugPrint("Coupons enabled? \(isEnabled)")
continuation.resume(returning: isEnabled)
case let .failure(error):
debugPrint("Coupons settings error: \(error)")
continuation.resume(returning: false)
}
}
Task { @MainActor in
stores?.dispatch(action)
}
}
}

private func enableStoreCouponSettings() async -> Bool {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not used at the moment, happy to remove it or keep it if you prefer that we handle the enable action via CTA on this same PR 👍

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we're not handling enabling on this PR, then let's remove it. 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done! d2619de

await withCheckedContinuation { continuation in
let action = SettingAction.enableCouponSetting(siteID: siteID) { result in
switch result {
case .success:
debugPrint("Coupons enabled")
continuation.resume(returning: true)
case let .failure(error):
debugPrint("Error when attempting to enable Coupons: \(error)")
continuation.resume(returning: false)
}
}
Task { @MainActor in
stores?.dispatch(action)
}
}
}
}
Loading