legal-markdown-js
Version:
Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version
240 lines • 7.34 kB
JavaScript
/**
* @fileoverview Object Flattening Utilities for Frontmatter Merge
*
* This module provides utilities to flatten hierarchical objects into dot notation
* and reconstruct them back to nested objects. Used for granular frontmatter merging
* where individual properties can be compared and merged independently.
*
* Features:
* - Flatten nested objects to dot notation (e.g., {a: {b: 1}} → {"a.b": 1})
* - Unflatten dot notation back to nested objects
* - Handle arrays as atomic values
* - Preserve null/undefined values
* - Type-safe operations
*
* @example
* ```typescript
* import { flattenObject, unflattenObject } from './object-flattener.js';
*
* const nested = {
* config: {
* level: "high",
* options: {
* debug: true
* }
* },
* items: [1, 2, 3]
* };
*
* const flattened = flattenObject(nested);
* // {
* // "config.level": "high",
* // "config.options.debug": true,
* // "items": [1, 2, 3]
* // }
*
* const restored = unflattenObject(flattened);
* // Back to original nested structure
* ```
*/
/**
* Converts a hierarchical object to dot notation
*
* Recursively traverses object properties and creates flat keys using dot notation.
* Arrays are treated as atomic values and not flattened.
*
* @param obj - Object to flatten
* @param prefix - Current prefix for nested properties (used internally)
* @param visited - WeakSet for circular reference detection (used internally)
* @param startTime - Start timestamp for timeout detection (used internally)
* @param timeoutMs - Maximum execution time in milliseconds (default: 5000ms)
* @returns Flattened object with dot notation keys
* @throws Error if operation times out or circular reference detected
*
* @example
* ```typescript
* const nested = {
* client: {
* name: "Acme Corp",
* contact: {
* email: "contact@acme.com"
* }
* },
* tags: ["legal", "contract"]
* };
*
* const result = flattenObject(nested);
* // {
* // "client.name": "Acme Corp",
* // "client.contact.email": "contact@acme.com",
* // "tags": ["legal", "contract"]
* // }
* ```
*/
export function flattenObject(obj, prefix = '', visited = new WeakSet(), startTime = Date.now(), timeoutMs = 5000) {
// Timeout safety check
if (Date.now() - startTime > timeoutMs) {
const message = `Object flattening timed out after ${timeoutMs}ms. ` +
'This may indicate a complex nested structure or circular references.';
throw new Error(message);
}
if (obj === null || obj === undefined) {
return {};
}
const flattened = {};
// Handle non-object types (primitives, arrays, functions, etc.)
if (typeof obj !== 'object' || Array.isArray(obj)) {
if (prefix) {
flattened[prefix] = obj;
}
return flattened;
}
// Circular reference detection
if (visited.has(obj)) {
console.warn(`Circular reference detected at path '${prefix}'. Replacing with placeholder.`);
if (prefix) {
flattened[prefix] = '[Circular Reference]';
}
return flattened;
}
visited.add(obj);
// Process object properties
for (const [key, value] of Object.entries(obj)) {
const newKey = prefix ? `${prefix}.${key}` : key;
if (value === null || value === undefined) {
// Preserve null/undefined values
flattened[newKey] = value;
}
else if (Array.isArray(value)) {
// Arrays are treated as atomic values
flattened[newKey] = value;
}
else if (typeof value === 'object') {
// Recursively flatten nested objects
Object.assign(flattened, flattenObject(value, newKey, visited, startTime, timeoutMs));
}
else {
// Primitive values
flattened[newKey] = value;
}
}
visited.delete(obj);
return flattened;
}
/**
* Reconstructs a hierarchical object from dot notation
*
* Takes a flattened object with dot notation keys and rebuilds the nested structure.
* Handles type coercion and creates intermediate objects as needed.
*
* @param flattened - Flattened object with dot notation keys
* @returns Reconstructed nested object
*
* @example
* ```typescript
* const flattened = {
* "config.database.host": "localhost",
* "config.database.port": 5432,
* "config.debug": true,
* "items": ["a", "b", "c"]
* };
*
* const result = unflattenObject(flattened);
* // {
* // config: {
* // database: {
* // host: "localhost",
* // port: 5432
* // },
* // debug: true
* // },
* // items: ["a", "b", "c"]
* // }
* ```
*/
export function unflattenObject(flattened) {
if (!flattened || typeof flattened !== 'object') {
return flattened;
}
const result = {};
for (const [key, value] of Object.entries(flattened)) {
const parts = key.split('.');
let current = result;
// Navigate/create the nested structure
for (let i = 0; i < parts.length - 1; i++) {
const part = parts[i];
if (!(part in current)) {
current[part] = {};
}
else if (typeof current[part] !== 'object' || Array.isArray(current[part])) {
// If there's a conflict (primitive/array vs object), object wins
current[part] = {};
}
current = current[part];
}
// Set the final value
const finalKey = parts[parts.length - 1];
current[finalKey] = value;
}
return result;
}
/**
* Validates that flattening and unflattening are reversible
*
* Utility function for testing that ensures the flatten/unflatten operations
* preserve the original object structure (with some limitations for arrays).
*
* @param original - Original object to test
* @returns True if operations are reversible, false otherwise
*
* @example
* ```typescript
* const obj = { a: { b: { c: 1 } } };
* console.log(isReversible(obj)); // true
*
* const objWithArray = { items: [1, 2, 3], config: { debug: true } };
* console.log(isReversible(objWithArray)); // true
* ```
*/
export function isReversible(original) {
try {
const flattened = flattenObject(original);
const restored = unflattenObject(flattened);
// Deep comparison (simplified for basic types)
return JSON.stringify(original) === JSON.stringify(restored);
}
catch (error) {
return false;
}
}
/**
* Gets all dot notation paths from an object
*
* Returns all possible dot notation paths that would be created by flattening,
* useful for validation and debugging.
*
* @param obj - Object to get paths from
* @returns Array of dot notation paths
*
* @example
* ```typescript
* const obj = {
* user: {
* profile: {
* name: "John"
* },
* settings: {
* theme: "dark"
* }
* }
* };
*
* const paths = getObjectPaths(obj);
* // ["user.profile.name", "user.settings.theme"]
* ```
*/
export function getObjectPaths(obj, prefix = '', timeoutMs = 5000) {
const flattened = flattenObject(obj, prefix, new WeakSet(), Date.now(), timeoutMs);
return Object.keys(flattened);
}
//# sourceMappingURL=object-flattener.js.map