FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-purchase-downloads-list.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const addQueryArgs = require('./add-query-args-49dcb630.js'); const scPurchaseDownloadsListCss = ":host{display:block}.download__details{opacity:0.75}"; const ScPurchaseDownloadsListStyle0 = scPurchaseDownloadsListCss; const ScPurchaseDownloadsList = class { constructor(hostRef) { index.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 (index.h("div", null, index.h("sc-divider", { style: { '--spacing': '0' } }), index.h("slot", { name: "empty" }, index.h("sc-empty", { icon: "download" }, wp.i18n.__("You don't have any downloads.", 'surecart'))))); } renderLoading() { return (index.h("sc-card", { "no-padding": true, style: { '--overflow': 'hidden' } }, index.h("sc-stacked-list", null, index.h("sc-stacked-list-row", { style: { '--columns': '2' }, "mobile-size": 0 }, index.h("div", { style: { padding: '0.5em' } }, index.h("sc-skeleton", { style: { width: '30%', marginBottom: '0.75em' } }), index.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 (index.h("sc-stacked-list-row", { href: !(purchase === null || purchase === void 0 ? void 0 : purchase.revoked) ? addQueryArgs.addQueryArgs(window.location.href, { action: 'show', model: 'download', id: purchase.id, nonce: this.requestNonce, }) : null, key: purchase.id, "mobile-size": 0 }, index.h("sc-spacing", { style: { '--spacing': 'var(--sc-spacing-xx--small)', } }, index.h("div", null, index.h("strong", null, (_f = purchase === null || purchase === void 0 ? void 0 : purchase.product) === null || _f === void 0 ? void 0 : _f.name)), index.h("div", { class: "download__details" }, wp.i18n.sprintf(wp.i18n._n('%s file', '%s files', totalDownloads, 'surecart'), totalDownloads), !!mediaByteTotalSize && (index.h(index.Fragment, null, ' ', "\u2022 ", index.h("sc-format-bytes", { value: mediaByteTotalSize }))))), index.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 (index.h("sc-card", { "no-padding": true, style: { '--overflow': 'hidden' } }, index.h("sc-stacked-list", null, this.renderList()))); } render() { return (index.h("sc-dashboard-module", { key: '3f1e9d3ebba9301c99bea71e75416dbcd1bbac2c', class: "downloads-list", error: this.error }, index.h("span", { key: '13b0a3af4727b0d81731a75192b41166957893ad', slot: "heading" }, index.h("slot", { key: '306eca0ea017f191310fd77d629a67003e308c5a', name: "heading" }, this.heading || wp.i18n.__('Items', 'surecart'))), index.h("slot", { key: '70fae949356f2d9758ce657ee33f23b4d4bcf359', name: "before" }), !!this.allLink && (index.h("sc-button", { key: '216b118ce949d7124c2bd0e70b7b416eb8ef2b11', type: "link", href: this.allLink, slot: "end" }, wp.i18n.__('View all', 'surecart'), index.h("sc-icon", { key: 'ee5f60198ad15809de363df35e1106aa86f9fc34', name: "chevron-right", slot: "suffix" }))), this.renderContent(), index.h("slot", { key: 'd120cc72b69135a7626593183e14dcce19c3cfef', name: "after" }), this.busy && index.h("sc-block-ui", { key: '9786845e15d32181c3b0275e9ab60ed6273f15c0' }))); } get el() { return index.getElement(this); } }; ScPurchaseDownloadsList.style = ScPurchaseDownloadsListStyle0; exports.sc_purchase_downloads_list = ScPurchaseDownloadsList; //# sourceMappingURL=sc-purchase-downloads-list.cjs.entry.js.map
Save
Back