Skip to content

Commit ced774b

Browse files
ktsnyyx990803
authored andcommitted
feat(types): add types for vue-template-compiler (#7918)
1 parent 5791072 commit ced774b

File tree

4 files changed

+298
-0
lines changed

4 files changed

+298
-0
lines changed

packages/vue-template-compiler/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"unpkg": "browser.js",
77
"jsdelivr": "browser.js",
88
"browser": "browser.js",
9+
"types": "types/index.d.ts",
910
"repository": {
1011
"type": "git",
1112
"url": "git+https://github.com/vuejs/vue.git"
@@ -23,5 +24,8 @@
2324
"dependencies": {
2425
"he": "^1.1.0",
2526
"de-indent": "^1.0.2"
27+
},
28+
"devDependencies": {
29+
"vue": "file:../.."
2630
}
2731
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
import Vue, { VNode } from "vue"
2+
3+
/*
4+
* Template compilation options / results
5+
*/
6+
interface CompilerOptions {
7+
modules?: ModuleOptions[];
8+
directives?: Record<string, DirectiveFunction>;
9+
preserveWhitespace?: boolean;
10+
}
11+
12+
interface CompiledResult {
13+
ast: ASTElement | undefined;
14+
render: string;
15+
staticRenderFns: string[];
16+
errors: string[];
17+
tips: string[];
18+
}
19+
20+
interface CompiledResultFunctions {
21+
render: () => VNode;
22+
staticRenderFns: (() => VNode)[];
23+
}
24+
25+
interface ModuleOptions {
26+
preTransformNode: (el: ASTElement) => ASTElement | undefined;
27+
transformNode: (el: ASTElement) => ASTElement | undefined;
28+
postTransformNode: (el: ASTElement) => void;
29+
genData: (el: ASTElement) => string;
30+
transformCode?: (el: ASTElement, code: string) => string;
31+
staticKeys?: string[];
32+
}
33+
34+
type DirectiveFunction = (node: ASTElement, directiveMeta: ASTDirective) => void;
35+
36+
/*
37+
* AST Types
38+
*/
39+
40+
/**
41+
* - 0: FALSE - whole sub tree un-optimizable
42+
* - 1: FULL - whole sub tree optimizable
43+
* - 2: SELF - self optimizable but has some un-optimizable children
44+
* - 3: CHILDREN - self un-optimizable but have fully optimizable children
45+
* - 4: PARTIAL - self un-optimizable with some un-optimizable children
46+
*/
47+
export type SSROptimizability = 0 | 1 | 2 | 3 | 4
48+
49+
export interface ASTModifiers {
50+
[key: string]: boolean;
51+
}
52+
53+
export interface ASTIfCondition {
54+
exp: string | undefined;
55+
block: ASTElement;
56+
}
57+
58+
export interface ASTElementHandler {
59+
value: string;
60+
params?: any[];
61+
modifiers: ASTModifiers | undefined;
62+
}
63+
64+
export interface ASTElementHandlers {
65+
[key: string]: ASTElementHandler | ASTElementHandler[];
66+
}
67+
68+
export interface ASTDirective {
69+
name: string;
70+
rawName: string;
71+
value: string;
72+
arg: string | undefined;
73+
modifiers: ASTModifiers | undefined;
74+
}
75+
76+
export type ASTNode = ASTElement | ASTText | ASTExpression;
77+
78+
export interface ASTElement {
79+
type: 1;
80+
tag: string;
81+
attrsList: { name: string; value: any }[];
82+
attrsMap: Record<string, any>;
83+
parent: ASTElement | undefined;
84+
children: ASTNode[];
85+
86+
processed?: true;
87+
88+
static?: boolean;
89+
staticRoot?: boolean;
90+
staticInFor?: boolean;
91+
staticProcessed?: boolean;
92+
hasBindings?: boolean;
93+
94+
text?: string;
95+
attrs?: { name: string; value: any }[];
96+
props?: { name: string; value: string }[];
97+
plain?: boolean;
98+
pre?: true;
99+
ns?: string;
100+
101+
component?: string;
102+
inlineTemplate?: true;
103+
transitionMode?: string | null;
104+
slotName?: string;
105+
slotTarget?: string;
106+
slotScope?: string;
107+
scopedSlots?: Record<string, ASTElement>;
108+
109+
ref?: string;
110+
refInFor?: boolean;
111+
112+
if?: string;
113+
ifProcessed?: boolean;
114+
elseif?: string;
115+
else?: true;
116+
ifConditions?: ASTIfCondition[];
117+
118+
for?: string;
119+
forProcessed?: boolean;
120+
key?: string;
121+
alias?: string;
122+
iterator1?: string;
123+
iterator2?: string;
124+
125+
staticClass?: string;
126+
classBinding?: string;
127+
staticStyle?: string;
128+
styleBinding?: string;
129+
events?: ASTElementHandlers;
130+
nativeEvents?: ASTElementHandlers;
131+
132+
transition?: string | true;
133+
transitionOnAppear?: boolean;
134+
135+
model?: {
136+
value: string;
137+
callback: string;
138+
expression: string;
139+
};
140+
141+
directives?: ASTDirective[];
142+
143+
forbidden?: true;
144+
once?: true;
145+
onceProcessed?: boolean;
146+
wrapData?: (code: string) => string;
147+
wrapListeners?: (code: string) => string;
148+
149+
// 2.4 ssr optimization
150+
ssrOptimizability?: SSROptimizability;
151+
152+
// weex specific
153+
appendAsTree?: boolean;
154+
}
155+
156+
export interface ASTExpression {
157+
type: 2;
158+
expression: string;
159+
text: string;
160+
tokens: (string | Record<string, any>)[];
161+
static?: boolean;
162+
// 2.4 ssr optimization
163+
ssrOptimizability?: SSROptimizability;
164+
}
165+
166+
export interface ASTText {
167+
type: 3;
168+
text: string;
169+
static?: boolean;
170+
isComment?: boolean;
171+
// 2.4 ssr optimization
172+
ssrOptimizability?: SSROptimizability;
173+
}
174+
175+
/*
176+
* SFC parser related types
177+
*/
178+
interface SFCParserOptions {
179+
pad?: true | 'line' | 'space';
180+
}
181+
182+
export interface SFCBlock {
183+
type: string;
184+
content: string;
185+
attrs: Record<string, string>;
186+
start?: number;
187+
end?: number;
188+
lang?: string;
189+
src?: string;
190+
scoped?: boolean;
191+
module?: string | boolean;
192+
}
193+
194+
export interface SFCDescriptor {
195+
template: SFCBlock | undefined;
196+
script: SFCBlock | undefined;
197+
styles: SFCBlock[];
198+
customBlocks: SFCBlock[];
199+
}
200+
201+
/*
202+
* Exposed functions
203+
*/
204+
export function compile(
205+
template: string,
206+
options?: CompilerOptions
207+
): CompiledResult;
208+
209+
export function compileToFunctions(template: string): CompiledResultFunctions;
210+
211+
export function ssrCompile(
212+
template: string,
213+
options?: CompilerOptions
214+
): CompiledResult;
215+
216+
export function ssrCompileToFunctions(template: string): CompiledResultFunctions;
217+
218+
export function parseComponent(
219+
file: string,
220+
options?: SFCParserOptions
221+
): SFCDescriptor;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import Vue, { VNode } from "vue";
2+
import {
3+
compile,
4+
compileToFunctions,
5+
ssrCompile,
6+
ssrCompileToFunctions,
7+
parseComponent
8+
} from "./";
9+
10+
// check compile options
11+
const compiled = compile("<div>hi</div>", {
12+
preserveWhitespace: false,
13+
modules: [
14+
{
15+
preTransformNode: el => el,
16+
transformNode: el => el,
17+
postTransformNode: el => {
18+
el.tag = "p";
19+
},
20+
genData: el => el.tag,
21+
transformCode: (el, code) => code,
22+
staticKeys: ["test"]
23+
}
24+
],
25+
directives: {
26+
test: (node, directiveMeta) => {
27+
node.tag;
28+
directiveMeta.value;
29+
}
30+
}
31+
});
32+
33+
// can be passed to function constructor
34+
new Function(compiled.render);
35+
compiled.staticRenderFns.map(fn => new Function(fn));
36+
37+
const compiledFns = compileToFunctions("<div>hi</div>");
38+
39+
// can be passed to component render / staticRenderFns options
40+
const vm = new Vue({
41+
data() {
42+
return {
43+
test: "Test"
44+
};
45+
},
46+
render: compiledFns.render,
47+
staticRenderFns: compiledFns.staticRenderFns
48+
});
49+
50+
// can be called with component instance
51+
const vnode: VNode = compiledFns.render.call(vm);
52+
53+
// check SFC parser
54+
const desc = parseComponent("<template></template>", {
55+
pad: "space"
56+
});
57+
58+
const templateContent: string = desc.template!.content;
59+
const scriptContent: string = desc.script!.content;
60+
const styleContent: string = desc.styles.map(s => s.content).join("\n");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "commonjs",
5+
"moduleResolution": "node",
6+
"strict": true,
7+
"noEmit": true
8+
},
9+
"compileOnSave": false,
10+
"include": [
11+
"**/*.ts"
12+
]
13+
}

0 commit comments

Comments
 (0)