compiler-ssr.cjs.js 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376
  1. /**
  2. * @vue/compiler-ssr v3.4.27
  3. * (c) 2018-present Yuxi (Evan) You and Vue contributors
  4. * @license MIT
  5. **/
  6. 'use strict';
  7. Object.defineProperty(exports, '__esModule', { value: true });
  8. var compilerDom = require('@vue/compiler-dom');
  9. var shared = require('@vue/shared');
  10. const SSR_INTERPOLATE = Symbol(`ssrInterpolate`);
  11. const SSR_RENDER_VNODE = Symbol(`ssrRenderVNode`);
  12. const SSR_RENDER_COMPONENT = Symbol(`ssrRenderComponent`);
  13. const SSR_RENDER_SLOT = Symbol(`ssrRenderSlot`);
  14. const SSR_RENDER_SLOT_INNER = Symbol(`ssrRenderSlotInner`);
  15. const SSR_RENDER_CLASS = Symbol(`ssrRenderClass`);
  16. const SSR_RENDER_STYLE = Symbol(`ssrRenderStyle`);
  17. const SSR_RENDER_ATTRS = Symbol(`ssrRenderAttrs`);
  18. const SSR_RENDER_ATTR = Symbol(`ssrRenderAttr`);
  19. const SSR_RENDER_DYNAMIC_ATTR = Symbol(`ssrRenderDynamicAttr`);
  20. const SSR_RENDER_LIST = Symbol(`ssrRenderList`);
  21. const SSR_INCLUDE_BOOLEAN_ATTR = Symbol(`ssrIncludeBooleanAttr`);
  22. const SSR_LOOSE_EQUAL = Symbol(`ssrLooseEqual`);
  23. const SSR_LOOSE_CONTAIN = Symbol(`ssrLooseContain`);
  24. const SSR_RENDER_DYNAMIC_MODEL = Symbol(`ssrRenderDynamicModel`);
  25. const SSR_GET_DYNAMIC_MODEL_PROPS = Symbol(`ssrGetDynamicModelProps`);
  26. const SSR_RENDER_TELEPORT = Symbol(`ssrRenderTeleport`);
  27. const SSR_RENDER_SUSPENSE = Symbol(`ssrRenderSuspense`);
  28. const SSR_GET_DIRECTIVE_PROPS = Symbol(`ssrGetDirectiveProps`);
  29. const ssrHelpers = {
  30. [SSR_INTERPOLATE]: `ssrInterpolate`,
  31. [SSR_RENDER_VNODE]: `ssrRenderVNode`,
  32. [SSR_RENDER_COMPONENT]: `ssrRenderComponent`,
  33. [SSR_RENDER_SLOT]: `ssrRenderSlot`,
  34. [SSR_RENDER_SLOT_INNER]: `ssrRenderSlotInner`,
  35. [SSR_RENDER_CLASS]: `ssrRenderClass`,
  36. [SSR_RENDER_STYLE]: `ssrRenderStyle`,
  37. [SSR_RENDER_ATTRS]: `ssrRenderAttrs`,
  38. [SSR_RENDER_ATTR]: `ssrRenderAttr`,
  39. [SSR_RENDER_DYNAMIC_ATTR]: `ssrRenderDynamicAttr`,
  40. [SSR_RENDER_LIST]: `ssrRenderList`,
  41. [SSR_INCLUDE_BOOLEAN_ATTR]: `ssrIncludeBooleanAttr`,
  42. [SSR_LOOSE_EQUAL]: `ssrLooseEqual`,
  43. [SSR_LOOSE_CONTAIN]: `ssrLooseContain`,
  44. [SSR_RENDER_DYNAMIC_MODEL]: `ssrRenderDynamicModel`,
  45. [SSR_GET_DYNAMIC_MODEL_PROPS]: `ssrGetDynamicModelProps`,
  46. [SSR_RENDER_TELEPORT]: `ssrRenderTeleport`,
  47. [SSR_RENDER_SUSPENSE]: `ssrRenderSuspense`,
  48. [SSR_GET_DIRECTIVE_PROPS]: `ssrGetDirectiveProps`
  49. };
  50. compilerDom.registerRuntimeHelpers(ssrHelpers);
  51. const ssrTransformIf = compilerDom.createStructuralDirectiveTransform(
  52. /^(if|else|else-if)$/,
  53. compilerDom.processIf
  54. );
  55. function ssrProcessIf(node, context, disableNestedFragments = false, disableCommentAsIfAlternate = false) {
  56. const [rootBranch] = node.branches;
  57. const ifStatement = compilerDom.createIfStatement(
  58. rootBranch.condition,
  59. processIfBranch(rootBranch, context, disableNestedFragments)
  60. );
  61. context.pushStatement(ifStatement);
  62. let currentIf = ifStatement;
  63. for (let i = 1; i < node.branches.length; i++) {
  64. const branch = node.branches[i];
  65. const branchBlockStatement = processIfBranch(
  66. branch,
  67. context,
  68. disableNestedFragments
  69. );
  70. if (branch.condition) {
  71. currentIf = currentIf.alternate = compilerDom.createIfStatement(
  72. branch.condition,
  73. branchBlockStatement
  74. );
  75. } else {
  76. currentIf.alternate = branchBlockStatement;
  77. }
  78. }
  79. if (!currentIf.alternate && !disableCommentAsIfAlternate) {
  80. currentIf.alternate = compilerDom.createBlockStatement([
  81. compilerDom.createCallExpression(`_push`, ["`<!---->`"])
  82. ]);
  83. }
  84. }
  85. function processIfBranch(branch, context, disableNestedFragments = false) {
  86. const { children } = branch;
  87. const needFragmentWrapper = !disableNestedFragments && (children.length !== 1 || children[0].type !== 1) && // optimize away nested fragments when the only child is a ForNode
  88. !(children.length === 1 && children[0].type === 11);
  89. return processChildrenAsStatement(branch, context, needFragmentWrapper);
  90. }
  91. const ssrTransformFor = compilerDom.createStructuralDirectiveTransform(
  92. "for",
  93. compilerDom.processFor
  94. );
  95. function ssrProcessFor(node, context, disableNestedFragments = false) {
  96. const needFragmentWrapper = !disableNestedFragments && (node.children.length !== 1 || node.children[0].type !== 1);
  97. const renderLoop = compilerDom.createFunctionExpression(
  98. compilerDom.createForLoopParams(node.parseResult)
  99. );
  100. renderLoop.body = processChildrenAsStatement(
  101. node,
  102. context,
  103. needFragmentWrapper
  104. );
  105. if (!disableNestedFragments) {
  106. context.pushStringPart(`<!--[-->`);
  107. }
  108. context.pushStatement(
  109. compilerDom.createCallExpression(context.helper(SSR_RENDER_LIST), [
  110. node.source,
  111. renderLoop
  112. ])
  113. );
  114. if (!disableNestedFragments) {
  115. context.pushStringPart(`<!--]-->`);
  116. }
  117. }
  118. const ssrTransformSlotOutlet = (node, context) => {
  119. if (compilerDom.isSlotOutlet(node)) {
  120. const { slotName, slotProps } = compilerDom.processSlotOutlet(node, context);
  121. const args = [
  122. `_ctx.$slots`,
  123. slotName,
  124. slotProps || `{}`,
  125. // fallback content placeholder. will be replaced in the process phase
  126. `null`,
  127. `_push`,
  128. `_parent`
  129. ];
  130. if (context.scopeId && context.slotted !== false) {
  131. args.push(`"${context.scopeId}-s"`);
  132. }
  133. let method = SSR_RENDER_SLOT;
  134. let parent = context.parent;
  135. if (parent) {
  136. const children = parent.children;
  137. if (parent.type === 10) {
  138. parent = context.grandParent;
  139. }
  140. let componentType;
  141. if (parent.type === 1 && parent.tagType === 1 && ((componentType = compilerDom.resolveComponentType(parent, context, true)) === compilerDom.TRANSITION || componentType === compilerDom.TRANSITION_GROUP) && children.filter((c) => c.type === 1).length === 1) {
  142. method = SSR_RENDER_SLOT_INNER;
  143. if (!(context.scopeId && context.slotted !== false)) {
  144. args.push("null");
  145. }
  146. args.push("true");
  147. }
  148. }
  149. node.ssrCodegenNode = compilerDom.createCallExpression(context.helper(method), args);
  150. }
  151. };
  152. function ssrProcessSlotOutlet(node, context) {
  153. const renderCall = node.ssrCodegenNode;
  154. if (node.children.length) {
  155. const fallbackRenderFn = compilerDom.createFunctionExpression([]);
  156. fallbackRenderFn.body = processChildrenAsStatement(node, context);
  157. renderCall.arguments[3] = fallbackRenderFn;
  158. }
  159. if (context.withSlotScopeId) {
  160. const slotScopeId = renderCall.arguments[6];
  161. renderCall.arguments[6] = slotScopeId ? `${slotScopeId} + _scopeId` : `_scopeId`;
  162. }
  163. context.pushStatement(node.ssrCodegenNode);
  164. }
  165. function createSSRCompilerError(code, loc) {
  166. return compilerDom.createCompilerError(code, loc, SSRErrorMessages);
  167. }
  168. const SSRErrorMessages = {
  169. [65]: `Unsafe attribute name for SSR.`,
  170. [66]: `Missing the 'to' prop on teleport element.`,
  171. [67]: `Invalid AST node during SSR transform.`
  172. };
  173. function ssrProcessTeleport(node, context) {
  174. const targetProp = compilerDom.findProp(node, "to");
  175. if (!targetProp) {
  176. context.onError(
  177. createSSRCompilerError(66, node.loc)
  178. );
  179. return;
  180. }
  181. let target;
  182. if (targetProp.type === 6) {
  183. target = targetProp.value && compilerDom.createSimpleExpression(targetProp.value.content, true);
  184. } else {
  185. target = targetProp.exp;
  186. }
  187. if (!target) {
  188. context.onError(
  189. createSSRCompilerError(
  190. 66,
  191. targetProp.loc
  192. )
  193. );
  194. return;
  195. }
  196. const disabledProp = compilerDom.findProp(
  197. node,
  198. "disabled",
  199. false,
  200. true
  201. /* allow empty */
  202. );
  203. const disabled = disabledProp ? disabledProp.type === 6 ? `true` : disabledProp.exp || `false` : `false`;
  204. const contentRenderFn = compilerDom.createFunctionExpression(
  205. [`_push`],
  206. void 0,
  207. // Body is added later
  208. true,
  209. // newline
  210. false,
  211. // isSlot
  212. node.loc
  213. );
  214. contentRenderFn.body = processChildrenAsStatement(node, context);
  215. context.pushStatement(
  216. compilerDom.createCallExpression(context.helper(SSR_RENDER_TELEPORT), [
  217. `_push`,
  218. contentRenderFn,
  219. target,
  220. disabled,
  221. `_parent`
  222. ])
  223. );
  224. }
  225. const wipMap$3 = /* @__PURE__ */ new WeakMap();
  226. function ssrTransformSuspense(node, context) {
  227. return () => {
  228. if (node.children.length) {
  229. const wipEntry = {
  230. slotsExp: null,
  231. // to be immediately set
  232. wipSlots: []
  233. };
  234. wipMap$3.set(node, wipEntry);
  235. wipEntry.slotsExp = compilerDom.buildSlots(
  236. node,
  237. context,
  238. (_props, _vForExp, children, loc) => {
  239. const fn = compilerDom.createFunctionExpression(
  240. [],
  241. void 0,
  242. // no return, assign body later
  243. true,
  244. // newline
  245. false,
  246. // suspense slots are not treated as normal slots
  247. loc
  248. );
  249. wipEntry.wipSlots.push({
  250. fn,
  251. children
  252. });
  253. return fn;
  254. }
  255. ).slots;
  256. }
  257. };
  258. }
  259. function ssrProcessSuspense(node, context) {
  260. const wipEntry = wipMap$3.get(node);
  261. if (!wipEntry) {
  262. return;
  263. }
  264. const { slotsExp, wipSlots } = wipEntry;
  265. for (let i = 0; i < wipSlots.length; i++) {
  266. const slot = wipSlots[i];
  267. slot.fn.body = processChildrenAsStatement(slot, context);
  268. }
  269. context.pushStatement(
  270. compilerDom.createCallExpression(context.helper(SSR_RENDER_SUSPENSE), [
  271. `_push`,
  272. slotsExp
  273. ])
  274. );
  275. }
  276. const rawChildrenMap = /* @__PURE__ */ new WeakMap();
  277. const ssrTransformElement = (node, context) => {
  278. if (node.type !== 1 || node.tagType !== 0) {
  279. return;
  280. }
  281. return function ssrPostTransformElement() {
  282. const openTag = [`<${node.tag}`];
  283. const needTagForRuntime = node.tag === "textarea" || node.tag.indexOf("-") > 0;
  284. const hasDynamicVBind = compilerDom.hasDynamicKeyVBind(node);
  285. const hasCustomDir = node.props.some(
  286. (p) => p.type === 7 && !shared.isBuiltInDirective(p.name)
  287. );
  288. const needMergeProps = hasDynamicVBind || hasCustomDir;
  289. if (needMergeProps) {
  290. const { props, directives } = compilerDom.buildProps(
  291. node,
  292. context,
  293. node.props,
  294. false,
  295. false,
  296. true
  297. );
  298. if (props || directives.length) {
  299. const mergedProps = buildSSRProps(props, directives, context);
  300. const propsExp = compilerDom.createCallExpression(
  301. context.helper(SSR_RENDER_ATTRS),
  302. [mergedProps]
  303. );
  304. if (node.tag === "textarea") {
  305. const existingText = node.children[0];
  306. if (!existingText || existingText.type !== 5) {
  307. const tempId = `_temp${context.temps++}`;
  308. propsExp.arguments = [
  309. compilerDom.createAssignmentExpression(
  310. compilerDom.createSimpleExpression(tempId, false),
  311. mergedProps
  312. )
  313. ];
  314. rawChildrenMap.set(
  315. node,
  316. compilerDom.createCallExpression(context.helper(SSR_INTERPOLATE), [
  317. compilerDom.createConditionalExpression(
  318. compilerDom.createSimpleExpression(`"value" in ${tempId}`, false),
  319. compilerDom.createSimpleExpression(`${tempId}.value`, false),
  320. compilerDom.createSimpleExpression(
  321. existingText ? existingText.content : ``,
  322. true
  323. ),
  324. false
  325. )
  326. ])
  327. );
  328. }
  329. } else if (node.tag === "input") {
  330. const vModel = findVModel(node);
  331. if (vModel) {
  332. const tempId = `_temp${context.temps++}`;
  333. const tempExp = compilerDom.createSimpleExpression(tempId, false);
  334. propsExp.arguments = [
  335. compilerDom.createSequenceExpression([
  336. compilerDom.createAssignmentExpression(tempExp, mergedProps),
  337. compilerDom.createCallExpression(context.helper(compilerDom.MERGE_PROPS), [
  338. tempExp,
  339. compilerDom.createCallExpression(
  340. context.helper(SSR_GET_DYNAMIC_MODEL_PROPS),
  341. [
  342. tempExp,
  343. // existing props
  344. vModel.exp
  345. // model
  346. ]
  347. )
  348. ])
  349. ])
  350. ];
  351. }
  352. }
  353. if (needTagForRuntime) {
  354. propsExp.arguments.push(`"${node.tag}"`);
  355. }
  356. openTag.push(propsExp);
  357. }
  358. }
  359. let dynamicClassBinding = void 0;
  360. let staticClassBinding = void 0;
  361. let dynamicStyleBinding = void 0;
  362. for (let i = 0; i < node.props.length; i++) {
  363. const prop = node.props[i];
  364. if (node.tag === "input" && isTrueFalseValue(prop)) {
  365. continue;
  366. }
  367. if (prop.type === 7) {
  368. if (prop.name === "html" && prop.exp) {
  369. rawChildrenMap.set(
  370. node,
  371. compilerDom.createCompoundExpression([`(`, prop.exp, `) ?? ''`])
  372. );
  373. } else if (prop.name === "text" && prop.exp) {
  374. node.children = [compilerDom.createInterpolation(prop.exp, prop.loc)];
  375. } else if (prop.name === "slot") {
  376. context.onError(
  377. compilerDom.createCompilerError(40, prop.loc)
  378. );
  379. } else if (isTextareaWithValue(node, prop) && prop.exp) {
  380. if (!needMergeProps) {
  381. node.children = [compilerDom.createInterpolation(prop.exp, prop.loc)];
  382. }
  383. } else if (!needMergeProps && prop.name !== "on") {
  384. const directiveTransform = context.directiveTransforms[prop.name];
  385. if (directiveTransform) {
  386. const { props, ssrTagParts } = directiveTransform(
  387. prop,
  388. node,
  389. context
  390. );
  391. if (ssrTagParts) {
  392. openTag.push(...ssrTagParts);
  393. }
  394. for (let j = 0; j < props.length; j++) {
  395. const { key, value } = props[j];
  396. if (compilerDom.isStaticExp(key)) {
  397. let attrName = key.content;
  398. if (attrName === "key" || attrName === "ref") {
  399. continue;
  400. }
  401. if (attrName === "class") {
  402. openTag.push(
  403. ` class="`,
  404. dynamicClassBinding = compilerDom.createCallExpression(
  405. context.helper(SSR_RENDER_CLASS),
  406. [value]
  407. ),
  408. `"`
  409. );
  410. } else if (attrName === "style") {
  411. if (dynamicStyleBinding) {
  412. mergeCall(dynamicStyleBinding, value);
  413. } else {
  414. openTag.push(
  415. ` style="`,
  416. dynamicStyleBinding = compilerDom.createCallExpression(
  417. context.helper(SSR_RENDER_STYLE),
  418. [value]
  419. ),
  420. `"`
  421. );
  422. }
  423. } else {
  424. attrName = node.tag.indexOf("-") > 0 ? attrName : shared.propsToAttrMap[attrName] || attrName.toLowerCase();
  425. if (shared.isBooleanAttr(attrName)) {
  426. openTag.push(
  427. compilerDom.createConditionalExpression(
  428. compilerDom.createCallExpression(
  429. context.helper(SSR_INCLUDE_BOOLEAN_ATTR),
  430. [value]
  431. ),
  432. compilerDom.createSimpleExpression(" " + attrName, true),
  433. compilerDom.createSimpleExpression("", true),
  434. false
  435. )
  436. );
  437. } else if (shared.isSSRSafeAttrName(attrName)) {
  438. openTag.push(
  439. compilerDom.createCallExpression(context.helper(SSR_RENDER_ATTR), [
  440. key,
  441. value
  442. ])
  443. );
  444. } else {
  445. context.onError(
  446. createSSRCompilerError(
  447. 65,
  448. key.loc
  449. )
  450. );
  451. }
  452. }
  453. } else {
  454. const args = [key, value];
  455. if (needTagForRuntime) {
  456. args.push(`"${node.tag}"`);
  457. }
  458. openTag.push(
  459. compilerDom.createCallExpression(
  460. context.helper(SSR_RENDER_DYNAMIC_ATTR),
  461. args
  462. )
  463. );
  464. }
  465. }
  466. }
  467. }
  468. } else {
  469. const name = prop.name;
  470. if (node.tag === "textarea" && name === "value" && prop.value) {
  471. rawChildrenMap.set(node, shared.escapeHtml(prop.value.content));
  472. } else if (!needMergeProps) {
  473. if (name === "key" || name === "ref") {
  474. continue;
  475. }
  476. if (name === "class" && prop.value) {
  477. staticClassBinding = JSON.stringify(prop.value.content);
  478. }
  479. openTag.push(
  480. ` ${prop.name}` + (prop.value ? `="${shared.escapeHtml(prop.value.content)}"` : ``)
  481. );
  482. }
  483. }
  484. }
  485. if (dynamicClassBinding && staticClassBinding) {
  486. mergeCall(dynamicClassBinding, staticClassBinding);
  487. removeStaticBinding(openTag, "class");
  488. }
  489. if (context.scopeId) {
  490. openTag.push(` ${context.scopeId}`);
  491. }
  492. node.ssrCodegenNode = compilerDom.createTemplateLiteral(openTag);
  493. };
  494. };
  495. function buildSSRProps(props, directives, context) {
  496. let mergePropsArgs = [];
  497. if (props) {
  498. if (props.type === 14) {
  499. mergePropsArgs = props.arguments;
  500. } else {
  501. mergePropsArgs.push(props);
  502. }
  503. }
  504. if (directives.length) {
  505. for (const dir of directives) {
  506. mergePropsArgs.push(
  507. compilerDom.createCallExpression(context.helper(SSR_GET_DIRECTIVE_PROPS), [
  508. `_ctx`,
  509. ...compilerDom.buildDirectiveArgs(dir, context).elements
  510. ])
  511. );
  512. }
  513. }
  514. return mergePropsArgs.length > 1 ? compilerDom.createCallExpression(context.helper(compilerDom.MERGE_PROPS), mergePropsArgs) : mergePropsArgs[0];
  515. }
  516. function isTrueFalseValue(prop) {
  517. if (prop.type === 7) {
  518. return prop.name === "bind" && prop.arg && compilerDom.isStaticExp(prop.arg) && (prop.arg.content === "true-value" || prop.arg.content === "false-value");
  519. } else {
  520. return prop.name === "true-value" || prop.name === "false-value";
  521. }
  522. }
  523. function isTextareaWithValue(node, prop) {
  524. return !!(node.tag === "textarea" && prop.name === "bind" && compilerDom.isStaticArgOf(prop.arg, "value"));
  525. }
  526. function mergeCall(call, arg) {
  527. const existing = call.arguments[0];
  528. if (existing.type === 17) {
  529. existing.elements.push(arg);
  530. } else {
  531. call.arguments[0] = compilerDom.createArrayExpression([existing, arg]);
  532. }
  533. }
  534. function removeStaticBinding(tag, binding) {
  535. const regExp = new RegExp(`^ ${binding}=".+"$`);
  536. const i = tag.findIndex((e) => typeof e === "string" && regExp.test(e));
  537. if (i > -1) {
  538. tag.splice(i, 1);
  539. }
  540. }
  541. function findVModel(node) {
  542. return node.props.find(
  543. (p) => p.type === 7 && p.name === "model" && p.exp
  544. );
  545. }
  546. function ssrProcessElement(node, context) {
  547. const isVoidTag = context.options.isVoidTag || shared.NO;
  548. const elementsToAdd = node.ssrCodegenNode.elements;
  549. for (let j = 0; j < elementsToAdd.length; j++) {
  550. context.pushStringPart(elementsToAdd[j]);
  551. }
  552. if (context.withSlotScopeId) {
  553. context.pushStringPart(compilerDom.createSimpleExpression(`_scopeId`, false));
  554. }
  555. context.pushStringPart(`>`);
  556. const rawChildren = rawChildrenMap.get(node);
  557. if (rawChildren) {
  558. context.pushStringPart(rawChildren);
  559. } else if (node.children.length) {
  560. processChildren(node, context);
  561. }
  562. if (!isVoidTag(node.tag)) {
  563. context.pushStringPart(`</${node.tag}>`);
  564. }
  565. }
  566. const wipMap$2 = /* @__PURE__ */ new WeakMap();
  567. function ssrTransformTransitionGroup(node, context) {
  568. return () => {
  569. const tag = compilerDom.findProp(node, "tag");
  570. if (tag) {
  571. const otherProps = node.props.filter((p) => p !== tag);
  572. const { props, directives } = compilerDom.buildProps(
  573. node,
  574. context,
  575. otherProps,
  576. true,
  577. false,
  578. true
  579. );
  580. let propsExp = null;
  581. if (props || directives.length) {
  582. propsExp = compilerDom.createCallExpression(context.helper(SSR_RENDER_ATTRS), [
  583. buildSSRProps(props, directives, context)
  584. ]);
  585. }
  586. wipMap$2.set(node, {
  587. tag,
  588. propsExp,
  589. scopeId: context.scopeId || null
  590. });
  591. }
  592. };
  593. }
  594. function ssrProcessTransitionGroup(node, context) {
  595. const entry = wipMap$2.get(node);
  596. if (entry) {
  597. const { tag, propsExp, scopeId } = entry;
  598. if (tag.type === 7) {
  599. context.pushStringPart(`<`);
  600. context.pushStringPart(tag.exp);
  601. if (propsExp) {
  602. context.pushStringPart(propsExp);
  603. }
  604. if (scopeId) {
  605. context.pushStringPart(` ${scopeId}`);
  606. }
  607. context.pushStringPart(`>`);
  608. processChildren(
  609. node,
  610. context,
  611. false,
  612. /**
  613. * TransitionGroup has the special runtime behavior of flattening and
  614. * concatenating all children into a single fragment (in order for them to
  615. * be patched using the same key map) so we need to account for that here
  616. * by disabling nested fragment wrappers from being generated.
  617. */
  618. true,
  619. /**
  620. * TransitionGroup filters out comment children at runtime and thus
  621. * doesn't expect comments to be present during hydration. We need to
  622. * account for that by disabling the empty comment that is otherwise
  623. * rendered for a falsy v-if that has no v-else specified. (#6715)
  624. */
  625. true
  626. );
  627. context.pushStringPart(`</`);
  628. context.pushStringPart(tag.exp);
  629. context.pushStringPart(`>`);
  630. } else {
  631. context.pushStringPart(`<${tag.value.content}`);
  632. if (propsExp) {
  633. context.pushStringPart(propsExp);
  634. }
  635. if (scopeId) {
  636. context.pushStringPart(` ${scopeId}`);
  637. }
  638. context.pushStringPart(`>`);
  639. processChildren(node, context, false, true);
  640. context.pushStringPart(`</${tag.value.content}>`);
  641. }
  642. } else {
  643. processChildren(node, context, true, true, true);
  644. }
  645. }
  646. const wipMap$1 = /* @__PURE__ */ new WeakMap();
  647. function ssrTransformTransition(node, context) {
  648. return () => {
  649. const appear = compilerDom.findProp(node, "appear", false, true);
  650. wipMap$1.set(node, !!appear);
  651. };
  652. }
  653. function ssrProcessTransition(node, context) {
  654. node.children = node.children.filter((c) => c.type !== 3);
  655. const appear = wipMap$1.get(node);
  656. if (appear) {
  657. context.pushStringPart(`<template>`);
  658. processChildren(node, context, false, true);
  659. context.pushStringPart(`</template>`);
  660. } else {
  661. processChildren(node, context, false, true);
  662. }
  663. }
  664. const wipMap = /* @__PURE__ */ new WeakMap();
  665. const WIP_SLOT = Symbol();
  666. const componentTypeMap = /* @__PURE__ */ new WeakMap();
  667. const ssrTransformComponent = (node, context) => {
  668. if (node.type !== 1 || node.tagType !== 1) {
  669. return;
  670. }
  671. const component = compilerDom.resolveComponentType(
  672. node,
  673. context,
  674. true
  675. /* ssr */
  676. );
  677. const isDynamicComponent = shared.isObject(component) && component.callee === compilerDom.RESOLVE_DYNAMIC_COMPONENT;
  678. componentTypeMap.set(node, component);
  679. if (shared.isSymbol(component)) {
  680. if (component === compilerDom.SUSPENSE) {
  681. return ssrTransformSuspense(node, context);
  682. } else if (component === compilerDom.TRANSITION_GROUP) {
  683. return ssrTransformTransitionGroup(node, context);
  684. } else if (component === compilerDom.TRANSITION) {
  685. return ssrTransformTransition(node);
  686. }
  687. return;
  688. }
  689. const vnodeBranches = [];
  690. const clonedNode = clone(node);
  691. return function ssrPostTransformComponent() {
  692. if (clonedNode.children.length) {
  693. compilerDom.buildSlots(clonedNode, context, (props, vFor, children) => {
  694. vnodeBranches.push(
  695. createVNodeSlotBranch(props, vFor, children, context)
  696. );
  697. return compilerDom.createFunctionExpression(void 0);
  698. });
  699. }
  700. let propsExp = `null`;
  701. if (node.props.length) {
  702. const { props, directives } = compilerDom.buildProps(
  703. node,
  704. context,
  705. void 0,
  706. true,
  707. isDynamicComponent
  708. );
  709. if (props || directives.length) {
  710. propsExp = buildSSRProps(props, directives, context);
  711. }
  712. }
  713. const wipEntries = [];
  714. wipMap.set(node, wipEntries);
  715. const buildSSRSlotFn = (props, _vForExp, children, loc) => {
  716. const param0 = props && compilerDom.stringifyExpression(props) || `_`;
  717. const fn = compilerDom.createFunctionExpression(
  718. [param0, `_push`, `_parent`, `_scopeId`],
  719. void 0,
  720. // no return, assign body later
  721. true,
  722. // newline
  723. true,
  724. // isSlot
  725. loc
  726. );
  727. wipEntries.push({
  728. type: WIP_SLOT,
  729. fn,
  730. children,
  731. // also collect the corresponding vnode branch built earlier
  732. vnodeBranch: vnodeBranches[wipEntries.length]
  733. });
  734. return fn;
  735. };
  736. const slots = node.children.length ? compilerDom.buildSlots(node, context, buildSSRSlotFn).slots : `null`;
  737. if (typeof component !== "string") {
  738. node.ssrCodegenNode = compilerDom.createCallExpression(
  739. context.helper(SSR_RENDER_VNODE),
  740. [
  741. `_push`,
  742. compilerDom.createCallExpression(context.helper(compilerDom.CREATE_VNODE), [
  743. component,
  744. propsExp,
  745. slots
  746. ]),
  747. `_parent`
  748. ]
  749. );
  750. } else {
  751. node.ssrCodegenNode = compilerDom.createCallExpression(
  752. context.helper(SSR_RENDER_COMPONENT),
  753. [component, propsExp, slots, `_parent`]
  754. );
  755. }
  756. };
  757. };
  758. function ssrProcessComponent(node, context, parent) {
  759. const component = componentTypeMap.get(node);
  760. if (!node.ssrCodegenNode) {
  761. if (component === compilerDom.TELEPORT) {
  762. return ssrProcessTeleport(node, context);
  763. } else if (component === compilerDom.SUSPENSE) {
  764. return ssrProcessSuspense(node, context);
  765. } else if (component === compilerDom.TRANSITION_GROUP) {
  766. return ssrProcessTransitionGroup(node, context);
  767. } else {
  768. if (parent.type === WIP_SLOT) {
  769. context.pushStringPart(``);
  770. }
  771. if (component === compilerDom.TRANSITION) {
  772. return ssrProcessTransition(node, context);
  773. }
  774. processChildren(node, context);
  775. }
  776. } else {
  777. const wipEntries = wipMap.get(node) || [];
  778. for (let i = 0; i < wipEntries.length; i++) {
  779. const { fn, vnodeBranch } = wipEntries[i];
  780. fn.body = compilerDom.createIfStatement(
  781. compilerDom.createSimpleExpression(`_push`, false),
  782. processChildrenAsStatement(
  783. wipEntries[i],
  784. context,
  785. false,
  786. true
  787. ),
  788. vnodeBranch
  789. );
  790. }
  791. if (context.withSlotScopeId) {
  792. node.ssrCodegenNode.arguments.push(`_scopeId`);
  793. }
  794. if (typeof component === "string") {
  795. context.pushStatement(
  796. compilerDom.createCallExpression(`_push`, [node.ssrCodegenNode])
  797. );
  798. } else {
  799. context.pushStatement(node.ssrCodegenNode);
  800. }
  801. }
  802. }
  803. const rawOptionsMap = /* @__PURE__ */ new WeakMap();
  804. const [baseNodeTransforms, baseDirectiveTransforms] = compilerDom.getBaseTransformPreset(true);
  805. const vnodeNodeTransforms = [...baseNodeTransforms, ...compilerDom.DOMNodeTransforms];
  806. const vnodeDirectiveTransforms = {
  807. ...baseDirectiveTransforms,
  808. ...compilerDom.DOMDirectiveTransforms
  809. };
  810. function createVNodeSlotBranch(slotProps, vFor, children, parentContext) {
  811. const rawOptions = rawOptionsMap.get(parentContext.root);
  812. const subOptions = {
  813. ...rawOptions,
  814. // overwrite with vnode-based transforms
  815. nodeTransforms: [
  816. ...vnodeNodeTransforms,
  817. ...rawOptions.nodeTransforms || []
  818. ],
  819. directiveTransforms: {
  820. ...vnodeDirectiveTransforms,
  821. ...rawOptions.directiveTransforms || {}
  822. }
  823. };
  824. const wrapperProps = [];
  825. if (slotProps) {
  826. wrapperProps.push({
  827. type: 7,
  828. name: "slot",
  829. exp: slotProps,
  830. arg: void 0,
  831. modifiers: [],
  832. loc: compilerDom.locStub
  833. });
  834. }
  835. if (vFor) {
  836. wrapperProps.push(shared.extend({}, vFor));
  837. }
  838. const wrapperNode = {
  839. type: 1,
  840. ns: 0,
  841. tag: "template",
  842. tagType: 3,
  843. props: wrapperProps,
  844. children,
  845. loc: compilerDom.locStub,
  846. codegenNode: void 0
  847. };
  848. subTransform(wrapperNode, subOptions, parentContext);
  849. return compilerDom.createReturnStatement(children);
  850. }
  851. function subTransform(node, options, parentContext) {
  852. const childRoot = compilerDom.createRoot([node]);
  853. const childContext = compilerDom.createTransformContext(childRoot, options);
  854. childContext.ssr = false;
  855. childContext.scopes = { ...parentContext.scopes };
  856. childContext.identifiers = { ...parentContext.identifiers };
  857. childContext.imports = parentContext.imports;
  858. compilerDom.traverseNode(childRoot, childContext);
  859. ["helpers", "components", "directives"].forEach((key) => {
  860. childContext[key].forEach((value, helperKey) => {
  861. if (key === "helpers") {
  862. const parentCount = parentContext.helpers.get(helperKey);
  863. if (parentCount === void 0) {
  864. parentContext.helpers.set(helperKey, value);
  865. } else {
  866. parentContext.helpers.set(helperKey, value + parentCount);
  867. }
  868. } else {
  869. parentContext[key].add(value);
  870. }
  871. });
  872. });
  873. }
  874. function clone(v) {
  875. if (shared.isArray(v)) {
  876. return v.map(clone);
  877. } else if (shared.isPlainObject(v)) {
  878. const res = {};
  879. for (const key in v) {
  880. res[key] = clone(v[key]);
  881. }
  882. return res;
  883. } else {
  884. return v;
  885. }
  886. }
  887. function ssrCodegenTransform(ast, options) {
  888. const context = createSSRTransformContext(ast, options);
  889. if (options.ssrCssVars) {
  890. const cssContext = compilerDom.createTransformContext(compilerDom.createRoot([]), options);
  891. const varsExp = compilerDom.processExpression(
  892. compilerDom.createSimpleExpression(options.ssrCssVars, false),
  893. cssContext
  894. );
  895. context.body.push(
  896. compilerDom.createCompoundExpression([`const _cssVars = { style: `, varsExp, `}`])
  897. );
  898. Array.from(cssContext.helpers.keys()).forEach((helper) => {
  899. ast.helpers.add(helper);
  900. });
  901. }
  902. const isFragment = ast.children.length > 1 && ast.children.some((c) => !compilerDom.isText(c));
  903. processChildren(ast, context, isFragment);
  904. ast.codegenNode = compilerDom.createBlockStatement(context.body);
  905. ast.ssrHelpers = Array.from(
  906. /* @__PURE__ */ new Set([
  907. ...Array.from(ast.helpers).filter((h) => h in ssrHelpers),
  908. ...context.helpers
  909. ])
  910. );
  911. ast.helpers = new Set(Array.from(ast.helpers).filter((h) => !(h in ssrHelpers)));
  912. }
  913. function createSSRTransformContext(root, options, helpers = /* @__PURE__ */ new Set(), withSlotScopeId = false) {
  914. const body = [];
  915. let currentString = null;
  916. return {
  917. root,
  918. options,
  919. body,
  920. helpers,
  921. withSlotScopeId,
  922. onError: options.onError || ((e) => {
  923. throw e;
  924. }),
  925. helper(name) {
  926. helpers.add(name);
  927. return name;
  928. },
  929. pushStringPart(part) {
  930. if (!currentString) {
  931. const currentCall = compilerDom.createCallExpression(`_push`);
  932. body.push(currentCall);
  933. currentString = compilerDom.createTemplateLiteral([]);
  934. currentCall.arguments.push(currentString);
  935. }
  936. const bufferedElements = currentString.elements;
  937. const lastItem = bufferedElements[bufferedElements.length - 1];
  938. if (shared.isString(part) && shared.isString(lastItem)) {
  939. bufferedElements[bufferedElements.length - 1] += part;
  940. } else {
  941. bufferedElements.push(part);
  942. }
  943. },
  944. pushStatement(statement) {
  945. currentString = null;
  946. body.push(statement);
  947. }
  948. };
  949. }
  950. function createChildContext(parent, withSlotScopeId = parent.withSlotScopeId) {
  951. return createSSRTransformContext(
  952. parent.root,
  953. parent.options,
  954. parent.helpers,
  955. withSlotScopeId
  956. );
  957. }
  958. function processChildren(parent, context, asFragment = false, disableNestedFragments = false, disableCommentAsIfAlternate = false) {
  959. if (asFragment) {
  960. context.pushStringPart(`<!--[-->`);
  961. }
  962. const { children } = parent;
  963. for (let i = 0; i < children.length; i++) {
  964. const child = children[i];
  965. switch (child.type) {
  966. case 1:
  967. switch (child.tagType) {
  968. case 0:
  969. ssrProcessElement(child, context);
  970. break;
  971. case 1:
  972. ssrProcessComponent(child, context, parent);
  973. break;
  974. case 2:
  975. ssrProcessSlotOutlet(child, context);
  976. break;
  977. case 3:
  978. break;
  979. default:
  980. context.onError(
  981. createSSRCompilerError(
  982. 67,
  983. child.loc
  984. )
  985. );
  986. const exhaustiveCheck2 = child;
  987. return exhaustiveCheck2;
  988. }
  989. break;
  990. case 2:
  991. context.pushStringPart(shared.escapeHtml(child.content));
  992. break;
  993. case 3:
  994. context.pushStringPart(`<!--${child.content}-->`);
  995. break;
  996. case 5:
  997. context.pushStringPart(
  998. compilerDom.createCallExpression(context.helper(SSR_INTERPOLATE), [
  999. child.content
  1000. ])
  1001. );
  1002. break;
  1003. case 9:
  1004. ssrProcessIf(
  1005. child,
  1006. context,
  1007. disableNestedFragments,
  1008. disableCommentAsIfAlternate
  1009. );
  1010. break;
  1011. case 11:
  1012. ssrProcessFor(child, context, disableNestedFragments);
  1013. break;
  1014. case 10:
  1015. break;
  1016. case 12:
  1017. case 8:
  1018. break;
  1019. default:
  1020. context.onError(
  1021. createSSRCompilerError(
  1022. 67,
  1023. child.loc
  1024. )
  1025. );
  1026. const exhaustiveCheck = child;
  1027. return exhaustiveCheck;
  1028. }
  1029. }
  1030. if (asFragment) {
  1031. context.pushStringPart(`<!--]-->`);
  1032. }
  1033. }
  1034. function processChildrenAsStatement(parent, parentContext, asFragment = false, withSlotScopeId = parentContext.withSlotScopeId) {
  1035. const childContext = createChildContext(parentContext, withSlotScopeId);
  1036. processChildren(parent, childContext, asFragment);
  1037. return compilerDom.createBlockStatement(childContext.body);
  1038. }
  1039. const ssrTransformModel = (dir, node, context) => {
  1040. const model = dir.exp;
  1041. function checkDuplicatedValue() {
  1042. const value = compilerDom.findProp(node, "value");
  1043. if (value) {
  1044. context.onError(
  1045. compilerDom.createDOMCompilerError(
  1046. 60,
  1047. value.loc
  1048. )
  1049. );
  1050. }
  1051. }
  1052. function processOption(plainNode) {
  1053. if (plainNode.tag === "option") {
  1054. if (plainNode.props.findIndex((p) => p.name === "selected") === -1) {
  1055. const value = findValueBinding(plainNode);
  1056. plainNode.ssrCodegenNode.elements.push(
  1057. compilerDom.createConditionalExpression(
  1058. compilerDom.createCallExpression(context.helper(SSR_INCLUDE_BOOLEAN_ATTR), [
  1059. compilerDom.createConditionalExpression(
  1060. compilerDom.createCallExpression(`Array.isArray`, [model]),
  1061. compilerDom.createCallExpression(context.helper(SSR_LOOSE_CONTAIN), [
  1062. model,
  1063. value
  1064. ]),
  1065. compilerDom.createCallExpression(context.helper(SSR_LOOSE_EQUAL), [
  1066. model,
  1067. value
  1068. ])
  1069. )
  1070. ]),
  1071. compilerDom.createSimpleExpression(" selected", true),
  1072. compilerDom.createSimpleExpression("", true),
  1073. false
  1074. )
  1075. );
  1076. }
  1077. } else if (plainNode.tag === "optgroup") {
  1078. plainNode.children.forEach(
  1079. (option) => processOption(option)
  1080. );
  1081. }
  1082. }
  1083. if (node.tagType === 0) {
  1084. const res = { props: [] };
  1085. const defaultProps = [
  1086. // default value binding for text type inputs
  1087. compilerDom.createObjectProperty(`value`, model)
  1088. ];
  1089. if (node.tag === "input") {
  1090. const type = compilerDom.findProp(node, "type");
  1091. if (type) {
  1092. const value = findValueBinding(node);
  1093. if (type.type === 7) {
  1094. res.ssrTagParts = [
  1095. compilerDom.createCallExpression(context.helper(SSR_RENDER_DYNAMIC_MODEL), [
  1096. type.exp,
  1097. model,
  1098. value
  1099. ])
  1100. ];
  1101. } else if (type.value) {
  1102. switch (type.value.content) {
  1103. case "radio":
  1104. res.props = [
  1105. compilerDom.createObjectProperty(
  1106. `checked`,
  1107. compilerDom.createCallExpression(context.helper(SSR_LOOSE_EQUAL), [
  1108. model,
  1109. value
  1110. ])
  1111. )
  1112. ];
  1113. break;
  1114. case "checkbox":
  1115. const trueValueBinding = compilerDom.findProp(node, "true-value");
  1116. if (trueValueBinding) {
  1117. const trueValue = trueValueBinding.type === 6 ? JSON.stringify(trueValueBinding.value.content) : trueValueBinding.exp;
  1118. res.props = [
  1119. compilerDom.createObjectProperty(
  1120. `checked`,
  1121. compilerDom.createCallExpression(context.helper(SSR_LOOSE_EQUAL), [
  1122. model,
  1123. trueValue
  1124. ])
  1125. )
  1126. ];
  1127. } else {
  1128. res.props = [
  1129. compilerDom.createObjectProperty(
  1130. `checked`,
  1131. compilerDom.createConditionalExpression(
  1132. compilerDom.createCallExpression(`Array.isArray`, [model]),
  1133. compilerDom.createCallExpression(context.helper(SSR_LOOSE_CONTAIN), [
  1134. model,
  1135. value
  1136. ]),
  1137. model
  1138. )
  1139. )
  1140. ];
  1141. }
  1142. break;
  1143. case "file":
  1144. context.onError(
  1145. compilerDom.createDOMCompilerError(
  1146. 59,
  1147. dir.loc
  1148. )
  1149. );
  1150. break;
  1151. default:
  1152. checkDuplicatedValue();
  1153. res.props = defaultProps;
  1154. break;
  1155. }
  1156. }
  1157. } else if (compilerDom.hasDynamicKeyVBind(node)) ; else {
  1158. checkDuplicatedValue();
  1159. res.props = defaultProps;
  1160. }
  1161. } else if (node.tag === "textarea") {
  1162. checkDuplicatedValue();
  1163. node.children = [compilerDom.createInterpolation(model, model.loc)];
  1164. } else if (node.tag === "select") {
  1165. node.children.forEach((child) => {
  1166. if (child.type === 1) {
  1167. processOption(child);
  1168. }
  1169. });
  1170. } else {
  1171. context.onError(
  1172. compilerDom.createDOMCompilerError(
  1173. 57,
  1174. dir.loc
  1175. )
  1176. );
  1177. }
  1178. return res;
  1179. } else {
  1180. return compilerDom.transformModel(dir, node, context);
  1181. }
  1182. };
  1183. function findValueBinding(node) {
  1184. const valueBinding = compilerDom.findProp(node, "value");
  1185. return valueBinding ? valueBinding.type === 7 ? valueBinding.exp : compilerDom.createSimpleExpression(valueBinding.value.content, true) : compilerDom.createSimpleExpression(`null`, false);
  1186. }
  1187. const ssrTransformShow = (dir, node, context) => {
  1188. if (!dir.exp) {
  1189. context.onError(
  1190. compilerDom.createDOMCompilerError(61)
  1191. );
  1192. }
  1193. return {
  1194. props: [
  1195. compilerDom.createObjectProperty(
  1196. `style`,
  1197. compilerDom.createConditionalExpression(
  1198. dir.exp,
  1199. compilerDom.createSimpleExpression(`null`, false),
  1200. compilerDom.createObjectExpression([
  1201. compilerDom.createObjectProperty(
  1202. `display`,
  1203. compilerDom.createSimpleExpression(`none`, true)
  1204. )
  1205. ]),
  1206. false
  1207. )
  1208. )
  1209. ]
  1210. };
  1211. };
  1212. const filterChild = (node) => node.children.filter((n) => n.type !== 3);
  1213. const hasSingleChild = (node) => filterChild(node).length === 1;
  1214. const ssrInjectFallthroughAttrs = (node, context) => {
  1215. if (node.type === 0) {
  1216. context.identifiers._attrs = 1;
  1217. }
  1218. if (node.type === 1 && node.tagType === 1 && (node.tag === "transition" || node.tag === "Transition" || node.tag === "KeepAlive" || node.tag === "keep-alive")) {
  1219. const rootChildren = filterChild(context.root);
  1220. if (rootChildren.length === 1 && rootChildren[0] === node) {
  1221. if (hasSingleChild(node)) {
  1222. injectFallthroughAttrs(node.children[0]);
  1223. }
  1224. return;
  1225. }
  1226. }
  1227. const parent = context.parent;
  1228. if (!parent || parent.type !== 0) {
  1229. return;
  1230. }
  1231. if (node.type === 10 && hasSingleChild(node)) {
  1232. let hasEncounteredIf = false;
  1233. for (const c of filterChild(parent)) {
  1234. if (c.type === 9 || c.type === 1 && compilerDom.findDir(c, "if")) {
  1235. if (hasEncounteredIf)
  1236. return;
  1237. hasEncounteredIf = true;
  1238. } else if (
  1239. // node before v-if
  1240. !hasEncounteredIf || // non else nodes
  1241. !(c.type === 1 && compilerDom.findDir(c, /else/, true))
  1242. ) {
  1243. return;
  1244. }
  1245. }
  1246. injectFallthroughAttrs(node.children[0]);
  1247. } else if (hasSingleChild(parent)) {
  1248. injectFallthroughAttrs(node);
  1249. }
  1250. };
  1251. function injectFallthroughAttrs(node) {
  1252. if (node.type === 1 && (node.tagType === 0 || node.tagType === 1) && !compilerDom.findDir(node, "for")) {
  1253. node.props.push({
  1254. type: 7,
  1255. name: "bind",
  1256. arg: void 0,
  1257. exp: compilerDom.createSimpleExpression(`_attrs`, false),
  1258. modifiers: [],
  1259. loc: compilerDom.locStub
  1260. });
  1261. }
  1262. }
  1263. const ssrInjectCssVars = (node, context) => {
  1264. if (!context.ssrCssVars) {
  1265. return;
  1266. }
  1267. if (node.type === 0) {
  1268. context.identifiers._cssVars = 1;
  1269. }
  1270. const parent = context.parent;
  1271. if (!parent || parent.type !== 0) {
  1272. return;
  1273. }
  1274. if (node.type === 10) {
  1275. for (const child of node.children) {
  1276. injectCssVars(child);
  1277. }
  1278. } else {
  1279. injectCssVars(node);
  1280. }
  1281. };
  1282. function injectCssVars(node) {
  1283. if (node.type === 1 && (node.tagType === 0 || node.tagType === 1) && !compilerDom.findDir(node, "for")) {
  1284. if (node.tag === "suspense" || node.tag === "Suspense") {
  1285. for (const child of node.children) {
  1286. if (child.type === 1 && child.tagType === 3) {
  1287. child.children.forEach(injectCssVars);
  1288. } else {
  1289. injectCssVars(child);
  1290. }
  1291. }
  1292. } else {
  1293. node.props.push({
  1294. type: 7,
  1295. name: "bind",
  1296. arg: void 0,
  1297. exp: compilerDom.createSimpleExpression(`_cssVars`, false),
  1298. modifiers: [],
  1299. loc: compilerDom.locStub
  1300. });
  1301. }
  1302. }
  1303. }
  1304. function compile(source, options = {}) {
  1305. options = {
  1306. ...options,
  1307. ...compilerDom.parserOptions,
  1308. ssr: true,
  1309. inSSR: true,
  1310. scopeId: options.mode === "function" ? null : options.scopeId,
  1311. // always prefix since compiler-ssr doesn't have size concern
  1312. prefixIdentifiers: true,
  1313. // disable optimizations that are unnecessary for ssr
  1314. cacheHandlers: false,
  1315. hoistStatic: false
  1316. };
  1317. const ast = typeof source === "string" ? compilerDom.baseParse(source, options) : source;
  1318. rawOptionsMap.set(ast, options);
  1319. compilerDom.transform(ast, {
  1320. ...options,
  1321. hoistStatic: false,
  1322. nodeTransforms: [
  1323. ssrTransformIf,
  1324. ssrTransformFor,
  1325. compilerDom.trackVForSlotScopes,
  1326. compilerDom.transformExpression,
  1327. ssrTransformSlotOutlet,
  1328. ssrInjectFallthroughAttrs,
  1329. ssrInjectCssVars,
  1330. ssrTransformElement,
  1331. ssrTransformComponent,
  1332. compilerDom.trackSlotScopes,
  1333. compilerDom.transformStyle,
  1334. ...options.nodeTransforms || []
  1335. // user transforms
  1336. ],
  1337. directiveTransforms: {
  1338. // reusing core v-bind
  1339. bind: compilerDom.transformBind,
  1340. on: compilerDom.transformOn,
  1341. // model and show have dedicated SSR handling
  1342. model: ssrTransformModel,
  1343. show: ssrTransformShow,
  1344. // the following are ignored during SSR
  1345. // on: noopDirectiveTransform,
  1346. cloak: compilerDom.noopDirectiveTransform,
  1347. once: compilerDom.noopDirectiveTransform,
  1348. memo: compilerDom.noopDirectiveTransform,
  1349. ...options.directiveTransforms || {}
  1350. // user transforms
  1351. }
  1352. });
  1353. ssrCodegenTransform(ast, options);
  1354. return compilerDom.generate(ast, options);
  1355. }
  1356. exports.compile = compile;