| import { useTranslate } from 'i18n-calypso'; | |
| import DocumentHead from 'calypso/components/data/document-head'; | |
| import QueryUserPurchases from 'calypso/components/data/query-user-purchases'; | |
| import InlineSupportLink from 'calypso/components/inline-support-link'; | |
| import Main from 'calypso/components/main'; | |
| import NavigationHeader from 'calypso/components/navigation-header'; | |
| import PageViewTracker from 'calypso/lib/analytics/page-view-tracker'; | |
| import PaymentMethodList from 'calypso/me/purchases/payment-methods/payment-method-list'; | |
| import PurchasesNavigation from 'calypso/me/purchases/purchases-navigation'; | |
| import titles from 'calypso/me/purchases/titles'; | |
| import { getAddNewPaymentMethodPath } from 'calypso/me/purchases/utils'; | |
| import './style.scss'; | |
| function PaymentMethods() { | |
| const translate = useTranslate(); | |
| return ( | |
| <Main wideLayout className="payment-methods__main"> | |
| <DocumentHead title={ titles.paymentMethods } /> | |
| <PageViewTracker path="/me/purchases/payment-methods" title="Me > Payment Methods" /> | |
| <QueryUserPurchases /> | |
| <NavigationHeader | |
| navigationItems={ [] } | |
| title={ titles.sectionTitle } | |
| subtitle={ translate( | |
| 'Add or remove payment methods for your account. {{learnMoreLink}}Learn more{{/learnMoreLink}}.', | |
| { | |
| components: { | |
| learnMoreLink: ( | |
| <InlineSupportLink supportContext="payment_methods" showIcon={ false } /> | |
| ), | |
| }, | |
| } | |
| ) } | |
| /> | |
| <PurchasesNavigation section="paymentMethods" /> | |
| <PaymentMethodList addPaymentMethodUrl={ getAddNewPaymentMethodPath() } /> | |
| </Main> | |
| ); | |
| } | |
| export default PaymentMethods; | |