UNPKG

@divriots/cheerio

Version:

The fast, flexible & elegant library for parsing and manipulating HTML and XML.

232 lines 7.33 kB
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { if (ar || !(i in from)) { if (!ar) ar = Array.prototype.slice.call(from, 0, i); ar[i] = from[i]; } } return to.concat(ar || Array.prototype.slice.call(from)); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.merge = exports.extract = exports.contains = exports.root = exports.parseHTML = exports.text = exports.xml = exports.html = void 0; var domutils_1 = require("domutils"); var options_js_1 = require("./options.js"); /** * Helper function to render a DOM. * * @param that - Cheerio instance to render. * @param dom - The DOM to render. Defaults to `that`'s root. * @param options - Options for rendering. * @returns The rendered document. */ function render(that, dom, options) { if (!that) return ''; return that(dom !== null && dom !== void 0 ? dom : that._root.children, null, undefined, options).toString(); } /** * Checks if a passed object is an options object. * * @param dom - Object to check if it is an options object. * @param options - Options object. * @returns Whether the object is an options object. */ function isOptions(dom, options) { return (!options && typeof dom === 'object' && dom != null && !('length' in dom) && !('type' in dom)); } function html(dom, options) { /* * Be flexible about parameters, sometimes we call html(), * with options as only parameter * check dom argument for dom element specific properties * assume there is no 'length' or 'type' properties in the options object */ var toRender = isOptions(dom) ? ((options = dom), undefined) : dom; /* * Sometimes `$.html()` is used without preloading html, * so fallback non-existing options to the default ones. */ var opts = __assign(__assign({}, this === null || this === void 0 ? void 0 : this._options), (0, options_js_1.flattenOptions)(options)); return render(this, toRender, opts); } exports.html = html; /** * Render the document as XML. * * @category Static * @param dom - Element to render. * @returns THe rendered document. */ function xml(dom) { var options = __assign(__assign({}, this._options), { xmlMode: true }); return render(this, dom, options); } exports.xml = xml; /** * Render the document as text. * * This returns the `textContent` of the passed elements. The result will * include the contents of `<script>` and `<style>` elements. To avoid this, use * `.prop('innerText')` instead. * * @category Static * @param elements - Elements to render. * @returns The rendered document. */ function text(elements) { var elems = elements !== null && elements !== void 0 ? elements : (this ? this.root() : []); var ret = ''; for (var i = 0; i < elems.length; i++) { ret += (0, domutils_1.textContent)(elems[i]); } return ret; } exports.text = text; function parseHTML(data, context, keepScripts) { if (keepScripts === void 0) { keepScripts = typeof context === 'boolean' ? context : false; } if (!data || typeof data !== 'string') { return null; } if (typeof context === 'boolean') { keepScripts = context; } var parsed = this.load(data, this._options, false); if (!keepScripts) { parsed('script').remove(); } /* * The `children` array is used by Cheerio internally to group elements that * share the same parents. When nodes created through `parseHTML` are * inserted into previously-existing DOM structures, they will be removed * from the `children` array. The results of `parseHTML` should remain * constant across these operations, so a shallow copy should be returned. */ return __spreadArray([], parsed.root()[0].children, true); } exports.parseHTML = parseHTML; /** * Sometimes you need to work with the top-level root element. To query it, you * can use `$.root()`. * * @category Static * @example * * ```js * $.root().append('<ul id="vegetables"></ul>').html(); * //=> <ul id="fruits">...</ul><ul id="vegetables"></ul> * ``` * @returns Cheerio instance wrapping the root node. * @alias Cheerio.root */ function root() { return this(this._root); } exports.root = root; /** * Checks to see if the `contained` DOM element is a descendant of the * `container` DOM element. * * @category Static * @param container - Potential parent node. * @param contained - Potential child node. * @returns Indicates if the nodes contain one another. * @alias Cheerio.contains * @see {@link https://api.jquery.com/jQuery.contains/} */ function contains(container, contained) { // According to the jQuery API, an element does not "contain" itself if (contained === container) { return false; } /* * Step up the descendants, stopping when the root element is reached * (signaled by `.parent` returning a reference to the same object) */ var next = contained; while (next && next !== next.parent) { next = next.parent; if (next === container) { return true; } } return false; } exports.contains = contains; /** * Extract multiple values from a document, and store them in an object. * * @category Static * @param map - An object containing key-value pairs. The keys are the names of * the properties to be created on the object, and the values are the * selectors to be used to extract the values. * @returns An object containing the extracted values. */ function extract(map) { return this.root().extract(map); } exports.extract = extract; /** * $.merge(). * * @category Static * @param arr1 - First array. * @param arr2 - Second array. * @returns `arr1`, with elements of `arr2` inserted. * @alias Cheerio.merge * @see {@link https://api.jquery.com/jQuery.merge/} */ function merge(arr1, arr2) { if (!isArrayLike(arr1) || !isArrayLike(arr2)) { return; } var newLength = arr1.length; var len = +arr2.length; for (var i = 0; i < len; i++) { arr1[newLength++] = arr2[i]; } arr1.length = newLength; return arr1; } exports.merge = merge; /** * Checks if an object is array-like. * * @category Static * @param item - Item to check. * @returns Indicates if the item is array-like. */ function isArrayLike(item) { if (Array.isArray(item)) { return true; } if (typeof item !== 'object' || item === null || !('length' in item) || typeof item.length !== 'number' || item.length < 0) { return false; } for (var i = 0; i < item.length; i++) { if (!(i in item)) { return false; } } return true; } //# sourceMappingURL=static.js.map