@freshworks/crayons
Version:
Crayons Web Components library
116 lines (112 loc) • 4.39 kB
JavaScript
import { r as registerInstance, c as createEvent, h, e as Host } from './index-25bc21e4.js';
import { T as TranslationController, i as i18n } from './Translation-f65767b0.js';
const paginationCss = ":host{font-family:var(--fw-font-family, -apple-system, blinkmacsystemfont, \"Segoe UI\", roboto, oxygen, ubuntu, cantarell, \"Open Sans\", \"Helvetica Neue\", sans-serif);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-box-sizing:border-box;box-sizing:border-box}:host{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.current-record{color:#6f7c87;margin-left:10px;margin-right:14px;line-height:20px;font-size:14px}.current-record .record{font-weight:700}";
var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
let Pagination = class {
constructor(hostRef) {
registerInstance(this, hostRef);
this.fwChange = createEvent(this, "fwChange", 7);
/**
* The current page number.
*/
this.page = 1;
/**
*The number of records to be shown per page. Defaults to 10.
*/
this.perPage = 10;
/**
* Aria Label to be used for the button group.
*/
this.buttonGroupLabel = '';
/**
* Aria Label to be used for previous button.
*/
this.previousButtonLabel = '';
/**
* Aria Label to be used for next button.
*/
this.nextButtonLabel = '';
/**
* Indicates if the records in current page are being fetched.
*/
this.isLoading = false;
}
/**
* Navigates to previous set of records if available.
*/
async previousPage() {
this.goToPrevious();
}
/**
* Navigates to next set of records if available.
*/
async nextPage() {
this.goToNext();
}
getLastPage() {
return Math.ceil(this.total / this.perPage);
}
getStartRecord() {
return Math.max((this.page - 1) * this.perPage + 1, 1);
}
getEndRecord() {
return Math.min(this.start + this.perPage - 1, this.total);
}
handlePage(page) {
if (page > this.getLastPage())
return;
this.start = this.getStartRecord();
this.end = this.getEndRecord();
}
handleTotal() {
this.end = this.getEndRecord();
}
componentWillLoad() {
this.page = Math.min(this.page, this.getLastPage());
this.start = this.getStartRecord();
this.end = this.getEndRecord();
}
goToPrevious() {
this.page = Math.max(1, this.page - 1);
this.fwChange.emit({
page: this.page,
});
}
goToNext() {
this.page = Math.min(this.getLastPage(), this.page + 1);
this.fwChange.emit({
page: this.page,
});
}
render() {
return (h(Host, null, h("div", { class: 'current-record', innerHTML: TranslationController.t('pagination.content', {
start: this.start,
end: this.end,
total: this.total,
}) }), h("fw-button-group", { label: this.buttonGroupLabel }, h("fw-button", { disabled: this.start === 1 || this.isLoading, color: 'secondary', size: 'icon', "aria-label": this.previousButtonLabel, onFwClick: () => this.goToPrevious() }, h("fw-icon", { name: 'chevron-left' })), h("fw-button", { disabled: this.end === this.total || this.isLoading, color: 'secondary', size: 'icon', "aria-label": this.nextButtonLabel, onFwClick: () => this.goToNext() }, h("fw-icon", { name: 'chevron-right' })))));
}
static get watchers() { return {
"page": ["handlePage"],
"total": ["handleTotal"]
}; }
};
__decorate([
i18n({ keyName: 'pagination.buttonGroupLabel' })
], Pagination.prototype, "buttonGroupLabel", void 0);
__decorate([
i18n({ keyName: 'pagination.previousButtonLabel' })
], Pagination.prototype, "previousButtonLabel", void 0);
__decorate([
i18n({ keyName: 'pagination.nextButtonLabel' })
], Pagination.prototype, "nextButtonLabel", void 0);
Pagination.style = paginationCss;
export { Pagination as fw_pagination };