-
-
Notifications
You must be signed in to change notification settings - Fork 432
/
Copy pathsrc.ts
51 lines (47 loc) · 1.28 KB
/
src.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { Code, SfcBlockAttr } from '../../types';
import { endOfLine, generateSfcBlockAttrValue } from '../utils';
import { codeFeatures } from './index';
export function* generateSrc(src: SfcBlockAttr): Generator<Code> {
if (src === true) {
return;
}
let { text } = src;
if (text.endsWith('.d.ts')) {
text = text.slice(0, -'.d.ts'.length);
}
else if (text.endsWith('.ts')) {
text = text.slice(0, -'.ts'.length);
}
else if (text.endsWith('.tsx')) {
text = text.slice(0, -'.tsx'.length) + '.jsx';
}
if (!text.endsWith('.js') && !text.endsWith('.jsx')) {
text = text + '.js';
}
yield `export * from `;
yield* generateSfcBlockAttrValue(src, text, {
...codeFeatures.all,
navigation: text === src.text
? true
: {
shouldRename: () => false,
resolveRenameEditText(newName) {
if (newName.endsWith('.jsx') || newName.endsWith('.js')) {
newName = newName.split('.').slice(0, -1).join('.');
}
if (src?.text.endsWith('.d.ts')) {
newName = newName + '.d.ts';
}
else if (src?.text.endsWith('.ts')) {
newName = newName + '.ts';
}
else if (src?.text.endsWith('.tsx')) {
newName = newName + '.tsx';
}
return newName;
},
},
});
yield endOfLine;
yield `export { default } from '${text}'${endOfLine}`;
}