MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / renderIndex

Function renderIndex

src/bin/codegraph.ts:837–846  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

835 // A closure so a re-index (after opting gitignored child repos in, #1156)
836 // renders identically. Supervision already wraps the whole command.
837 const renderIndex = async (): Promise<IndexResult> => {
838 if (options.verbose) {
839 return await cg.indexAll({ onProgress: createVerboseProgress(), verbose: true });
840 }
841 process.stdout.write(`${colors.dim}${getGlyphs().rail}${colors.reset}\n`);
842 const progress = createShimmerProgress();
843 const r = await cg.indexAll({ onProgress: progress.onProgress });
844 await progress.stop();
845 return r;
846 };
847
848 const result = await renderIndex();
849

Callers 1

mainFunction · 0.85

Calls 6

getGlyphsFunction · 0.90
createShimmerProgressFunction · 0.90
createVerboseProgressFunction · 0.85
writeMethod · 0.65
stopMethod · 0.65
indexAllMethod · 0.45

Tested by

no test coverage detected