FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
esm
Edit File: sc-purchase-downloads-list.entry.js
import { r as registerInstance, h, F as Fragment, a as getElement } from './index-745b6bec.js'; import { a as addQueryArgs } from './add-query-args-0e2a8393.js'; const scPurchaseDownloadsListCss = ":host{display:block}.download__details{opacity:0.75}"; const ScPurchaseDownloadsListStyle0 = scPurchaseDownloadsListCss; const ScPurchaseDownloadsList = class { constructor(hostRef) { registerInstance(this, hostRef); this.allLink = undefined; this.heading = undefined; this.busy = undefined; this.loading = undefined; this.requestNonce = undefined; this.error = undefined; this.purchases = []; } renderEmpty() { return (h("div", null, h("sc-divider", { style: { '--spacing': '0' } }), h("slot", { name: "empty" }, h("sc-empty", { icon: "download" }, wp.i18n.__("You don't have any downloads.", 'surecart'))))); } renderLoading() { return (h("sc-card", { "no-padding": true, style: { '--overflow': 'hidden' } }, h("sc-stacked-list", null, h("sc-stacked-list-row", { style: { '--columns': '2' }, "mobile-size": 0 }, h("div", { style: { padding: '0.5em' } }, h("sc-skeleton", { style: { width: '30%', marginBottom: '0.75em' } }), h("sc-skeleton", { style: { width: '20%' } })))))); } renderList() { return this.purchases.map(purchase => { var _a, _b, _c, _d, _e, _f; const downloads = (_b = (_a = purchase === null || purchase === void 0 ? void 0 : purchase.product) === null || _a === void 0 ? void 0 : _a.downloads) === null || _b === void 0 ? void 0 : _b.data.filter((d) => !d.archived); const totalDownloads = (_e = (_d = (_c = purchase === null || purchase === void 0 ? void 0 : purchase.product) === null || _c === void 0 ? void 0 : _c.downloads) === null || _d === void 0 ? void 0 : _d.pagination) === null || _e === void 0 ? void 0 : _e.count; const mediaBytesList = (downloads || []).map(item => { var _a; return ((item === null || item === void 0 ? void 0 : item.media) ? (_a = item === null || item === void 0 ? void 0 : item.media) === null || _a === void 0 ? void 0 : _a.byte_size : 0); }); const mediaByteTotalSize = mediaBytesList.reduce((prev, curr) => prev + curr, 0); return (h("sc-stacked-list-row", { href: !(purchase === null || purchase === void 0 ? void 0 : purchase.revoked) ? addQueryArgs(window.location.href, { action: 'show', model: 'download', id: purchase.id, nonce: this.requestNonce, }) : null, key: purchase.id, "mobile-size": 0 }, h("sc-spacing", { style: { '--spacing': 'var(--sc-spacing-xx--small)', } }, h("div", null, h("strong", null, (_f = purchase === null || purchase === void 0 ? void 0 : purchase.product) === null || _f === void 0 ? void 0 : _f.name)), h("div", { class: "download__details" }, wp.i18n.sprintf(wp.i18n._n('%s file', '%s files', totalDownloads, 'surecart'), totalDownloads), !!mediaByteTotalSize && (h(Fragment, null, ' ', "\u2022 ", h("sc-format-bytes", { value: mediaByteTotalSize }))))), h("sc-icon", { name: "chevron-right", slot: "suffix" }))); }); } renderContent() { var _a; if (this.loading) { return this.renderLoading(); } if (((_a = this.purchases) === null || _a === void 0 ? void 0 : _a.length) === 0) { return this.renderEmpty(); } return (h("sc-card", { "no-padding": true, style: { '--overflow': 'hidden' } }, h("sc-stacked-list", null, this.renderList()))); } render() { return (h("sc-dashboard-module", { key: '3f1e9d3ebba9301c99bea71e75416dbcd1bbac2c', class: "downloads-list", error: this.error }, h("span", { key: '13b0a3af4727b0d81731a75192b41166957893ad', slot: "heading" }, h("slot", { key: '306eca0ea017f191310fd77d629a67003e308c5a', name: "heading" }, this.heading || wp.i18n.__('Items', 'surecart'))), h("slot", { key: '70fae949356f2d9758ce657ee33f23b4d4bcf359', name: "before" }), !!this.allLink && (h("sc-button", { key: '216b118ce949d7124c2bd0e70b7b416eb8ef2b11', type: "link", href: this.allLink, slot: "end" }, wp.i18n.__('View all', 'surecart'), h("sc-icon", { key: 'ee5f60198ad15809de363df35e1106aa86f9fc34', name: "chevron-right", slot: "suffix" }))), this.renderContent(), h("slot", { key: 'd120cc72b69135a7626593183e14dcce19c3cfef', name: "after" }), this.busy && h("sc-block-ui", { key: '9786845e15d32181c3b0275e9ab60ed6273f15c0' }))); } get el() { return getElement(this); } }; ScPurchaseDownloadsList.style = ScPurchaseDownloadsListStyle0; export { ScPurchaseDownloadsList as sc_purchase_downloads_list }; //# sourceMappingURL=sc-purchase-downloads-list.entry.js.map
Save
Back