662e916194
The pricing plan selection step of the onboarding tour is skipped if there are no pricing packages configured for a user's partner. Change-Id: I14bacbfaa10acf4cb97db04724749111a73e3928
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import {
|
|
AccountBalance,
|
|
Coupon,
|
|
CreditCard,
|
|
PaymentsApi,
|
|
PaymentsHistoryItem,
|
|
ProjectUsageAndCharges,
|
|
ProjectUsagePriceModel,
|
|
TokenDeposit,
|
|
NativePaymentHistoryItem,
|
|
Wallet,
|
|
} from '@/types/payments';
|
|
|
|
/**
|
|
* Mock for PaymentsApi
|
|
*/
|
|
export class PaymentsMock implements PaymentsApi {
|
|
private mockCoupon: Coupon | null = null;
|
|
|
|
public setMockCoupon(coupon: Coupon | null): void {
|
|
this.mockCoupon = coupon;
|
|
}
|
|
|
|
setupAccount(): Promise<string> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
getBalance(): Promise<AccountBalance> {
|
|
return Promise.resolve(new AccountBalance());
|
|
}
|
|
|
|
projectsUsageAndCharges(): Promise<ProjectUsageAndCharges[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
projectUsagePriceModel(): Promise<ProjectUsagePriceModel> {
|
|
return Promise.resolve(new ProjectUsagePriceModel('1', '1', '1'));
|
|
}
|
|
|
|
addCreditCard(_token: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
removeCreditCard(_cardId: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
listCreditCards(): Promise<CreditCard[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
makeCreditCardDefault(_cardId: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
paymentsHistory(): Promise<PaymentsHistoryItem[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
nativePaymentsHistory(): Promise<NativePaymentHistoryItem[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
makeTokenDeposit(amount: number): Promise<TokenDeposit> {
|
|
return Promise.resolve(new TokenDeposit(amount, 'testAddress', 'testLink'));
|
|
}
|
|
|
|
applyCouponCode(_: string): Promise<Coupon> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
getCoupon(): Promise<Coupon | null> {
|
|
return Promise.resolve(this.mockCoupon);
|
|
}
|
|
|
|
getWallet(): Promise<Wallet> {
|
|
return Promise.resolve(new Wallet());
|
|
}
|
|
|
|
claimWallet(): Promise<Wallet> {
|
|
return Promise.resolve(new Wallet());
|
|
}
|
|
|
|
purchasePricingPackage(_: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
pricingPackageAvailable(): Promise<boolean> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
}
|