Add semantic token highlighting for 'that' variable and comment file references in VS Code extension Add Phone_Text_Input and Currency_Input components with formatting utilities Implement client widgets, form standardization, and soft delete functionality Add modal scroll lock and update documentation Implement comprehensive modal system with form integration and validation Fix modal component instantiation using jQuery plugin API Implement modal system with responsive sizing, queuing, and validation support Implement form submission with validation, error handling, and loading states Implement country/state selectors with dynamic data loading and Bootstrap styling Revert Rsx::Route() highlighting in Blade/PHP files Target specific PHP scopes for Rsx::Route() highlighting in Blade Expand injection selector for Rsx::Route() highlighting Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls Update jqhtml packages to v2.2.165 Add bundle path validation for common mistakes (development mode only) Create Ajax_Select_Input widget and Rsx_Reference_Data controller Create Country_Select_Input widget with default country support Initialize Tom Select on Select_Input widgets Add Tom Select bundle for enhanced select dropdowns Implement ISO 3166 geographic data system for country/region selection Implement widget-based form system with disabled state support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
111 lines
2.8 KiB
JavaScript
Executable File
111 lines
2.8 KiB
JavaScript
Executable File
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const Hash = require("../Hash");
|
|
const MAX_SHORT_STRING = require("./wasm-hash").MAX_SHORT_STRING;
|
|
|
|
/** @typedef {import("../../../declarations/WebpackOptions").HashDigest} Encoding */
|
|
|
|
class BatchedHash extends Hash {
|
|
/**
|
|
* @param {Hash} hash hash
|
|
*/
|
|
constructor(hash) {
|
|
super();
|
|
this.string = undefined;
|
|
this.encoding = undefined;
|
|
this.hash = hash;
|
|
}
|
|
|
|
/**
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
|
* @overload
|
|
* @param {string | Buffer} data data
|
|
* @returns {Hash} updated hash
|
|
*/
|
|
/**
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
|
* @overload
|
|
* @param {string} data data
|
|
* @param {Encoding} inputEncoding data encoding
|
|
* @returns {Hash} updated hash
|
|
*/
|
|
/**
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
|
* @param {string | Buffer} data data
|
|
* @param {Encoding=} inputEncoding data encoding
|
|
* @returns {Hash} updated hash
|
|
*/
|
|
update(data, inputEncoding) {
|
|
if (this.string !== undefined) {
|
|
if (
|
|
typeof data === "string" &&
|
|
inputEncoding === this.encoding &&
|
|
this.string.length + data.length < MAX_SHORT_STRING
|
|
) {
|
|
this.string += data;
|
|
return this;
|
|
}
|
|
if (this.encoding) {
|
|
this.hash.update(this.string, this.encoding);
|
|
} else {
|
|
this.hash.update(this.string);
|
|
}
|
|
this.string = undefined;
|
|
}
|
|
if (typeof data === "string") {
|
|
if (
|
|
data.length < MAX_SHORT_STRING &&
|
|
// base64 encoding is not valid since it may contain padding chars
|
|
(!inputEncoding || !inputEncoding.startsWith("ba"))
|
|
) {
|
|
this.string = data;
|
|
this.encoding = inputEncoding;
|
|
} else if (inputEncoding) {
|
|
this.hash.update(data, inputEncoding);
|
|
} else {
|
|
this.hash.update(data);
|
|
}
|
|
} else {
|
|
this.hash.update(data);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
* @overload
|
|
* @returns {Buffer} digest
|
|
*/
|
|
/**
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
* @overload
|
|
* @param {Encoding} encoding encoding of the return value
|
|
* @returns {string} digest
|
|
*/
|
|
/**
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
* @param {Encoding=} encoding encoding of the return value
|
|
* @returns {string | Buffer} digest
|
|
*/
|
|
digest(encoding) {
|
|
if (this.string !== undefined) {
|
|
if (this.encoding) {
|
|
this.hash.update(this.string, this.encoding);
|
|
} else {
|
|
this.hash.update(this.string);
|
|
}
|
|
}
|
|
if (!encoding) {
|
|
return this.hash.digest();
|
|
}
|
|
return this.hash.digest(encoding);
|
|
}
|
|
}
|
|
|
|
module.exports = BatchedHash;
|