@clampy-js/clampy
Version:
Clamps an HTML element by adding ellipsis to it if the content inside is too long.
267 lines (262 loc) • 10.6 kB
JavaScript
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.clampy = {})));
}(this, (function (exports) { 'use strict';
var ClampOptions = /** @class */ (function () {
function ClampOptions(clamp, truncationChar, truncationHTML, splitOnChars) {
this.clamp = clamp || "auto";
this.truncationChar = truncationChar || "…";
this.truncationHTML = truncationHTML;
this.splitOnChars = splitOnChars || [".", "-", "–", "—", " "];
}
return ClampOptions;
}());
var ClampResponse = /** @class */ (function () {
function ClampResponse(original, clamped) {
this.original = original;
this.clamped = clamped;
}
return ClampResponse;
}());
/**
* Clamps (ie. cuts off) an HTML element's content by adding ellipsis to it if the content inside is too long.
*
* @export
* @param {HTMLElement} element The HTMLElement that should be clamped.
* @param {ClampOptions} [options] The Clamp options
* @returns {ClampResponse} The Clamp response
*/
function clamp(element, options) {
var win = window;
if (!options) {
options = {
clamp: "auto",
truncationChar: "…",
splitOnChars: [".", "-", "–", "—", " "]
};
}
var opt = {
clamp: options.clamp || "auto",
splitOnChars: options.splitOnChars || [".", "-", "–", "—", " "],
truncationChar: options.truncationChar || "…",
truncationHTML: options.truncationHTML
};
var splitOnChars = opt.splitOnChars.slice(0);
var splitChar = splitOnChars[0];
var chunks;
var lastChunk;
var sty = element.style;
var originalText = element.innerHTML;
var clampValue = opt.clamp;
var isCSSValue = clampValue.indexOf && (clampValue.indexOf("px") > -1 || clampValue.indexOf("em") > -1);
var truncationHTMLContainer;
if (opt.truncationHTML) {
truncationHTMLContainer = document.createElement("span");
truncationHTMLContainer.innerHTML = opt.truncationHTML;
}
// UTILITY FUNCTIONS __________________________________________________________
/**
* Return the current style for an element.
* @param {HTMLElement} elem The element to compute.
* @param {string} prop The style property.
* @returns {number}
*/
function computeStyle(elem, prop) {
return win.getComputedStyle(elem).getPropertyValue(prop);
}
/**
* Returns the maximum number of lines of text that should be rendered based
* on the current height of the element and the line-height of the text.
*/
function getMaxLines(height) {
var availHeight = height || element.clientHeight;
var lineHeight = getLineHeight(element);
return Math.max(Math.floor(availHeight / lineHeight), 0);
}
/**
* Returns the maximum height a given element should have based on the line-
* height of the text and the given clamp value.
*/
function getMaxHeight(clmp) {
var lineHeight = getLineHeight(element);
return lineHeight * clmp;
}
/**
* Returns the line-height of an element as an integer.
*/
function getLineHeight(elem) {
var lh = computeStyle(elem, "line-height");
if (lh === "normal") {
// Normal line heights vary from browser to browser. The spec recommends
// a value between 1.0 and 1.2 of the font size. Using 1.1 to split the diff.
lh = parseFloat(parseFloat(computeStyle(elem, "font-size")).toFixed(0)) * 1.1;
}
return parseFloat(parseFloat(lh).toFixed(0));
}
/**
* Returns the height of an element as an integer (max of scroll/offset/client).
* Note: inline elements return 0 for scrollHeight and clientHeight
*/
function getElemHeight(elem) {
// The '- 4' is a hack to deal with the element height when the browser(especially IE) zoom level is not 100%.
// It also doesn't impact clamping when the browser zoom level is 100%.
return Math.max(elem.scrollHeight, elem.clientHeight) - 4;
}
/**
* Gets an element's last child. That may be another node or a node's contents.
*/
function getLastChild(elem) {
if (!elem.lastChild) {
return;
}
// Current element has children, need to go deeper and get last child as a text node
if (elem.lastChild.children && elem.lastChild.children.length > 0) {
return getLastChild(Array.prototype.slice.call(elem.children).pop());
}
else if (!elem.lastChild ||
!elem.lastChild.nodeValue ||
elem.lastChild.nodeValue === "" ||
elem.lastChild.nodeValue === opt.truncationChar) {
if (!elem.lastChild.nodeValue) {
// Check for void/empty element (such as <br> tag) or if it's the ellipsis and remove it.
if ((elem.lastChild.firstChild === null ||
elem.lastChild.firstChild.nodeValue === opt.truncationChar) &&
elem.lastChild.parentNode) {
elem.lastChild.parentNode.removeChild(elem.lastChild);
// Check if the element has no more children and remove it if it's the case.
// This can happen for instance with lists (i.e. <ul> and <ol>) with no items.
if ((!elem.children || elem.children.length === 0) && elem.parentNode) {
elem.parentNode.removeChild(elem);
return getLastChild(element);
}
}
// Check if it's a text node
if (elem.lastChild.nodeType === 3) {
return elem.lastChild;
}
else {
return getLastChild(elem.lastChild);
}
}
if (elem.lastChild &&
elem.lastChild.parentNode &&
elem.lastChild.nodeValue === opt.truncationChar) {
elem.lastChild.parentNode.removeChild(elem.lastChild);
}
else {
return elem;
}
return getLastChild(element);
}
else {
return elem.lastChild;
}
}
/**
* Apply the ellipsis to the element
* @param elem the element to apply the ellipsis on
* @param str The string that will be set to the element
*/
function applyEllipsis(elem, str) {
elem.nodeValue = str + opt.truncationChar;
}
/**
* Removes one character at a time from the text until its width or
* height is beneath the passed-in max param.
*/
function truncate(target, maxHeight) {
/**
* Resets global variables.
*/
function reset() {
splitOnChars = opt.splitOnChars.slice(0);
splitChar = splitOnChars[0];
chunks = null;
lastChunk = null;
}
if (!target || !maxHeight || !target.nodeValue) {
return;
}
if (!target.nodeValue.trim().endsWith(opt.truncationChar)) {
applyEllipsis(target, target.nodeValue);
}
if (getElemHeight(element) <= maxHeight) {
return element.innerHTML;
}
var nodeValue = target.nodeValue.replace(opt.truncationChar, "");
// Grab the next chunks
if (!chunks) {
// If there are more characters to try, grab the next one
if (splitOnChars.length > 0) {
splitChar = splitOnChars.shift();
}
else {
// No characters to chunk by. Go character-by-character
splitChar = "";
}
chunks = nodeValue.split(splitChar);
}
// If there are chunks left to remove, remove the last one and see if
// the nodeValue fits.
if (chunks.length > 1) {
lastChunk = chunks.pop();
applyEllipsis(target, chunks.join(splitChar));
}
else {
// No more chunks can be removed using this character
chunks = null;
}
// Insert the custom HTML before the truncation character
if (truncationHTMLContainer) {
target.nodeValue = target.nodeValue.replace(opt.truncationChar, "");
element.innerHTML =
target.nodeValue + " " + truncationHTMLContainer.innerHTML + opt.truncationChar;
}
// Search produced valid chunks
if (chunks) {
// It fits
if (element.clientHeight <= maxHeight) {
// There's still more characters to try splitting on, not quite done yet
if (splitOnChars.length >= 0 && splitChar !== "") {
applyEllipsis(target, chunks.join(splitChar) + splitChar + lastChunk);
chunks = null;
}
else {
// Finished!
return element.innerHTML;
}
}
}
else {
// No valid chunks produced
// No valid chunks even when splitting by letter, time to move
// on to the next node
if (splitChar === "") {
applyEllipsis(target, "");
target = getLastChild(element);
reset();
}
}
return truncate(target, maxHeight);
}
// CONSTRUCTOR ________________________________________________________________
if (clampValue === "auto") {
clampValue = getMaxLines().toString();
}
else if (isCSSValue) {
clampValue = getMaxLines(parseInt(clampValue, 10)).toString();
}
var clampedText;
var height = getMaxHeight(Number(clampValue));
if (height < getElemHeight(element)) {
clampedText = truncate(getLastChild(element), height);
}
return new ClampResponse(originalText, clampedText);
}
exports.ClampOptions = ClampOptions;
exports.ClampResponse = ClampResponse;
exports.clamp = clamp;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=clampy.umd.js.map