 e89f2f4b7b
			
		
	
	e89f2f4b7b
	
	
	
		
			
			Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { warn } from '../log.js';
 | |
| import { isMergeKey, addMergeToJSMap } from '../schema/yaml-1.1/merge.js';
 | |
| import { createStringifyContext } from '../stringify/stringify.js';
 | |
| import { isNode } from './identity.js';
 | |
| import { toJS } from './toJS.js';
 | |
| 
 | |
| function addPairToJSMap(ctx, map, { key, value }) {
 | |
|     if (isNode(key) && key.addToJSMap)
 | |
|         key.addToJSMap(ctx, map, value);
 | |
|     // TODO: Should drop this special case for bare << handling
 | |
|     else if (isMergeKey(ctx, key))
 | |
|         addMergeToJSMap(ctx, map, value);
 | |
|     else {
 | |
|         const jsKey = toJS(key, '', ctx);
 | |
|         if (map instanceof Map) {
 | |
|             map.set(jsKey, toJS(value, jsKey, ctx));
 | |
|         }
 | |
|         else if (map instanceof Set) {
 | |
|             map.add(jsKey);
 | |
|         }
 | |
|         else {
 | |
|             const stringKey = stringifyKey(key, jsKey, ctx);
 | |
|             const jsValue = toJS(value, stringKey, ctx);
 | |
|             if (stringKey in map)
 | |
|                 Object.defineProperty(map, stringKey, {
 | |
|                     value: jsValue,
 | |
|                     writable: true,
 | |
|                     enumerable: true,
 | |
|                     configurable: true
 | |
|                 });
 | |
|             else
 | |
|                 map[stringKey] = jsValue;
 | |
|         }
 | |
|     }
 | |
|     return map;
 | |
| }
 | |
| function stringifyKey(key, jsKey, ctx) {
 | |
|     if (jsKey === null)
 | |
|         return '';
 | |
|     // eslint-disable-next-line @typescript-eslint/no-base-to-string
 | |
|     if (typeof jsKey !== 'object')
 | |
|         return String(jsKey);
 | |
|     if (isNode(key) && ctx?.doc) {
 | |
|         const strCtx = createStringifyContext(ctx.doc, {});
 | |
|         strCtx.anchors = new Set();
 | |
|         for (const node of ctx.anchors.keys())
 | |
|             strCtx.anchors.add(node.anchor);
 | |
|         strCtx.inFlow = true;
 | |
|         strCtx.inStringifyKey = true;
 | |
|         const strKey = key.toString(strCtx);
 | |
|         if (!ctx.mapKeyWarned) {
 | |
|             let jsonStr = JSON.stringify(strKey);
 | |
|             if (jsonStr.length > 40)
 | |
|                 jsonStr = jsonStr.substring(0, 36) + '..."';
 | |
|             warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
 | |
|             ctx.mapKeyWarned = true;
 | |
|         }
 | |
|         return strKey;
 | |
|     }
 | |
|     return JSON.stringify(jsKey);
 | |
| }
 | |
| 
 | |
| export { addPairToJSMap };
 |