File size: 3,432 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | import page from '@automattic/calypso-router';
import { type Callback } from '@automattic/calypso-router';
import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker';
import PurchasesSidebar from 'calypso/a8c-for-agencies/components/sidebar-menu/purchases';
import {
publicToInternalLicenseFilter,
publicToInternalLicenseSortField,
valueToEnum,
} from 'calypso/jetpack-cloud/sections/partner-portal/lib';
import {
LicenseFilter,
LicenseSortDirection,
LicenseSortField,
} from 'calypso/jetpack-cloud/sections/partner-portal/types';
import BillingDashboard from './billing/billing-dashboard';
import CrmDownloads from './crm-downloads';
import InvoicesOverview from './invoices/invoices-overview';
import LicensesOverview from './licenses/licenses-overview';
import PaymentMethodAdd from './payment-methods/payment-method-add';
import PaymentMethodOverview from './payment-methods/payment-method-overview';
export const purchasesContext: Callback = () => {
page.redirect( '/purchases/licenses' );
};
export const licensesContext: Callback = ( context, next ) => {
const { s: search, sort_field, sort_direction, page } = context.query;
const filter = publicToInternalLicenseFilter( context.params.filter, LicenseFilter.NotRevoked );
const currentPage = parseInt( page ) || 1;
const sortField = publicToInternalLicenseSortField( sort_field, LicenseSortField.IssuedAt );
const sortDirection = valueToEnum< LicenseSortDirection >(
LicenseSortDirection,
sort_direction,
LicenseSortDirection.Descending
);
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker
title="Purchases > Licenses"
path={ context.path }
properties={ { filter } }
/>
<LicensesOverview
filter={ filter }
search={ search || '' }
currentPage={ currentPage }
sortDirection={ sortDirection }
sortField={ sortField }
/>
</>
);
next();
};
export const billingContext: Callback = ( context, next ) => {
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Purchases > Billing" path={ context.path } />
<BillingDashboard />
</>
);
next();
};
export const invoicesContext: Callback = ( context, next ) => {
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Purchases > Invoices" path={ context.path } />
<InvoicesOverview />
</>
);
next();
};
export const paymentMethodsContext: Callback = ( context, next ) => {
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Purchases > Payment methods" path={ context.path } />
<PaymentMethodOverview />
</>
);
next();
};
export const paymentMethodsAddContext: Callback = ( context, next ) => {
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Purchases > Payment methods > Add" path={ context.path } />
<PaymentMethodAdd />
</>
);
next();
};
export const crmDownloadsContext: Callback = ( context, next ) => {
context.secondary = <PurchasesSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Purchases > Site > CRM Downloads" path={ context.path } />
<CrmDownloads licenseKey={ context.params.licenseKey || '' } />
</>
);
next();
};
|