Skip to content

Commit 7d8b374

Browse files
committed
chore: wip
chore: wip
1 parent 65ce8dd commit 7d8b374

File tree

1 file changed

+10
-138
lines changed

1 file changed

+10
-138
lines changed

src/extract.ts

+10-138
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-console */
12
const DEBUG = true
23

34
function logDebug(...messages: unknown[]): void {
@@ -235,7 +236,11 @@ function processCompleteProperty({ key, content }: { key?: string, content: stri
235236
return null
236237

237238
const fullContent = content.join(' ').trim()
238-
const valueContent = fullContent.substring(fullContent.indexOf(':') + 1).trim()
239+
const colonIndex = fullContent.indexOf(':')
240+
if (colonIndex === -1)
241+
return null
242+
243+
const valueContent = fullContent.substring(colonIndex + 1).trim()
239244

240245
// Handle nested objects
241246
if (valueContent.startsWith('{')) {
@@ -346,7 +351,7 @@ function inferElementType(element: string): string {
346351
}
347352

348353
// Handle numbers
349-
if (!isNaN(Number(element))) {
354+
if (!Number.isNaN(Number(element))) {
350355
return element // Use literal type for numbers
351356
}
352357

@@ -389,7 +394,7 @@ function inferFunctionType(func: string): string {
389394
if (returnStatement.startsWith('\'') || returnStatement.startsWith('"')) {
390395
returnType = 'string'
391396
}
392-
else if (!isNaN(Number(returnStatement))) {
397+
else if (!Number.isNaN(Number(returnStatement))) {
393398
returnType = 'number'
394399
}
395400
else if (returnStatement === 'true' || returnStatement === 'false') {
@@ -451,92 +456,6 @@ function parseObjectLiteral(objStr: string): PropertyInfo[] {
451456
return extractObjectProperties([content])
452457
}
453458

454-
function processValue(key: string, value: string): PropertyInfo {
455-
// Clean the value
456-
const cleanValue = value.replace(/,\s*$/, '').trim()
457-
458-
// Handle array literals
459-
if (cleanValue.startsWith('[')) {
460-
return {
461-
key,
462-
value: cleanValue,
463-
type: inferArrayType(cleanValue),
464-
}
465-
}
466-
467-
// Handle object literals
468-
if (cleanValue.startsWith('{')) {
469-
const props = parseObjectLiteral(cleanValue)
470-
return {
471-
key,
472-
value: cleanValue,
473-
type: formatObjectType(props),
474-
nested: props,
475-
}
476-
}
477-
478-
// Handle function literals
479-
if (cleanValue.includes('=>') || cleanValue.startsWith('function')) {
480-
return {
481-
key,
482-
value: cleanValue,
483-
type: inferFunctionType(cleanValue),
484-
}
485-
}
486-
487-
// Handle string literals
488-
if (cleanValue.startsWith('\'') || cleanValue.startsWith('"')) {
489-
const stringContent = cleanValue.slice(1, -1)
490-
return {
491-
key,
492-
value: cleanValue,
493-
type: `'${stringContent}'`,
494-
}
495-
}
496-
497-
// Handle number literals
498-
if (!isNaN(Number(cleanValue))) {
499-
return {
500-
key,
501-
value: cleanValue,
502-
type: cleanValue, // Use literal type
503-
}
504-
}
505-
506-
// Handle boolean literals
507-
if (cleanValue === 'true' || cleanValue === 'false') {
508-
return {
509-
key,
510-
value: cleanValue,
511-
type: cleanValue, // Use literal type
512-
}
513-
}
514-
515-
// Handle known function references
516-
if (cleanValue === 'console.log') {
517-
return {
518-
key,
519-
value: cleanValue,
520-
type: '(...args: any[]) => void',
521-
}
522-
}
523-
524-
// Handle potentially undefined references
525-
if (cleanValue.includes('.')) {
526-
return {
527-
key,
528-
value: cleanValue,
529-
type: 'unknown',
530-
}
531-
}
532-
533-
return {
534-
key,
535-
value: cleanValue,
536-
type: 'any',
537-
}
538-
}
539-
540459
function processSimpleValue(key: string, value: string): PropertyInfo {
541460
// Clean the value first - remove trailing commas and whitespace
542461
const cleanValue = value.replace(/,\s*$/, '').trim()
@@ -552,7 +471,7 @@ function processSimpleValue(key: string, value: string): PropertyInfo {
552471
}
553472

554473
// Numbers
555-
if (!isNaN(Number(cleanValue))) {
474+
if (!Number.isNaN(Number(cleanValue))) {
556475
return {
557476
key,
558477
value: cleanValue,
@@ -586,53 +505,6 @@ function processSimpleValue(key: string, value: string): PropertyInfo {
586505
}
587506
}
588507

589-
function processCompleteProperty({ key, content }: { key?: string, content: string[] }): PropertyInfo | null {
590-
if (!key)
591-
return null
592-
593-
const fullContent = content.join(' ').trim()
594-
const colonIndex = fullContent.indexOf(':')
595-
if (colonIndex === -1)
596-
return null
597-
598-
const valueContent = fullContent.substring(colonIndex + 1).trim()
599-
600-
// Handle nested objects
601-
if (valueContent.startsWith('{')) {
602-
const nestedContent = extractNestedContent(valueContent, '{', '}')
603-
if (nestedContent) {
604-
const nestedProps = extractObjectProperties(nestedContent.split(',').map(line => line.trim()))
605-
return {
606-
key,
607-
value: valueContent,
608-
type: formatNestedType(nestedProps),
609-
nested: nestedProps,
610-
}
611-
}
612-
}
613-
614-
// Handle arrays
615-
if (valueContent.startsWith('[')) {
616-
return {
617-
key,
618-
value: valueContent,
619-
type: inferArrayType(valueContent),
620-
}
621-
}
622-
623-
// Handle functions
624-
if (isFunction(valueContent)) {
625-
return {
626-
key,
627-
value: valueContent,
628-
type: 'Function',
629-
}
630-
}
631-
632-
// Handle other types
633-
return processSimpleValue(key, valueContent)
634-
}
635-
636508
function formatNestedType(properties: PropertyInfo[]): string {
637509
if (properties.length === 0)
638510
return 'Object'
@@ -717,7 +589,7 @@ function extractPropertyInfo(key: string, value: string, originalLines: string[]
717589
}
718590

719591
// Handle numbers
720-
if (!isNaN(Number(value))) {
592+
if (!Number.isNaN(Number(value))) {
721593
return {
722594
key,
723595
value,

0 commit comments

Comments
 (0)