@@ -10,89 +10,92 @@ export async function extract(filePath: string): Promise<string> {
10
10
}
11
11
}
12
12
13
- export function generateDtsTypes ( sourceCode : string ) : string {
13
+ function generateDtsTypes ( sourceCode : string ) : string {
14
14
console . log ( 'Starting generateDtsTypes' )
15
15
const lines = sourceCode . split ( '\n' )
16
16
const dtsLines : string [ ] = [ ]
17
17
const imports : string [ ] = [ ]
18
18
const exports : string [ ] = [ ]
19
+ let defaultExport = ''
19
20
20
21
let isMultiLineDeclaration = false
21
22
let currentDeclaration = ''
22
23
let bracketCount = 0
23
24
let lastCommentBlock = ''
24
25
25
26
for ( let i = 0 ; i < lines . length ; i ++ ) {
26
- const line = lines [ i ]
27
+ const line = lines [ i ] . trim ( )
27
28
console . log ( `Processing line ${ i + 1 } : ${ line } ` )
28
29
29
- // Handle comments
30
- if ( line . trim ( ) . startsWith ( '/**' ) || line . trim ( ) . startsWith ( '*' ) || line . trim ( ) . startsWith ( '*/' ) ) {
31
- if ( line . trim ( ) . startsWith ( '/**' ) )
30
+ if ( line . startsWith ( '/**' ) || line . startsWith ( '*' ) || line . startsWith ( '*/' ) ) {
31
+ if ( line . startsWith ( '/**' ) )
32
32
lastCommentBlock = ''
33
33
lastCommentBlock += `${ line } \n`
34
34
console . log ( 'Comment line added to lastCommentBlock' )
35
35
continue
36
36
}
37
37
38
- if ( line . trim ( ) . startsWith ( 'import' ) ) {
38
+ if ( line . startsWith ( 'import' ) ) {
39
39
const processedImport = processImport ( line )
40
40
imports . push ( processedImport )
41
41
console . log ( `Processed import: ${ processedImport } ` )
42
42
continue
43
43
}
44
44
45
- if ( line . trim ( ) . startsWith ( 'export' ) && ( line . includes ( '{' ) || line . includes ( '*' ) || line . includes ( 'from' ) ) ) {
46
- exports . push ( line )
47
- console . log ( `Export line added : ${ line } ` )
45
+ if ( line . startsWith ( 'export default' ) ) {
46
+ defaultExport = ` ${ line } ;`
47
+ console . log ( `Default export found : ${ defaultExport } ` )
48
48
continue
49
49
}
50
50
51
- if ( isMultiLineDeclaration || line . trim ( ) . startsWith ( 'export' ) ) {
51
+ if ( line . startsWith ( 'export const' ) ) {
52
+ isMultiLineDeclaration = true
53
+ currentDeclaration = ''
54
+ bracketCount = 0
55
+ }
56
+
57
+ if ( isMultiLineDeclaration ) {
52
58
currentDeclaration += `${ line } \n`
53
59
bracketCount += ( line . match ( / \{ / g) || [ ] ) . length - ( line . match ( / \} / g) || [ ] ) . length
54
- console . log ( `Current declaration: ${ currentDeclaration . trim ( ) } , Bracket count: ${ bracketCount } ` )
55
60
56
- if ( bracketCount === 0 || ( i === lines . length - 1 ) ) {
61
+ if ( bracketCount === 0 || i === lines . length - 1 ) {
57
62
if ( lastCommentBlock ) {
58
63
dtsLines . push ( lastCommentBlock . trimEnd ( ) )
59
64
console . log ( `Comment block added to dtsLines: ${ lastCommentBlock . trimEnd ( ) } ` )
60
65
lastCommentBlock = ''
61
66
}
62
- const processed = processDeclaration ( currentDeclaration . trim ( ) )
67
+ const processed = processConstDeclaration ( currentDeclaration . trim ( ) )
63
68
if ( processed ) {
64
69
dtsLines . push ( processed )
65
- console . log ( `Processed declaration added to dtsLines: ${ processed } ` )
70
+ console . log ( `Processed const declaration added to dtsLines: ${ processed } ` )
66
71
}
67
72
isMultiLineDeclaration = false
68
73
currentDeclaration = ''
69
- bracketCount = 0
70
74
}
71
- else {
72
- isMultiLineDeclaration = true
75
+ }
76
+ else if ( line . startsWith ( 'export' ) ) {
77
+ if ( lastCommentBlock ) {
78
+ dtsLines . push ( lastCommentBlock . trimEnd ( ) )
79
+ console . log ( `Comment block added to dtsLines: ${ lastCommentBlock . trimEnd ( ) } ` )
80
+ lastCommentBlock = ''
81
+ }
82
+ const processed = processDeclaration ( line )
83
+ if ( processed ) {
84
+ dtsLines . push ( processed )
85
+ console . log ( `Processed declaration added to dtsLines: ${ processed } ` )
73
86
}
74
87
}
75
88
}
76
89
77
- // Combine imports, declarations, and exports
78
- const result = cleanOutput ( [
79
- ...imports ,
80
- '' ,
81
- ...dtsLines ,
82
- '' ,
83
- ...exports ,
84
- ] . filter ( Boolean ) . join ( '\n' ) )
85
-
90
+ const result = cleanOutput ( [ ...imports , '' , ...dtsLines , '' , ...exports , defaultExport ] . filter ( Boolean ) . join ( '\n' ) )
86
91
console . log ( 'Final result:' , result )
87
92
return result
88
93
}
89
94
90
95
function processImport ( importLine : string ) : string {
91
96
console . log ( `Processing import: ${ importLine } ` )
92
97
if ( importLine . includes ( 'type' ) ) {
93
- const processed = importLine . replace ( 'import' , 'import type' ) . replace ( 'type type' , 'type' )
94
- console . log ( `Processed import: ${ processed } ` )
95
- return processed
98
+ return importLine . replace ( 'import' , 'import type' ) . replace ( 'type type' , 'type' )
96
99
}
97
100
return importLine
98
101
}
@@ -120,30 +123,25 @@ function processDeclaration(declaration: string): string {
120
123
121
124
function processConstDeclaration ( declaration : string ) : string {
122
125
console . log ( `Processing const declaration: ${ declaration } ` )
123
- const equalIndex = declaration . indexOf ( '=' )
124
- if ( equalIndex === - 1 )
125
- return declaration
126
-
127
- const name = declaration . slice ( 0 , equalIndex ) . trim ( ) . replace ( 'export const' , '' ) . trim ( )
128
- const value = declaration . slice ( equalIndex + 1 ) . trim ( ) . replace ( / ; $ / , '' )
129
-
130
- if ( value . startsWith ( '{' ) ) {
131
- const objectType = parseObjectLiteral ( value )
132
- const result = `export declare const ${ name } : ${ objectType } ;`
133
- console . log ( `Processed const declaration: ${ result } ` )
134
- return result
135
- }
136
- else {
137
- const valueType = inferValueType ( value )
138
- const result = `export declare const ${ name } : ${ valueType } ;`
139
- console . log ( `Processed const declaration: ${ result } ` )
140
- return result
141
- }
126
+ const lines = declaration . split ( '\n' )
127
+ const firstLine = lines [ 0 ]
128
+ const name = firstLine . split ( 'export const' ) [ 1 ] . split ( '=' ) [ 0 ] . trim ( )
129
+ const type = firstLine . includes ( ':' ) ? firstLine . split ( ':' ) [ 1 ] . split ( '=' ) [ 0 ] . trim ( ) : inferType ( lines . slice ( 1 , - 1 ) )
130
+
131
+ const properties = lines . slice ( 1 , - 1 ) . map ( ( line ) => {
132
+ const [ key , value ] = line . split ( ':' ) . map ( part => part . trim ( ) )
133
+ return ` ${ key } : ${ value . replace ( ',' , ';' ) } `
134
+ } ) . join ( '\n' )
135
+
136
+ return `export declare const ${ name } : ${ type } {\n${ properties } \n};`
142
137
}
143
138
144
139
function processInterfaceDeclaration ( declaration : string ) : string {
145
140
console . log ( `Processing interface declaration: ${ declaration } ` )
146
- const result = declaration . replace ( 'export interface' , 'export declare interface' )
141
+ const lines = declaration . split ( '\n' )
142
+ const interfaceName = lines [ 0 ] . split ( 'interface' ) [ 1 ] . split ( '{' ) [ 0 ] . trim ( )
143
+ const interfaceBody = lines . slice ( 1 , - 1 ) . map ( line => ` ${ line . trim ( ) } ` ) . join ( '\n' )
144
+ const result = `export declare interface ${ interfaceName } {\n${ interfaceBody } \n}`
147
145
console . log ( `Processed interface declaration: ${ result } ` )
148
146
return result
149
147
}
@@ -157,8 +155,8 @@ function processTypeDeclaration(declaration: string): string {
157
155
158
156
function processFunctionDeclaration ( declaration : string ) : string {
159
157
console . log ( `Processing function declaration: ${ declaration } ` )
160
- const functionBody = declaration . match ( / \{ [ \s \S ] * \} / ) ?. [ 0 ] || ''
161
- const result = `export declare ${ declaration . replace ( functionBody , '' ) . trim ( ) } ;`
158
+ const functionSignature = declaration . split ( '{' ) [ 0 ] . trim ( )
159
+ const result = `export declare ${ functionSignature . replace ( 'export ' , '' ) } ;`
162
160
console . log ( `Processed function declaration: ${ result } ` )
163
161
return result
164
162
}
@@ -168,23 +166,27 @@ function parseObjectLiteral(objectLiteral: string): string {
168
166
const content = objectLiteral . replace ( / ^ \{ | \} $ / g, '' ) . split ( ',' ) . map ( pair => pair . trim ( ) )
169
167
const parsedProperties = content . map ( ( pair ) => {
170
168
const [ key , value ] = pair . split ( ':' ) . map ( p => p . trim ( ) )
171
- return ` ${ key } : ${ inferValueType ( value ) } ;`
169
+ console . log ( `Parsing property: key=${ key } , value=${ value } ` )
170
+ return ` ${ key } : ${ value } ;`
172
171
} )
173
172
const result = `{\n${ parsedProperties . join ( '\n' ) } \n}`
174
173
console . log ( `Parsed object literal: ${ result } ` )
175
174
return result
176
175
}
177
176
178
- function inferValueType ( value : string ) : string {
179
- console . log ( `Inferring value type for: ${ value } ` )
180
- if ( value === 'true' || value === 'false' )
181
- return value
182
- if ( ! Number . isNaN ( Number ( value ) ) )
183
- return value
184
- if ( value . startsWith ( '\'' ) || value . startsWith ( '"' ) )
185
- return value
186
- console . log ( `Defaulting to string for: ${ value } ` )
187
- return 'string' // Default to string for other cases
177
+ function inferType ( properties : string [ ] ) : string {
178
+ const types = properties . map ( ( prop ) => {
179
+ const value = prop . split ( ':' ) [ 1 ] . trim ( )
180
+ if ( value . startsWith ( '\'' ) || value . startsWith ( '"' ) )
181
+ return 'string'
182
+ if ( value === 'true' || value === 'false' )
183
+ return 'boolean'
184
+ if ( ! isNaN ( Number ( value ) ) )
185
+ return 'number'
186
+ return 'any'
187
+ } )
188
+ const uniqueTypes = [ ...new Set ( types ) ]
189
+ return uniqueTypes . length === 1 ? `{ [key: string]: ${ uniqueTypes [ 0 ] } }` : '{ [key: string]: any }'
188
190
}
189
191
190
192
function cleanOutput ( output : string ) : string {
0 commit comments