FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
esm
Edit File: sc-dashboard-downloads-list.entry.js
import { r as registerInstance, h, a as getElement } from './index-745b6bec.js'; import { a as apiFetch } from './fetch-bc141774.js'; import { o as onFirstVisible } from './lazy-deb42890.js'; import { a as addQueryArgs } from './add-query-args-0e2a8393.js'; import './remove-query-args-938c53ea.js'; const scDashboardDownloadsListCss = ":host{display:block}.download__details{opacity:0.75}"; const ScDashboardDownloadsListStyle0 = scDashboardDownloadsListCss; const ScDownloadsList = class { constructor(hostRef) { registerInstance(this, hostRef); this.query = { page: 1, per_page: 10, }; this.allLink = undefined; this.heading = undefined; this.isCustomer = undefined; this.requestNonce = undefined; this.purchases = []; this.loading = undefined; this.busy = undefined; this.error = undefined; this.pagination = { total: 0, total_pages: 0, }; } componentWillLoad() { onFirstVisible(this.el, () => { this.initialFetch(); }); } async initialFetch() { if (!this.isCustomer) { return; } try { this.loading = true; await this.getItems(); } catch (e) { console.error(this.error); this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); } finally { this.loading = false; } } async fetchItems() { if (!this.isCustomer) { return; } try { this.busy = true; await this.getItems(); } catch (e) { console.error(this.error); this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); } finally { this.busy = false; } } /** Get all subscriptions */ async getItems() { const response = (await await apiFetch({ path: addQueryArgs(`surecart/v1/purchases/`, { expand: ['product', 'product.downloads', 'download.media'], downloadable: true, revoked: false, ...this.query, }), parse: false, })); this.pagination = { total: parseInt(response.headers.get('X-WP-Total')), total_pages: parseInt(response.headers.get('X-WP-TotalPages')), }; this.purchases = (await response.json()); return this.purchases; } nextPage() { this.query.page = this.query.page + 1; this.fetchItems(); } prevPage() { this.query.page = this.query.page - 1; this.fetchItems(); } render() { var _a; return (h("sc-purchase-downloads-list", { key: 'c0dd0e760d5cf286e50a4e31e9dce207556da2b0', heading: this.heading, allLink: this.allLink && this.pagination.total_pages > 1 ? this.allLink : '', loading: this.loading, busy: this.busy, requestNonce: this.requestNonce, error: this.error, purchases: this.purchases }, h("span", { key: '02b04ae7544a1ef891780953d8b07bb01acdd068', slot: "heading" }, h("slot", { key: '03745b18a6a5f656d4d3eb268969ac08b42fdd99', name: "heading" }, this.heading || wp.i18n.__('Downloads', 'surecart'))), h("sc-pagination", { key: '8ca0f52229ada26f1b3c495fb1a30cc0e9f1d54b', slot: "after", page: this.query.page, perPage: this.query.per_page, total: this.pagination.total, totalPages: this.pagination.total_pages, totalShowing: (_a = this === null || this === void 0 ? void 0 : this.purchases) === null || _a === void 0 ? void 0 : _a.length, onScNextPage: () => this.nextPage(), onScPrevPage: () => this.prevPage() }))); } get el() { return getElement(this); } }; ScDownloadsList.style = ScDashboardDownloadsListStyle0; export { ScDownloadsList as sc_dashboard_downloads_list }; //# sourceMappingURL=sc-dashboard-downloads-list.entry.js.map
Save
Back