JezK
Edit File: sc-licenses-list.entry.js
import { r as registerInstance, h, a as getElement } from './index-25e5af33.js'; import { o as onFirstVisible } from './lazy-deb42890.js'; import './fetch-cdff67be.js'; import { a as addQueryArgs } from './add-query-args-0e2a8393.js'; import { a as apiFetch } from './index-824c562b.js'; import './remove-query-args-938c53ea.js'; const scLicensesListCss = ":host{display:block}.license__name{font-weight:var(--sc-font-weight-semibold)}.license__details{display:grid;gap:0.25em;color:var(--sc-input-label-color)}"; const ScLicensesListStyle0 = scLicensesListCss; const ScLicensesList = class { constructor(hostRef) { registerInstance(this, hostRef); this.query = { page: 1, per_page: 10, }; this.heading = wp.i18n.__('Licenses', 'surecart'); this.isCustomer = undefined; this.allLink = undefined; this.licenses = []; this.copied = false; this.loading = false; this.error = ''; this.pagination = { total: 0, total_pages: 0, }; } /** Only fetch if visible */ componentWillLoad() { onFirstVisible(this.el, () => { this.initialFetch(); }); } nextPage() { this.query.page = this.query.page + 1; this.initialFetch(); } prevPage() { this.query.page = this.query.page - 1; this.initialFetch(); } async initialFetch() { try { this.loading = true; await this.getLicenses(); } catch (e) { console.error(e); this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); } finally { this.loading = false; } } async getLicenses() { if (!this.isCustomer) { return; } const response = (await await apiFetch({ path: addQueryArgs('surecart/v1/licenses', { expand: ['purchase', 'purchase.product', 'activations'], ...this.query, }), parse: false, })); this.pagination = { total: parseInt(response.headers.get('X-WP-Total')), total_pages: parseInt(response.headers.get('X-WP-TotalPages')), }; this.licenses = (await response.json()); return this.licenses; } renderStatus(status) { if (status === 'active') { return h("sc-tag", { type: "success" }, wp.i18n.__('Active', 'surecart')); } if (status === 'revoked') { return h("sc-tag", { type: "danger" }, wp.i18n.__('Revoked', 'surecart')); } if (status === 'inactive') { return h("sc-tag", { type: "info" }, wp.i18n.__('Not Activated', 'surecart')); } return h("sc-tag", { type: "info" }, status); } async copyKey(key) { try { await navigator.clipboard.writeText(key); this.copied = true; setTimeout(() => { this.copied = false; }, 2000); } catch (err) { console.error(err); alert(wp.i18n.__('Error copying to clipboard', '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%', marginBottom: '0.75em' } }), h("sc-skeleton", { style: { width: '40%' } })))))); } renderEmpty() { return (h("div", null, h("sc-divider", { style: { '--spacing': '0' } }), h("slot", { name: "empty" }, h("sc-empty", { icon: "file-text" }, wp.i18n.__("You don't have any licenses.", 'surecart'))))); } renderContent() { var _a, _b; if (this.loading) { return this.renderLoading(); } if (((_a = this.licenses) === null || _a === void 0 ? void 0 : _a.length) === 0) { return this.renderEmpty(); } return (h("sc-card", { "no-padding": true }, h("sc-stacked-list", null, (_b = this.licenses) === null || _b === void 0 ? void 0 : _b.map(({ id, purchase, status, activation_limit, activation_count }) => { var _a; return (h("sc-stacked-list-row", { key: id, href: addQueryArgs(window.location.href, { action: 'show', model: 'license', id, }), "mobile-size": 0 }, h("div", { class: "license__details" }, h("div", { class: "license__name" }, (_a = purchase === null || purchase === void 0 ? void 0 : purchase.product) === null || _a === void 0 ? void 0 : _a.name), h("div", null, this.renderStatus(status), " ", wp.i18n.sprintf(wp.i18n.__('%1s of %2s Activations Used', 'surecart'), activation_count || 0, activation_limit || '∞'))), h("sc-icon", { name: "chevron-right", slot: "suffix" }))); })))); } render() { var _a, _b; return (h("sc-dashboard-module", { key: 'e8f903bae5d6b5d5346c5dca64ce1a3e649e1400', class: "purchase", part: "base", error: this.error }, h("span", { key: '80177e4a370a35c1f6bde11d1904af1d232d7f25', slot: "heading" }, h("slot", { key: '4d93f7b4a590f3a1d02d41d4af3c2a7a480c0f73', name: "heading" }, this.heading || wp.i18n.__('License Keys', 'surecart'))), !!this.allLink && !!((_a = this.licenses) === null || _a === void 0 ? void 0 : _a.length) && (h("sc-button", { key: '983d0d8227acc1e6e6be787a4c3e5d823f00a14e', type: "link", href: this.allLink, slot: "end" }, wp.i18n.__('View all', 'surecart'), h("sc-icon", { key: '54fb42588966d90e08929373557dc796b833690d', name: "chevron-right", slot: "suffix" }))), this.renderContent(), !this.allLink && (h("sc-pagination", { key: '51f59025552bfdffa3c1cf9794b937fbe6314a53', page: this.query.page, perPage: this.query.per_page, total: this.pagination.total, totalPages: this.pagination.total_pages, totalShowing: (_b = this === null || this === void 0 ? void 0 : this.licenses) === null || _b === void 0 ? void 0 : _b.length, onScNextPage: () => this.nextPage(), onScPrevPage: () => this.prevPage() })))); } get el() { return getElement(this); } }; ScLicensesList.style = ScLicensesListStyle0; export { ScLicensesList as sc_licenses_list }; //# sourceMappingURL=sc-licenses-list.entry.js.map