2022-12-17 09:29:45 -08:00
|
|
|
import { IgniteHtml, IgniteProperty } from '../ignite-html/ignite-html.js';
|
2022-12-14 11:44:07 -08:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteTemplate, slot, list, div, text, button } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
class ReadMore extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
limit: 125,
|
2022-12-17 09:29:45 -08:00
|
|
|
value: new IgniteProperty(null, {
|
|
|
|
onChange: (oldValue, newValue) => {
|
|
|
|
this.collapsed = true;
|
|
|
|
}
|
|
|
|
}),
|
2022-12-14 11:44:07 -08:00
|
|
|
collapsed: true,
|
|
|
|
collapsedValue: null,
|
2023-12-24 09:51:54 -08:00
|
|
|
collapseButtonClass: "btn btn-none p-0 d-block text-primary"
|
2022-12-14 11:44:07 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template.child(
|
2023-12-24 15:21:18 -08:00
|
|
|
new text([this.collapsed, this.value, this.limit], (collapsed, value, limit) => collapsed && value && value.length > limit ? value.substring(0, limit).trimEnd() + "..." : (value ? value : "")),
|
2022-12-14 11:44:07 -08:00
|
|
|
|
|
|
|
new button()
|
|
|
|
.show([this.value, this.limit], (value, limit) => value && value.length > limit)
|
|
|
|
.class(this.collapseButtonClass)
|
2023-12-24 09:51:54 -08:00
|
|
|
.innerText(this.collapsed, collapsed => collapsed ? "Read more" : "Read less")
|
2022-12-14 11:44:07 -08:00
|
|
|
.onClick(() => this.collapsed = !this.collapsed)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ReadMoreTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-read-more", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IgniteHtml.register("mt-read-more", ReadMore);
|
|
|
|
|
|
|
|
export {
|
|
|
|
ReadMoreTemplate as ReadMore
|
|
|
|
}
|