prettier-plugin-astro 0.1.0-next.1 → 0.1.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # prettier-plugin-astro
2
2
 
3
+ ## 0.1.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f244f83: Move from ava to vitest
8
+ - 67341e7: Format directives
9
+ - 0ed661a: Fix: Format expression
10
+ - 87b0508: Change prettier width from 180 to 80
11
+ - ace9861: Remove node 12 from ci
12
+
3
13
  ## 0.1.0-next.1
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -19,7 +19,7 @@ To get setup:
19
19
  1. `git clone git@github.com:withastro/prettier-plugin-astro.git`
20
20
  1. `yarn`
21
21
  1. `yarn build`
22
- 1. Run tests with [`yarn test`](https://github.com/avajs/ava/tree/main/docs)
22
+ 1. Run tests with [`yarn test`](https://vitest.dev/guide/)
23
23
  1. Lint code with `yarn lint`
24
24
  1. Format code with `yarn format`
25
25
  1. Run `yarn changeset` to add your changes to the changelog on version bump.
package/dist/index.js CHANGED
@@ -62,7 +62,22 @@ const blockElementsT = [
62
62
  'html',
63
63
  ];
64
64
  const blockElements = [...blockElementsT];
65
- const selfClosingTags = ['area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source', 'track', 'wbr'];
65
+ const selfClosingTags = [
66
+ 'area',
67
+ 'base',
68
+ 'br',
69
+ 'col',
70
+ 'embed',
71
+ 'hr',
72
+ 'img',
73
+ 'input',
74
+ 'link',
75
+ 'meta',
76
+ 'param',
77
+ 'source',
78
+ 'track',
79
+ 'wbr',
80
+ ];
66
81
 
67
82
  const serializeSync = makeSynchronous__default["default"](async (node) => {
68
83
  const dynamicImport = new Function('file', 'return import(file)');
@@ -83,12 +98,9 @@ const isEmptyTextNode = (node) => {
83
98
  const isPreTagContent = (path) => {
84
99
  if (!path || !path.stack || !Array.isArray(path.stack))
85
100
  return false;
86
- return path.stack.some((node) => (node.type === 'element' && node.name.toLowerCase() === 'pre') || (node.type === 'attribute' && !formattableAttributes.includes(node.name)));
101
+ return path.stack.some((node) => (node.type === 'element' && node.name.toLowerCase() === 'pre') ||
102
+ (node.type === 'attribute' && !formattableAttributes.includes(node.name)));
87
103
  };
88
- function getText(node, opts) {
89
- var _a, _b, _c;
90
- return opts.originalText.slice(((_a = node.position) === null || _a === void 0 ? void 0 : _a.start.offset) + 1, (_c = (_b = node.position) === null || _b === void 0 ? void 0 : _b.end) === null || _c === void 0 ? void 0 : _c.offset);
91
- }
92
104
  function getUnencodedText(node) {
93
105
  return node.value;
94
106
  }
@@ -118,10 +130,17 @@ function isNodeWithChildren(node) {
118
130
  return node && Array.isArray(node.children);
119
131
  }
120
132
  function isInlineElement(path, opts, node) {
121
- return node && node.type === 'element' && !isBlockElement(node, opts) && !isPreTagContent(path);
133
+ return (node &&
134
+ node.type === 'element' &&
135
+ !isBlockElement(node, opts) &&
136
+ !isPreTagContent(path));
122
137
  }
123
138
  function isBlockElement(node, opts) {
124
- return node && node.type === 'element' && opts.htmlWhitespaceSensitivity !== 'strict' && (opts.htmlWhitespaceSensitivity === 'ignore' || blockElements.includes(node.name));
139
+ return (node &&
140
+ node.type === 'element' &&
141
+ opts.htmlWhitespaceSensitivity !== 'strict' &&
142
+ (opts.htmlWhitespaceSensitivity === 'ignore' ||
143
+ blockElements.includes(node.name)));
125
144
  }
126
145
  function isTextNodeStartingWithLinebreak(node, nrLines = 1) {
127
146
  return startsWithLinebreak(getUnencodedText(node), nrLines);
@@ -191,7 +210,7 @@ function trimTextNodeRight(node) {
191
210
  }
192
211
  function manualDedent(input) {
193
212
  let result = '';
194
- for (var i = 0; i < input.length; i++) {
213
+ for (let i = 0; i < input.length; i++) {
195
214
  result += input[i]
196
215
  .replace(/\\\n[ \t]*/g, '')
197
216
  .replace(/\\`/g, '`');
@@ -202,9 +221,9 @@ function manualDedent(input) {
202
221
  const lines = result.split('\n');
203
222
  let mindent = null;
204
223
  lines.forEach(function (l) {
205
- var m = l.match(/^(\s+)\S+/);
224
+ const m = l.match(/^(\s+)\S+/);
206
225
  if (m) {
207
- var indent = m[1].length;
226
+ const indent = m[1].length;
208
227
  if (!mindent) {
209
228
  mindent = indent;
210
229
  }
@@ -215,7 +234,7 @@ function manualDedent(input) {
215
234
  });
216
235
  if (mindent !== null) {
217
236
  (function () {
218
- var m = mindent;
237
+ const m = mindent;
219
238
  result = lines
220
239
  .map(function (l) {
221
240
  return l[0] === ' ' ? l.slice(m) : l;
@@ -231,15 +250,21 @@ function manualDedent(input) {
231
250
  }
232
251
  function getMarkdownName(script) {
233
252
  let defaultMatch;
234
- while ((defaultMatch = /import\s+([^\s]+)\s+from\s+['|"|`]astro\/components\/Markdown\.astro/g.exec(script))) {
253
+ while ((defaultMatch =
254
+ /import\s+([^\s]+)\s+from\s+['|"|`]astro\/components\/Markdown\.astro/g.exec(script))) {
235
255
  if (defaultMatch[1])
236
256
  return new Set([defaultMatch[1].trim()]);
237
257
  }
238
258
  let namedMatch;
239
- while ((namedMatch = /import\s+\{\s*([^}]+)\}\s+from\s+['|"|`]astro\/components/g.exec(script))) {
259
+ while ((namedMatch =
260
+ /import\s+\{\s*([^}]+)\}\s+from\s+['|"|`]astro\/components/g.exec(script))) {
240
261
  if (namedMatch[1] && !namedMatch[1].includes('Markdown'))
241
262
  continue;
242
- const rawImports = namedMatch[1].trim().replace(/^\{/, '').replace(/\}$/, '').trim();
263
+ const rawImports = namedMatch[1]
264
+ .trim()
265
+ .replace(/^\{/, '')
266
+ .replace(/\}$/, '')
267
+ .trim();
243
268
  let importName = 'Markdown';
244
269
  for (const spec of rawImports.split(',')) {
245
270
  const [original, renamed] = spec.split(' as ').map((s) => s.trim());
@@ -256,7 +281,7 @@ function isTextNode(node) {
256
281
  return node.type === 'text';
257
282
  }
258
283
 
259
- const { builders: { breakParent, dedent, fill, group, hardline, indent, join, line, literalline, softline }, utils: { removeLines, stripTrailingHardline }, } = _doc__default["default"];
284
+ const { builders: { breakParent, dedent, fill, group, hardline, indent, join, line, literalline, softline, }, utils: { removeLines, stripTrailingHardline }, } = _doc__default["default"];
260
285
  function printComment(commentPath, options) {
261
286
  return commentPath;
262
287
  }
@@ -301,8 +326,9 @@ function print(path, opts, print) {
301
326
  else {
302
327
  isEmpty = node.children.every((child) => isEmptyTextNode(child));
303
328
  }
304
- const isSelfClosingTag = isEmpty && (node.type !== 'element' || selfClosingTags.indexOf(node.name) !== -1);
305
- const attributes = node.attributes ? path.map(print, 'attributes') : [];
329
+ const isSelfClosingTag = isEmpty &&
330
+ (node.type !== 'element' || selfClosingTags.indexOf(node.name) !== -1);
331
+ const attributes = path.map(print, 'attributes');
306
332
  if (isSelfClosingTag) {
307
333
  return group(['<', node.name, indent(group(attributes)), line, `/>`]);
308
334
  }
@@ -312,12 +338,15 @@ function print(path, opts, print) {
312
338
  const lastChild = children[children.length - 1];
313
339
  let noHugSeparatorStart = softline;
314
340
  let noHugSeparatorEnd = softline;
315
- let hugStart = shouldHugStart(node, opts);
316
- let hugEnd = shouldHugEnd(node, opts);
341
+ const hugStart = shouldHugStart(node, opts);
342
+ const hugEnd = shouldHugEnd(node, opts);
317
343
  let body;
318
344
  if (isEmpty) {
319
345
  body =
320
- isInlineElement(path, opts, node) && node.children.length && isTextNodeStartingWithWhitespace(node.children[0]) && !isPreTagContent(path)
346
+ isInlineElement(path, opts, node) &&
347
+ node.children.length &&
348
+ isTextNodeStartingWithWhitespace(node.children[0]) &&
349
+ !isPreTagContent(path)
321
350
  ? () => line
322
351
  :
323
352
  () => softline;
@@ -325,17 +354,37 @@ function print(path, opts, print) {
325
354
  else if (isPreTagContent(path)) {
326
355
  body = () => printRaw(node);
327
356
  }
328
- else if (isInlineElement(path, opts, node) && !isPreTagContent(path)) {
357
+ else if (isInlineElement(path, opts, node) &&
358
+ !isPreTagContent(path)) {
329
359
  body = () => path.map(print, 'children');
330
360
  }
331
361
  else {
332
362
  body = () => path.map(print, 'children');
333
363
  }
334
- const openingTag = ['<', node.name, indent(group([...attributes, hugStart ? '' : !isPreTagContent(path) && !opts.bracketSameLine ? dedent(softline) : '']))];
364
+ const openingTag = [
365
+ '<',
366
+ node.name,
367
+ indent(group([
368
+ ...attributes,
369
+ hugStart
370
+ ? ''
371
+ : !isPreTagContent(path) && !opts.bracketSameLine
372
+ ? dedent(softline)
373
+ : '',
374
+ ])),
375
+ ];
335
376
  if (hugStart && hugEnd) {
336
- const huggedContent = [softline, group(['>', body(), `</${node.name}`])];
377
+ const huggedContent = [
378
+ softline,
379
+ group(['>', body(), `</${node.name}`]),
380
+ ];
337
381
  const omitSoftlineBeforeClosingTag = isEmpty || canOmitSoftlineBeforeClosingTag(path, opts);
338
- return group([...openingTag, isEmpty ? group(huggedContent) : group(indent(huggedContent)), omitSoftlineBeforeClosingTag ? '' : softline, '>']);
382
+ return group([
383
+ ...openingTag,
384
+ isEmpty ? group(huggedContent) : group(indent(huggedContent)),
385
+ omitSoftlineBeforeClosingTag ? '' : softline,
386
+ '>',
387
+ ]);
339
388
  }
340
389
  if (isPreTagContent(path)) {
341
390
  noHugSeparatorStart = '';
@@ -344,7 +393,10 @@ function print(path, opts, print) {
344
393
  else {
345
394
  let didSetEndSeparator = false;
346
395
  if (!hugStart && firstChild && isTextNode(firstChild)) {
347
- if (isTextNodeStartingWithLinebreak(firstChild) && firstChild !== lastChild && (!isInlineElement(path, opts, node) || isTextNodeEndingWithWhitespace(lastChild))) {
396
+ if (isTextNodeStartingWithLinebreak(firstChild) &&
397
+ firstChild !== lastChild &&
398
+ (!isInlineElement(path, opts, node) ||
399
+ isTextNodeEndingWithWhitespace(lastChild))) {
348
400
  noHugSeparatorStart = hardline;
349
401
  noHugSeparatorEnd = hardline;
350
402
  didSetEndSeparator = true;
@@ -362,15 +414,32 @@ function print(path, opts, print) {
362
414
  }
363
415
  }
364
416
  if (hugStart) {
365
- return group([...openingTag, indent([softline, group(['>', body()])]), noHugSeparatorEnd, `</${node.name}>`]);
417
+ return group([
418
+ ...openingTag,
419
+ indent([softline, group(['>', body()])]),
420
+ noHugSeparatorEnd,
421
+ `</${node.name}>`,
422
+ ]);
366
423
  }
367
424
  if (hugEnd) {
368
- return group([...openingTag, '>', indent([noHugSeparatorStart, group([body(), `</${node.name}`])]), canOmitSoftlineBeforeClosingTag(path, opts) ? '' : softline, '>']);
425
+ return group([
426
+ ...openingTag,
427
+ '>',
428
+ indent([noHugSeparatorStart, group([body(), `</${node.name}`])]),
429
+ canOmitSoftlineBeforeClosingTag(path, opts) ? '' : softline,
430
+ '>',
431
+ ]);
369
432
  }
370
433
  if (isEmpty) {
371
434
  return group([...openingTag, '>', body(), `</${node.name}>`]);
372
435
  }
373
- return group([...openingTag, '>', indent([noHugSeparatorStart, body()]), noHugSeparatorEnd, `</${node.name}>`]);
436
+ return group([
437
+ ...openingTag,
438
+ '>',
439
+ indent([noHugSeparatorStart, body()]),
440
+ noHugSeparatorEnd,
441
+ `</${node.name}>`,
442
+ ]);
374
443
  }
375
444
  return '';
376
445
  }
@@ -393,9 +462,6 @@ function print(path, opts, print) {
393
462
  }
394
463
  return '';
395
464
  }
396
- case 'directive': {
397
- return [line, node.name];
398
- }
399
465
  case 'doctype': {
400
466
  return ['<!DOCTYPE html>', hardline];
401
467
  }
@@ -408,7 +474,7 @@ function print(path, opts, print) {
408
474
  }
409
475
  function splitTextToDocs(node) {
410
476
  const text = getUnencodedText(node);
411
- let textLines = text.split(/[\t\n\f\r ]+/);
477
+ const textLines = text.split(/[\t\n\f\r ]+/);
412
478
  let docs = join(line, textLines).parts.filter((s) => s !== '');
413
479
  if (startsWithLinebreak(text)) {
414
480
  docs[0] = hardline;
@@ -436,15 +502,14 @@ function embed(path, print, textToDoc, opts) {
436
502
  if (!node)
437
503
  return null;
438
504
  if (node.type === 'expression') {
439
- const textContent = getText(node, opts);
505
+ const textContent = printRaw(node);
440
506
  let content;
441
- if (node.children.length === 1) {
442
- content = textContent;
443
- }
444
- else {
445
- content = textToDoc(textContent, { ...opts, parser: 'babel-ts', semi: false });
446
- content = stripTrailingHardline(content);
447
- }
507
+ content = textToDoc(forceIntoExpression(textContent), {
508
+ ...opts,
509
+ parser: expressionParser,
510
+ semi: false,
511
+ });
512
+ content = stripTrailingHardline(content);
448
513
  return [
449
514
  '{',
450
515
  content,
@@ -454,7 +519,11 @@ function embed(path, print, textToDoc, opts) {
454
519
  if (node.type === 'attribute' && node.kind === 'expression') {
455
520
  const value = node.value.trim();
456
521
  const name = node.name.trim();
457
- let attrNodeValue = textToDoc(forceIntoExpression(value), { ...opts, parser: expressionParser, semi: false });
522
+ let attrNodeValue = textToDoc(forceIntoExpression(value), {
523
+ ...opts,
524
+ parser: expressionParser,
525
+ semi: false,
526
+ });
458
527
  attrNodeValue = stripTrailingHardline(attrNodeValue);
459
528
  if (name === value && opts.astroAllowShorthand) {
460
529
  return [line, '{', attrNodeValue, '}'];
@@ -463,18 +532,40 @@ function embed(path, print, textToDoc, opts) {
463
532
  }
464
533
  if (node.type === 'frontmatter') {
465
534
  markdownComponentName = getMarkdownName(node.value);
466
- return [group(['---', hardline, textToDoc(node.value, { ...opts, parser: 'typescript' }), '---', hardline]), hardline];
535
+ return [
536
+ group([
537
+ '---',
538
+ hardline,
539
+ textToDoc(node.value, { ...opts, parser: 'typescript' }),
540
+ '---',
541
+ hardline,
542
+ ]),
543
+ hardline,
544
+ ];
467
545
  }
468
546
  if (node.type === 'element' && node.name === 'script') {
469
547
  const scriptContent = node.children[0].value;
470
- let formatttedScript = textToDoc(scriptContent, { ...opts, parser: 'typescript' });
548
+ let formatttedScript = textToDoc(scriptContent, {
549
+ ...opts,
550
+ parser: 'typescript',
551
+ });
471
552
  formatttedScript = stripTrailingHardline(formatttedScript);
472
- const attributes = node.attributes ? path.map(print, 'attributes') : [];
473
- const openingTag = group(['<script', indent(group(attributes)), softline, '>']);
474
- return [openingTag, indent([hardline, formatttedScript]), hardline, '</script>'];
553
+ const attributes = path.map(print, 'attributes');
554
+ const openingTag = group([
555
+ '<script',
556
+ indent(group(attributes)),
557
+ softline,
558
+ '>',
559
+ ]);
560
+ return [
561
+ openingTag,
562
+ indent([hardline, formatttedScript]),
563
+ hardline,
564
+ '</script>',
565
+ ];
475
566
  }
476
567
  if (node.type === 'element' && node.name === 'style') {
477
- let styleTagContent = node.children[0].value.trim();
568
+ const styleTagContent = node.children[0].value.trim();
478
569
  const supportedStyleLangValues = ['css', 'scss', 'sass'];
479
570
  let parserLang = 'css';
480
571
  if (node.attributes) {
@@ -488,13 +579,24 @@ function embed(path, print, textToDoc, opts) {
488
579
  switch (parserLang) {
489
580
  case 'css':
490
581
  case 'scss': {
491
- let formattedStyles = textToDoc(styleTagContent, { ...opts, parser: parserLang });
582
+ let formattedStyles = textToDoc(styleTagContent, {
583
+ ...opts,
584
+ parser: parserLang,
585
+ });
492
586
  formattedStyles = stripTrailingHardline(formattedStyles);
493
- const attributes = node.attributes ? path.map(print, 'attributes') : [];
494
- const directives = node.directives ? path.map(print, 'directives') : [];
495
- const attrAndDirectives = directives.concat(attributes);
496
- const openingTag = group(['<style', indent(group(attrAndDirectives)), softline, '>']);
497
- return [openingTag, indent([hardline, formattedStyles]), hardline, '</style>'];
587
+ const attributes = path.map(print, 'attributes');
588
+ const openingTag = group([
589
+ '<style',
590
+ indent(group(attributes)),
591
+ softline,
592
+ '>',
593
+ ]);
594
+ return [
595
+ openingTag,
596
+ indent([hardline, formattedStyles]),
597
+ hardline,
598
+ '</style>',
599
+ ];
498
600
  }
499
601
  case 'sass': {
500
602
  const lineEnding = opts.endOfLine.toUpperCase() === 'CRLF' ? 'CRLF' : 'LF';
@@ -504,11 +606,21 @@ function embed(path, print, textToDoc, opts) {
504
606
  lineEnding,
505
607
  };
506
608
  const { result: raw } = manualDedent(styleTagContent);
507
- let formattedSassIndented = sassFormatter.SassFormatter.Format(raw, sassOptions).trim();
609
+ const formattedSassIndented = sassFormatter.SassFormatter.Format(raw, sassOptions).trim();
508
610
  const formattedSass = join(hardline, formattedSassIndented.split('\n'));
509
- const attributes = node.attributes ? path.map(print, 'attributes') : [];
510
- const openingTag = group(['<style', indent(group(attributes)), softline, '>']);
511
- return [openingTag, indent(group([hardline, formattedSass])), hardline, '</style>'];
611
+ const attributes = path.map(print, 'attributes');
612
+ const openingTag = group([
613
+ '<style',
614
+ indent(group(attributes)),
615
+ softline,
616
+ '>',
617
+ ]);
618
+ return [
619
+ openingTag,
620
+ indent(group([hardline, formattedSass])),
621
+ hardline,
622
+ '</style>',
623
+ ];
512
624
  }
513
625
  }
514
626
  }
@@ -517,11 +629,24 @@ function embed(path, print, textToDoc, opts) {
517
629
  content = content.replace(/\r\n/g, '\n');
518
630
  const contentArr = content.split('\n').map((s) => s.trimStart());
519
631
  content = contentArr.join('\n');
520
- let formatttedMarkdown = textToDoc(content, { ...opts, parser: 'markdown' });
632
+ let formatttedMarkdown = textToDoc(content, {
633
+ ...opts,
634
+ parser: 'markdown',
635
+ });
521
636
  formatttedMarkdown = stripTrailingHardline(formatttedMarkdown);
522
637
  const attributes = path.map(print, 'attributes');
523
- const openingTag = group([`<${node.name}`, indent(group(attributes)), softline, '>']);
524
- return [openingTag, indent(group([hardline, formatttedMarkdown])), hardline, `</${node.name}>`];
638
+ const openingTag = group([
639
+ `<${node.name}`,
640
+ indent(group(attributes)),
641
+ softline,
642
+ '>',
643
+ ]);
644
+ return [
645
+ openingTag,
646
+ indent(group([hardline, formatttedMarkdown])),
647
+ hardline,
648
+ `</${node.name}>`,
649
+ ];
525
650
  }
526
651
  return null;
527
652
  }
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/parse.ts","../src/nodes.ts","../src/syncUtils.ts","../src/utils.ts","../src/printer.ts","../src/options.ts","../src/index.ts"],"sourcesContent":["import makeSynchronous from 'make-synchronous';\n\nconst parseSync = makeSynchronous(async (source: string) => {\n const dynamicImport = new Function('file', 'return import(file)');\n const { parse } = await dynamicImport('@astrojs/compiler');\n try {\n const { ast } = await parse(source);\n return ast;\n } catch (e) {\n console.error(e);\n }\n});\n\nconst parse = (text: string) => parseSync(text);\n\nexport default parse;\n","import {\n Node,\n AttributeNode,\n DirectiveNode,\n RootNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n FragmentNode,\n} from '@astrojs/compiler/types';\n\n// MISSING ATTRIBUTE NODE FROM THE NODE TYPE\n\nexport interface NodeWithText {\n value: string;\n}\n\n// export interface Ast {\n// html: anyNode;\n// css: StyleNode[];\n// module: ScriptNode;\n// meta: {\n// features: number;\n// };\n// }\n\n// export interface BaseNode {\n// start: number;\n// end: number;\n// type: string;\n// children?: anyNode[];\n// // TODO: ADD BETTER TYPE\n// [prop_name: string]: any;\n// }\n\n// export type attributeValue = TextNode[] | AttributeShorthandNode[] | MustacheTagNode[] | true;\n\nexport interface NodeWithChildren {\n // children: anyNode[];\n children: Node[];\n}\n\n// export interface NodeWithText {\n// data: string;\n// raw?: string;\n// }\n\n// export interface FragmentNode extends BaseNode {\n// type: 'Fragment';\n// children: anyNode[];\n// }\n\n// export interface TextNode extends BaseNode {\n// type: 'Text';\n// data: string;\n// raw: string;\n// }\n\n// export interface CodeFenceNode extends BaseNode {\n// type: 'CodeFence';\n// metadata: string;\n// data: string;\n// raw: string;\n// }\n\n// export interface CodeSpanNode extends BaseNode {\n// type: 'CodeSpan';\n// metadata: string;\n// data: string;\n// raw: string;\n// }\n\n// export interface SpreadNode extends BaseNode {\n// type: 'Spread';\n// expression: ExpressionNode;\n// }\n\n// export interface ExpressionNode {\n// type: 'Expression';\n// start: number;\n// end: number;\n// codeChunks: string[];\n// children: anyNode[];\n// }\n\n// export interface ScriptNode extends BaseNode {\n// type: 'Script';\n// context: 'runtime' | 'setup';\n// content: string;\n// }\n\n// export interface StyleNode extends BaseNode {\n// type: 'Style';\n// // TODO: ADD BETTER TYPE\n// attributes: any[];\n// content: {\n// start: number;\n// end: number;\n// styles: string;\n// };\n// }\n\n// export interface AttributeNode extends BaseNode {\n// type: 'Attribute';\n// name: string;\n// value: attributeValue;\n// }\n\n// export interface AttributeShorthandNode extends BaseNode {\n// type: 'AttributeShorthand';\n// expression: IdentifierNode;\n// }\n\n// export interface IdentifierNode extends BaseNode {\n// type: 'Identifier';\n// name: string;\n// }\n\n// export interface MustacheTagNode extends BaseNode {\n// type: 'MustacheTag';\n// expression: ExpressionNode;\n// }\n\n// export interface SlotNode extends BaseNode {\n// type: 'Slot';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\n// export interface CommentNode extends BaseNode {\n// type: 'Comment';\n// data: string;\n// name?: string;\n// leading?: boolean;\n// trailing?: boolean;\n// printed?: boolean;\n// nodeDescription?: string;\n// }\n\n// export interface ElementNode extends BaseNode {\n// type: 'Element';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\n// export interface InlineComponentNode extends BaseNode {\n// type: 'InlineComponent';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\nexport interface BlockElementNode extends ElementNode {\n name: typeof blockElementsT[number];\n}\n\nexport interface InlineElementNode extends ElementNode {\n name: typeof inlineElementsT[number];\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements#Elements\nconst blockElementsT = [\n 'address',\n 'article',\n 'aside',\n 'blockquote',\n 'details',\n 'dialog',\n 'dd',\n 'div',\n 'dl',\n 'dt',\n 'fieldset',\n 'figcaption',\n 'figure',\n 'footer',\n 'form',\n 'h1',\n 'h2',\n 'h3',\n 'h4',\n 'h5',\n 'h6',\n 'header',\n 'hgroup',\n 'hr',\n 'li',\n 'main',\n 'nav',\n 'ol',\n 'p',\n 'pre',\n 'section',\n 'table',\n 'ul',\n // TODO: WIP\n 'title',\n 'html',\n] as const;\n// https://github.com/microsoft/TypeScript/issues/31018\nexport const blockElements: string[] = [...blockElementsT];\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Inline_elements\nconst inlineElementsT = [\n 'a',\n 'abbr',\n 'acronym',\n 'audio',\n 'b',\n 'bdi',\n 'bdo',\n 'big',\n 'br',\n 'button',\n 'canvas',\n 'cite',\n 'code',\n 'data',\n 'datalist',\n 'del',\n 'dfn',\n 'em',\n 'embed',\n 'i',\n 'iframe',\n 'img',\n 'input',\n 'ins',\n 'kbd',\n 'label',\n 'map',\n 'mark',\n 'meter',\n 'noscript',\n 'object',\n 'output',\n 'picture',\n 'progress',\n 'q',\n 'ruby',\n 's',\n 'samp',\n 'script',\n 'select',\n 'slot',\n 'small',\n 'span',\n 'strong',\n 'sub',\n 'sup',\n 'svg',\n 'template',\n 'textarea',\n 'time',\n 'u',\n 'tt',\n 'var',\n 'video',\n 'wbr',\n] as const;\n// https://github.com/microsoft/TypeScript/issues/31018\nexport const inlineElements: string[] = [...inlineElementsT];\n\n// @see http://xahlee.info/js/html5_non-closing_tag.html\nexport const selfClosingTags = ['area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source', 'track', 'wbr'];\n\nexport type anyNode =\n | RootNode\n | AttributeNode\n | DirectiveNode\n | ElementNode\n | ComponentNode\n | CustomElementNode\n | ExpressionNode\n | TextNode\n | DoctypeNode\n | CommentNode\n | FragmentNode\n | FrontmatterNode;\n\nexport type {\n AttributeNode,\n Node,\n RootNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n FragmentNode,\n} from '@astrojs/compiler/types';\n","import makeSynchronous from 'make-synchronous';\nimport { Node } from './nodes';\n\nconst serializeSync = makeSynchronous(async (node: Node) => {\n const dynamicImport = new Function('file', 'return import(file)');\n const { serialize } = await dynamicImport('@astrojs/compiler/utils');\n try {\n return await serialize(node);\n } catch (e) {\n console.error(e);\n }\n});\n\nexport const serialize = (node: Node): string => serializeSync(node);\n","import { AstPath as AstP, doc, Doc, ParserOptions as ParserOpts, util } from 'prettier';\n\nimport {\n anyNode,\n Node,\n RootNode,\n AttributeNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n NodeWithText,\n blockElements,\n // attributeValue,\n BlockElementNode,\n InlineElementNode,\n // MustacheTagNode,\n NodeWithChildren,\n // NodeWithText,\n // TextNode,\n} from './nodes';\n\nimport { serialize } from './syncUtils';\n\n// import makeSynchronous from 'make-synchronous';\n\ntype ParserOptions = ParserOpts<anyNode>;\ntype AstPath = AstP<anyNode>;\n\n/**\n * HTML attributes that we may safely reformat (trim whitespace, add or remove newlines)\n */\nexport const formattableAttributes: string[] = [\n // None at the moment\n // Prettier HTML does not format attributes at all\n // and to be consistent we leave this array empty for now\n];\n\n// const rootNodeKeys = new Set(['html', 'css', 'module']);\n\n// const isSync = makeSynchronous(async (node: anyNode) => {\n// const dynamicImport = new Function('file', 'return import(file)');\n// const { is } = await dynamicImport('@astrojs/compiler/utils');\n// try {\n// return await is(node);\n// } catch (e) {\n// console.error(e);\n// }\n// });\n\n// export const is = (node: anyNode) => isSync(node);\n\nexport const isRootNode = (node: anyNode): node is RootNode => node.type === 'root';\n\nexport const isEmptyTextNode = (node: Node): boolean => {\n return !!node && node.type === 'text' && getUnencodedText(node).trim() === '';\n};\n\nexport const isPreTagContent = (path: AstPath): boolean => {\n if (!path || !path.stack || !Array.isArray(path.stack)) return false;\n return path.stack.some(\n (node: anyNode) => (node.type === 'element' && node.name.toLowerCase() === 'pre') || (node.type === 'attribute' && !formattableAttributes.includes(node.name))\n );\n};\n\nexport function isLoneMustacheTag(node: AttributeNode): boolean {\n // export function isLoneMustacheTag(node: AttributeNode): node is [MustacheTagNode] {\n return node.kind === 'expression';\n // return node !== true && node.length === 1 && node[0].type === 'MustacheTag';\n}\n\n// function isAttributeShorthand(node: attributeValue): node is [AttributeShorthandNode] {\n// return node !== true && node.length === 1 && node[0].type === 'AttributeShorthand';\n// }\n\n/**\n * True if node is of type `{a}` or `a={a}`\n */\nexport function isOrCanBeConvertedToShorthand(node: AttributeNode, opts: ParserOptions): boolean {\n if (!opts.astroAllowShorthand) return false;\n if (node.kind === 'shorthand') {\n return true;\n }\n // if (isAttributeShorthand(node.value)) {\n // return true;\n // }\n\n if (node.value.trim() === node.name.trim()) {\n return true;\n }\n\n // if (isLoneMustacheTag(node.value)) {\n // const expression = node.value[0].expression;\n // return expression.codeChunks[0].trim() === node.name;\n // // return (expression.type === 'Identifier' && expression.name === node.name) || (expression.type === 'Expression' && expression.codeChunks[0] === node.name);\n // }\n\n return false;\n}\n\n/**\n * True if node is of type `{a}` and astroAllowShorthand is false\n */\nexport function isShorthandAndMustBeConvertedToBinaryExpression(node: AttributeNode, opts: ParserOptions): boolean {\n if (opts.astroAllowShorthand) return false;\n if (node.type === 'attribute' && node.kind === 'shorthand') {\n return true;\n }\n // if (isAttributeShorthand(node.value)) {\n // return true;\n // }\n return false;\n}\n\n// export function flatten<T>(arrays: T[][]): T[] {\n// return ([] as T[]).concat.apply([], arrays);\n// }\n\n// TODO: TEST IF IT'S GETTING THE CORRECT TEXT\nexport function getText(node: anyNode, opts: ParserOptions): string {\n return opts.originalText.slice(node.position?.start.offset! + 1, node.position?.end?.offset);\n // return opts.originalText.slice(opts.locStart(node), opts.locEnd(node));\n}\n\nexport function getUnencodedText(node: NodeWithText): string {\n return node.value;\n}\n\n// export function replaceEndOfLineWith(text: string, replacement: doc.builders.DocCommand): Doc[] {\n// const parts = [];\n// for (const part of text.split('\\n')) {\n// if (parts.length > 0) {\n// parts.push(replacement);\n// }\n// if (part.endsWith('\\r')) {\n// parts.push(part.slice(0, -1));\n// } else {\n// parts.push(part);\n// }\n// }\n// return parts;\n// }\n\n/**\n * Returns the content of the node\n */\nexport function printRaw(node: anyNode, stripLeadingAndTrailingNewline: boolean = false): string {\n if (!isNodeWithChildren(node)) {\n return '';\n }\n\n if (node.children.length === 0) {\n return '';\n }\n\n let raw = node.children.reduce((prev, curr) => prev + serialize(curr), '');\n\n if (!stripLeadingAndTrailingNewline) {\n return raw;\n }\n\n if (startsWithLinebreak(raw)) {\n raw = raw.substring(raw.indexOf('\\n') + 1);\n }\n if (endsWithLinebreak(raw)) {\n raw = raw.substring(0, raw.lastIndexOf('\\n'));\n if (raw.charAt(raw.length - 1) === '\\r') {\n raw = raw.substring(0, raw.length - 1);\n }\n }\n\n return raw;\n}\n\nexport function isNodeWithChildren(node: anyNode): node is anyNode & NodeWithChildren {\n return node && Array.isArray(node.children);\n}\n\nexport function isInlineElement(path: AstPath, opts: ParserOptions, node: anyNode): node is InlineElementNode {\n return node && node.type === 'element' && !isBlockElement(node, opts) && !isPreTagContent(path);\n}\n\nexport function isBlockElement(node: anyNode, opts: ParserOptions): node is BlockElementNode {\n return node && node.type === 'element' && opts.htmlWhitespaceSensitivity !== 'strict' && (opts.htmlWhitespaceSensitivity === 'ignore' || blockElements.includes(node.name));\n}\n\nexport function isTextNodeStartingWithLinebreak(node: TextNode, nrLines: number = 1): node is TextNode {\n return startsWithLinebreak(getUnencodedText(node), nrLines);\n // return node.type === 'Text' && startsWithLinebreak(getUnencodedText(node), nrLines);\n}\n\nexport function startsWithLinebreak(text: string, nrLines: number = 1): boolean {\n return new RegExp(`^([\\\\t\\\\f\\\\r ]*\\\\n){${nrLines}}`).test(text);\n}\n\n// export function isTextNodeEndingWithLinebreak(node: TextNode, nrLines: number = 1) {\n// return node.type === 'text' && endsWithLinebreak(getUnencodedText(node), nrLines);\n// }\n\nexport function endsWithLinebreak(text: string, nrLines: number = 1): boolean {\n return new RegExp(`(\\\\n[\\\\t\\\\f\\\\r ]*){${nrLines}}$`).test(text);\n}\n\nexport function isTextNodeStartingWithWhitespace(node: Node): node is TextNode {\n return node.type === 'text' && /^\\s/.test(getUnencodedText(node));\n}\n\nexport function isTextNodeEndingWithWhitespace(node: Node): node is TextNode {\n return node.type === 'text' && /\\s$/.test(getUnencodedText(node));\n}\n\nexport function forceIntoExpression(statement: string): string {\n // note the trailing newline: if the statement ends in a // comment,\n // we can't add the closing bracket right afterwards\n return `(${statement}\\n)`;\n}\n\n/**\n * Check if given node's starg tag should hug its first child. This is the case for inline elements when there's\n * no whitespace between the `>` and the first child.\n */\nexport function shouldHugStart(node: anyNode, opts: ParserOptions): boolean {\n if (isBlockElement(node, opts)) {\n return false;\n }\n\n if (!isNodeWithChildren(node)) {\n return false;\n }\n\n const children = node.children;\n if (children.length === 0) {\n return true;\n }\n\n const firstChild = children[0];\n return !isTextNodeStartingWithWhitespace(firstChild);\n}\n\n/**\n * Check if given node's end tag should hug its last child. This is the case for inline elements when there's\n * no whitespace between the last child and the `</`.\n */\nexport function shouldHugEnd(node: anyNode, opts: ParserOptions): boolean {\n if (isBlockElement(node, opts)) {\n return false;\n }\n\n if (!isNodeWithChildren(node)) {\n return false;\n }\n\n const children = node.children;\n if (children.length === 0) {\n return true;\n }\n\n return false;\n\n // TODO: WIP\n // const lastChild = children[children.length - 1];\n // return !isTextNodeEndingWithWhitespace(lastChild);\n}\n\n/**\n * Returns true if the softline between `</tagName` and `>` can be omitted.\n */\nexport function canOmitSoftlineBeforeClosingTag(path: AstPath, opts: ParserOptions): boolean {\n return isLastChildWithinParentBlockElement(path, opts);\n // return !hugsStartOfNextNode(node, options) || isLastChildWithinParentBlockElement(path, options);\n // return !options.svelteBracketNewLine && (!hugsStartOfNextNode(node, options) || isLastChildWithinParentBlockElement(path, options));\n}\n\n/**\n * Return true if given node does not hug the next node, meaning there's whitespace\n * or the end of the doc afterwards.\n */\n// function hugsStartOfNextNode(node: anyNode, opts: ParserOptions): boolean {\n// if (node.end === opts.originalText.length) {\n// // end of document\n// return false;\n// }\n\n// return !opts.originalText.substring(node.end).match(/^\\s/);\n// }\n\nfunction getChildren(node: anyNode): Node[] {\n return isNodeWithChildren(node) ? node.children : [];\n}\n\nfunction isLastChildWithinParentBlockElement(path: AstPath, opts: ParserOptions): boolean {\n const parent = path.getParentNode();\n if (!parent || !isBlockElement(parent, opts)) {\n return false;\n }\n\n const children = getChildren(parent);\n const lastChild = children[children.length - 1];\n return lastChild === path.getNode();\n}\n\nexport function trimTextNodeLeft(node: TextNode): void {\n node.value = node.value && node.value.trimStart();\n}\n\nexport function trimTextNodeRight(node: TextNode): void {\n node.value = node.value && node.value.trimEnd();\n}\n\n// export function findLastIndex<T>(isMatch: (item: T, idx: number) => boolean, items: T[]) {\n// for (let i = items.length - 1; i >= 0; i--) {\n// if (isMatch(items[i], i)) {\n// return i;\n// }\n// }\n\n// return -1;\n// }\n\n/**\n * Remove all leading whitespace up until the first non-empty text node,\n * and all trailing whitepsace from the last non-empty text node onwards.\n */\n// export function trimChildren(children: anyNode[]) {\n// // export function trimChildren(children: anyNode[], path: AstPath<anyNode>) {\n// let firstNonEmptyNode = children.findIndex((n) => !isEmptyTextNode(n));\n// // let firstNonEmptyNode = children.findIndex((n) => !isEmptyTextNode(n) && !doesEmbedStartAfterNode(n, path));\n// firstNonEmptyNode = firstNonEmptyNode === -1 ? children.length - 1 : firstNonEmptyNode;\n\n// let lastNonEmptyNode = findLastIndex((n, idx) => {\n// // Last node is ok to end at the start of an embedded region,\n// // if it's not a comment (which should stick to the region)\n// return !isEmptyTextNode(n);\n// // return !isEmptyTextNode(n) && ((idx === children.length - 1 && n.type !== 'Comment') || !doesEmbedStartAfterNode(n, path));\n// }, children);\n// lastNonEmptyNode = lastNonEmptyNode === -1 ? 0 : lastNonEmptyNode;\n\n// for (let i = 0; i <= firstNonEmptyNode; i++) {\n// const n = children[i];\n// if (isTextNode(n)) {\n// trimTextNodeLeft(n);\n// }\n// }\n\n// for (let i = children.length - 1; i >= lastNonEmptyNode; i--) {\n// const n = children[i];\n// if (isTextNode(n)) {\n// trimTextNodeRight(n);\n// }\n// }\n// }\n\n/**\n * Returns siblings, that is, the children of the parent.\n */\n// export function getSiblings(path: AstPath): anyNode[] {\n// let parent = path.getParentNode();\n// if (!parent) return [];\n\n// if (isRootNode(parent)) {\n// parent = parent.html;\n// }\n\n// return getChildren(parent);\n// }\n\n/**\n * Did there use to be any embedded object (that has been snipped out of the AST to be moved)\n * at the specified position?\n */\n// function doesEmbedStartAfterNode(node: anyNode, path: AstPath<anyNode>, siblings = getSiblings(path)): boolean {\n// // If node is not at the top level of html, an embed cannot start after it,\n// // because embeds are only at the top level\n// if (!isNodeTopLevelHTML(node, path)) {\n// return false;\n// }\n\n// const position = node.end;\n// const root = path.stack[0];\n\n// const embeds = [root.module, root.html, root.css];\n\n// const nextNode = siblings[siblings.indexOf(node) + 1];\n// return embeds.find((n) => n && n.start >= position && (!nextNode || n.end <= nextNode.start));\n// }\n\n// function isNodeTopLevelHTML(node: anyNode, path: AstPath<anyNode>) {\n// const root = path.stack[0];\n// return !!root.html && !!root.html.children && root.html.children.includes(node);\n// }\n\n/**\n * Check if doc is a hardline.\n * We can't just rely on a simple equality check because the doc could be created with another\n * runtime version of prettier than what we import, making a reference check fail.\n */\n\n// function isHardline(docToCheck: Doc): boolean {\n// return docToCheck === doc.builders.hardline || deepEqual(docToCheck, doc.builders.hardline);\n// }\n\n/**\n * Simple deep equal function which suits our needs. Only works properly on POJOs without cyclic deps.\n */\n// function deepEqual(x: any, y: any): boolean {\n// if (x === y) {\n// return true;\n// } else if (typeof x == 'object' && x != null && typeof y == 'object' && y != null) {\n// if (Object.keys(x).length != Object.keys(y).length) return false;\n\n// for (var prop in x) {\n// if (Object.prototype.hasOwnProperty.call(y, prop)) {\n// if (!deepEqual(x[prop], y[prop])) return false;\n// } else {\n// return false;\n// }\n// }\n\n// return true;\n// } else {\n// return false;\n// }\n// }\n\n// export function isLine(docToCheck: Doc): boolean {\n// return (\n// isHardline(docToCheck) ||\n// (typeof docToCheck === 'object' && isDocCommand(docToCheck) && docToCheck.type === 'line') ||\n// (typeof docToCheck === 'object' && isDocCommand(docToCheck) && docToCheck.type === 'concat' && docToCheck.parts.every(isLine))\n// );\n// }\n\n/**\n * Check if the doc is empty, i.e. consists of nothing more than empty strings (possibly nested).\n */\n// export function isEmptyDoc(doc: Doc): boolean {\n// if (typeof doc === 'string') {\n// return doc.length === 0;\n// }\n\n// // if (doc.type === 'line') {\n// // return !doc.keepIfLonely;\n// // }\n\n// // Since Prettier 2.3.0, concats are represented as flat arrays\n// if (Array.isArray(doc)) {\n// return doc.length === 0;\n// }\n\n// // const { contents } = doc;\n\n// // if (contents) {\n// // return isEmptyDoc(contents);\n// // }\n\n// // const { parts } = doc;\n\n// // if (parts) {\n// // return isEmptyGroup(parts);\n// // }\n\n// return false;\n// }\n\n// function isEmptyGroup(group: any) {\n// return !group.find((doc: any) => !isEmptyDoc(doc));\n// }\n\n/**\n * Trims both leading and trailing nodes matching `isWhitespace` independent of nesting level\n * (though all trimmed adjacent nodes need to be a the same level). Modifies the `docs` array.\n */\n// export function trim(docs: Doc[], isWhitespace: (doc: Doc) => boolean): Doc[] {\n// trimLeft(docs, isWhitespace);\n// trimRight(docs, isWhitespace);\n\n// return docs;\n// }\n\n/**\n * Trims the leading nodes matching `isWhitespace` independent of nesting level (though all nodes need to be a the same level).\n * If there are empty docs before the first whitespace, they are removed, too.\n */\n// function trimLeft(group: Doc[], isWhitespace: (doc: Doc) => boolean): void {\n// let firstNonWhitespace = group.findIndex((doc) => !isEmptyDoc(doc) && !isWhitespace(doc));\n\n// if (firstNonWhitespace < 0 && group.length) {\n// firstNonWhitespace = group.length;\n// }\n\n// if (firstNonWhitespace > 0) {\n// const removed = group.splice(0, firstNonWhitespace);\n// if (removed.every(isEmptyDoc)) {\n// return trimLeft(group, isWhitespace);\n// }\n// } else {\n// const parts = getParts(group[0]);\n\n// if (parts) {\n// return trimLeft(parts, isWhitespace);\n// }\n// }\n// }\n\n/**\n * Trims the trailing nodes matching `isWhitespace` independent of nesting level (though all nodes need to be a the same level).\n * If there are empty docs after the last whitespace, they are removed, too.\n */\n// function trimRight(group: Doc[], isWhitespace: (doc: Doc) => boolean): void {\n// let lastNonWhitespace = group.length ? findLastIndex((doc: any) => !isEmptyDoc(doc) && !isWhitespace(doc), group) : 0;\n\n// if (lastNonWhitespace < group.length - 1) {\n// const removed = group.splice(lastNonWhitespace + 1);\n// if (removed.every(isEmptyDoc)) {\n// return trimRight(group, isWhitespace);\n// }\n// } else {\n// const parts = getParts(group[group.length - 1]);\n\n// if (parts) {\n// return trimRight(parts, isWhitespace);\n// }\n// }\n// }\n\n// function getParts(doc: Doc): Doc[] | undefined {\n// if (typeof doc === 'object') {\n// // Since Prettier 2.3.0, concats are represented as flat arrays\n// if (Array.isArray(doc)) {\n// return doc;\n// }\n// if (doc.type === 'fill' || doc.type === 'concat') {\n// return doc.parts;\n// }\n// if (doc.type === 'group') {\n// return getParts(doc.contents);\n// }\n// }\n// }\n\n// export const isObjEmpty = (obj: object): boolean => {\n// for (let i in obj) return false;\n// return true;\n// };\n\n/** Shallowly attach comments to children */\n// export function attachCommentsHTML(node: anyNode): void {\n// if (!isNodeWithChildren(node) || !node.children.some(({ type }) => type === 'Comment')) return;\n\n// const nodesToRemove = [];\n\n// // note: the .length - 1 is because we don’t need to read the last node\n// for (let n = 0; n < node.children.length - 1; n++) {\n// if (!node.children[n]) continue;\n\n// // attach comment to the next non-whitespace node\n// if (node.children[n].type === 'Comment') {\n// let next = n + 1;\n// while (isEmptyTextNode(node.children[next])) {\n// nodesToRemove.push(next); // if arbitrary whitespace between comment and node, remove\n// next++; // skip to the next non-whitespace node\n// }\n// const commentNode = node.children[next];\n// if (commentNode) {\n// const comment = node.children[n];\n// util.addLeadingComment(commentNode, comment);\n// }\n// }\n// }\n\n// // remove arbitrary whitespace nodes\n// nodesToRemove.reverse(); // start at back so we aren’t changing indices\n// nodesToRemove.forEach((index) => {\n// node.children.splice(index, 1);\n// });\n// }\n\n// https://github.com/dmnd/dedent/blob/master/dist/dedent.js\nexport function manualDedent(input: string) {\n // first, perform interpolation\n let result = '';\n for (var i = 0; i < input.length; i++) {\n result += input[i]\n // join lines when there is a suppressed newline\n .replace(/\\\\\\n[ \\t]*/g, '')\n // handle escaped backticks\n .replace(/\\\\`/g, '`');\n\n if (i < (arguments.length <= 1 ? 0 : arguments.length - 1)) {\n result += arguments.length <= i + 1 ? undefined : arguments[i + 1];\n }\n }\n\n // now strip indentation\n const lines = result.split('\\n');\n let mindent: number | null = null;\n lines.forEach(function (l) {\n var m = l.match(/^(\\s+)\\S+/);\n if (m) {\n var indent = m[1].length;\n if (!mindent) {\n // this is the first indented line\n mindent = indent;\n } else {\n mindent = Math.min(mindent, indent);\n }\n }\n });\n\n if (mindent !== null) {\n (function () {\n var m = mindent; // appease Flow\n result = lines\n .map(function (l) {\n return l[0] === ' ' ? l.slice(m) : l;\n })\n .join('\\n');\n })();\n }\n\n return {\n result: result\n // dedent eats leading and trailing whitespace too\n .trim()\n // handle escaped newlines at the end to ensure they don't get stripped too\n .replace(/\\\\n/g, '\\n'),\n };\n}\n\n/** re-indent string by chars */\n// export function indent(input: string, char: string = ' '): string {\n// return input.replace(/^(.)/gm, `${char}$1`);\n// }\n\n/** scan code for Markdown name(s) */\nexport function getMarkdownName(script: string): Set<string> {\n // default import: could be named anything\n let defaultMatch;\n while ((defaultMatch = /import\\s+([^\\s]+)\\s+from\\s+['|\"|`]astro\\/components\\/Markdown\\.astro/g.exec(script))) {\n if (defaultMatch[1]) return new Set([defaultMatch[1].trim()]);\n }\n\n // named component: must have \"Markdown\" in specifier, but can be renamed via \"as\"\n let namedMatch;\n while ((namedMatch = /import\\s+\\{\\s*([^}]+)\\}\\s+from\\s+['|\"|`]astro\\/components/g.exec(script))) {\n if (namedMatch[1] && !namedMatch[1].includes('Markdown')) continue;\n // if \"Markdown\" was imported, find out whether or not it was renamed\n const rawImports = namedMatch[1].trim().replace(/^\\{/, '').replace(/\\}$/, '').trim();\n let importName = 'Markdown';\n for (const spec of rawImports.split(',')) {\n const [original, renamed] = spec.split(' as ').map((s) => s.trim());\n if (original !== 'Markdown') continue;\n importName = renamed || original;\n break;\n }\n return new Set([importName]);\n }\n return new Set(['Markdown']);\n}\n\n// TODO: USE THE COMPILER\n/** True if the node is of type text */\nexport function isTextNode(node: Node): node is TextNode {\n return node.type === 'text';\n}\n\n// export function isMustacheNode(node: anyNode): node is MustacheTagNode {\n// return node.type === 'MustacheTag';\n// }\n\n// export function isDocCommand(doc: Doc): doc is doc.builders.DocCommand {\n// if (typeof doc === 'string') return false;\n// if (Array.isArray(doc)) return false;\n// return true;\n// }\n\nexport function isInsideQuotedAttribute(path: AstPath): boolean {\n const stack = path.stack as anyNode[];\n return stack.some((node) => node.type === 'attribute' && !isLoneMustacheTag(node));\n}\n","import { AstPath as AstP, BuiltInParsers, Doc, ParserOptions as ParserOpts, Printer } from 'prettier';\nimport _doc from 'prettier/doc';\nconst {\n builders: { breakParent, dedent, fill, group, hardline, indent, join, line, literalline, softline },\n utils: { removeLines, stripTrailingHardline },\n} = _doc;\nimport { SassFormatter, SassFormatterConfig } from 'sass-formatter';\n\nimport { parseSortOrder } from './options';\n\nimport { RootNode, Node, AttributeNode, CommentNode, NodeWithText, selfClosingTags, TextNode, anyNode } from './nodes';\n\ntype ParserOptions = ParserOpts<anyNode>;\ntype AstPath = AstP<anyNode>;\n\nimport {\n // attachCommentsHTML,\n canOmitSoftlineBeforeClosingTag,\n manualDedent,\n endsWithLinebreak,\n forceIntoExpression,\n formattableAttributes,\n getMarkdownName,\n getText,\n getUnencodedText,\n isRootNode,\n // isDocCommand,\n // isEmptyDoc,\n isEmptyTextNode,\n isInlineElement,\n isInsideQuotedAttribute,\n // isLine,\n isLoneMustacheTag,\n // isNodeWithChildren,\n isOrCanBeConvertedToShorthand,\n isPreTagContent,\n isShorthandAndMustBeConvertedToBinaryExpression,\n isTextNode,\n isTextNodeEndingWithWhitespace,\n isTextNodeStartingWithLinebreak,\n isTextNodeStartingWithWhitespace,\n printRaw,\n // replaceEndOfLineWith,\n shouldHugEnd,\n shouldHugStart,\n startsWithLinebreak,\n // trim,\n // trimChildren,\n trimTextNodeLeft,\n trimTextNodeRight,\n} from './utils';\n\n// function printTopLevelParts(node: RootNode, path: AstPath, opts: ParserOptions, print: printFn): Doc {\n// let docs = [];\n\n// const normalize = (doc: Doc) => [stripTrailingHardline(doc), hardline];\n\n// // frontmatter always comes first\n// if (node.module) {\n// const subDoc = normalize(path.call(print, 'module'));\n// docs.push(subDoc);\n// }\n\n// // markup and styles follow, whichever the user prefers (default: markup, styles)\n// for (const section of parseSortOrder(opts.astroSortOrder)) {\n// switch (section) {\n// case 'markup': {\n// const subDoc = path.call(print, 'html');\n// if (!isEmptyDoc(subDoc)) docs.push(normalize(subDoc));\n// break;\n// }\n// case 'styles': {\n// const subDoc = path.call(print, 'css');\n// if (!isEmptyDoc(subDoc)) docs.push(normalize(subDoc));\n// break;\n// }\n// }\n// }\n\n// return join(softline, docs);\n// }\n\n// function printAttributeNodeValue(path: AstPath, print: printFn, quotes: boolean, node: AttributeNode): Doc[] | _doc.builders.Indent {\n// const valueDocs = path.map((childPath) => childPath.call(print), 'value');\n\n// if (!quotes || !formattableAttributes.includes(node.name)) {\n// return valueDocs;\n// } else {\n// return indent(group(trim(valueDocs, isLine)));\n// }\n// }\n\n// TODO: USE ASTPATH GENERIC\n// function printJS(path: AstP, print: printFn, name: string, { forceSingleQuote, forceSingleLine }: { forceSingleQuote: boolean; forceSingleLine: boolean }) {\n// path.getValue()[name].isJS = true;\n// path.getValue()[name].forceSingleQuote = forceSingleQuote;\n// path.getValue()[name].forceSingleLine = forceSingleLine;\n// return path.call(print, name);\n// }\n\n// TODO: MAYBE USE THIS TO HANDLE COMMENTS\nfunction printComment(commentPath: AstPath, options: ParserOptions): Doc {\n // note(drew): this isn’t doing anything currently, but Prettier requires it anyway\n // @ts-ignore\n return commentPath;\n}\n\nexport type printFn = (path: AstPath) => Doc;\n\nfunction print(path: AstPath, opts: ParserOptions, print: printFn): Doc {\n const node = path.getValue();\n // const isMarkdownSubDoc = opts.parentParser === 'markdown'; // is this a code block within .md?\n\n // 1. handle special node types\n if (!node) {\n return '';\n }\n\n if (typeof node === 'string') {\n return node;\n }\n\n // if (Array.isArray(node)) {\n // return path.map((childPath) => childPath.call(print));\n // }\n\n // if (isASTNode(node)) {\n // return printTopLevelParts(node, path, opts, print);\n // }\n\n // 2. attach comments shallowly to children, if any (https://prettier.io/docs/en/plugins.html#manually-attaching-a-comment)\n // if (!isPreTagContent(path) && !isMarkdownSubDoc && node.type === 'Fragment') {\n // attachCommentsHTML(node);\n // }\n\n // 3. handle printing\n switch (node.type) {\n case 'root': {\n return [stripTrailingHardline(path.map(print, 'children')), hardline];\n }\n\n // case 'Fragment': {\n // const text = getText(node, opts);\n // if (text.length === 0) {\n // return '';\n // }\n\n // if (!isNodeWithChildren(node) || node.children.every(isEmptyTextNode)) return '';\n\n // if (!isPreTagContent(path)) {\n // trimChildren(node.children);\n // const output = trim(\n // [path.map(print, 'children')],\n // (n) =>\n // isLine(n) ||\n // (typeof n === 'string' && n.trim() === '') ||\n // // Because printChildren may append this at the end and\n // // may hide other lines before it\n // n === breakParent\n // );\n // if (output.every((doc) => isEmptyDoc(doc))) {\n // return '';\n // }\n // return group([...output, hardline]);\n // } else {\n // return group(path.map(print, 'children'));\n // }\n // }\n case 'text': {\n const rawText = getUnencodedText(node);\n\n // TODO: TEST PRE TAGS\n // if (isPreTagContent(path)) {\n // if (path.getParentNode()?.type === 'Attribute') {\n // // Direct child of attribute value -> add literallines at end of lines\n // // so that other things don't break in unexpected places\n // return replaceEndOfLineWith(rawText, literalline);\n // }\n // return rawText;\n // }\n\n if (isEmptyTextNode(node)) {\n const hasWhiteSpace = rawText.trim().length < getUnencodedText(node).length;\n const hasOneOrMoreNewlines = /\\n/.test(getUnencodedText(node));\n const hasTwoOrMoreNewlines = /\\n\\r?\\s*\\n\\r?/.test(getUnencodedText(node));\n if (hasTwoOrMoreNewlines) {\n return [hardline, hardline];\n }\n if (hasOneOrMoreNewlines) {\n return hardline;\n }\n if (hasWhiteSpace) {\n return line;\n }\n return '';\n }\n\n /**\n * For non-empty text nodes each sequence of non-whitespace characters (effectively,\n * each \"word\") is joined by a single `line`, which will be rendered as a single space\n * until this node's current line is out of room, at which `fill` will break at the\n * most convenient instance of `line`.\n */\n return fill(splitTextToDocs(node));\n }\n\n // case 'InlineComponent':\n // case 'Slot':\n case 'component':\n case 'fragment':\n case 'element': {\n // const isEmpty = node.children?.every((child) => isEmptyTextNode(child));\n let isEmpty: boolean;\n if (!node.children) {\n isEmpty = true;\n } else {\n isEmpty = node.children.every((child) => isEmptyTextNode(child));\n }\n const isSelfClosingTag = isEmpty && (node.type !== 'element' || selfClosingTags.indexOf(node.name) !== -1);\n\n const attributes = node.attributes ? path.map(print, 'attributes') : [];\n if (isSelfClosingTag) {\n return group(['<', node.name, indent(group(attributes)), line, `/>`]);\n // return group(['<', node.name, indent(group([...attributes, opts.jsxBracketNewLine ? dedent(line) : ''])), ...[opts.jsxBracketNewLine ? '' : ' ', `/>`]]);\n }\n\n if (node.children) {\n const children = node.children;\n const firstChild = children[0];\n const lastChild = children[children.length - 1];\n\n // No hugging of content means it's either a block element and/or there's whitespace at the start/end\n let noHugSeparatorStart: _doc.builders.Concat | _doc.builders.Line | _doc.builders.Softline | string = softline;\n let noHugSeparatorEnd: _doc.builders.Concat | _doc.builders.Line | _doc.builders.Softline | string = softline;\n let hugStart = shouldHugStart(node, opts);\n let hugEnd = shouldHugEnd(node, opts);\n\n let body;\n\n if (isEmpty) {\n body =\n isInlineElement(path, opts, node) && node.children.length && isTextNodeStartingWithWhitespace(node.children[0]) && !isPreTagContent(path)\n ? () => line\n : // () => (opts.jsxBracketNewLine ? '' : softline);\n () => softline;\n } else if (isPreTagContent(path)) {\n body = () => printRaw(node);\n } else if (isInlineElement(path, opts, node) && !isPreTagContent(path)) {\n body = () => path.map(print, 'children');\n } else {\n body = () => path.map(print, 'children');\n }\n\n const openingTag = ['<', node.name, indent(group([...attributes, hugStart ? '' : !isPreTagContent(path) && !opts.bracketSameLine ? dedent(softline) : '']))];\n // const openingTag = ['<', node.name, indent(group([...attributes, hugStart ? '' : opts.jsxBracketNewLine && !isPreTagContent(path) ? dedent(softline) : '']))];\n\n if (hugStart && hugEnd) {\n const huggedContent = [softline, group(['>', body(), `</${node.name}`])];\n\n const omitSoftlineBeforeClosingTag = isEmpty || canOmitSoftlineBeforeClosingTag(path, opts);\n // const omitSoftlineBeforeClosingTag = (isEmpty && opts.jsxBracketNewLine) || canOmitSoftlineBeforeClosingTag(node, path, opts);\n return group([...openingTag, isEmpty ? group(huggedContent) : group(indent(huggedContent)), omitSoftlineBeforeClosingTag ? '' : softline, '>']);\n }\n\n if (isPreTagContent(path)) {\n noHugSeparatorStart = '';\n noHugSeparatorEnd = '';\n } else {\n let didSetEndSeparator = false;\n\n if (!hugStart && firstChild && isTextNode(firstChild)) {\n if (isTextNodeStartingWithLinebreak(firstChild) && firstChild !== lastChild && (!isInlineElement(path, opts, node) || isTextNodeEndingWithWhitespace(lastChild))) {\n noHugSeparatorStart = hardline;\n noHugSeparatorEnd = hardline;\n didSetEndSeparator = true;\n } else if (isInlineElement(path, opts, node)) {\n noHugSeparatorStart = line;\n }\n trimTextNodeLeft(firstChild);\n }\n if (!hugEnd && lastChild && isTextNode(lastChild)) {\n if (isInlineElement(path, opts, node) && !didSetEndSeparator) {\n noHugSeparatorEnd = softline;\n }\n trimTextNodeRight(lastChild);\n }\n }\n\n if (hugStart) {\n return group([...openingTag, indent([softline, group(['>', body()])]), noHugSeparatorEnd, `</${node.name}>`]);\n }\n\n if (hugEnd) {\n return group([...openingTag, '>', indent([noHugSeparatorStart, group([body(), `</${node.name}`])]), canOmitSoftlineBeforeClosingTag(path, opts) ? '' : softline, '>']);\n }\n\n if (isEmpty) {\n return group([...openingTag, '>', body(), `</${node.name}>`]);\n }\n\n return group([...openingTag, '>', indent([noHugSeparatorStart, body()]), noHugSeparatorEnd, `</${node.name}>`]);\n }\n // TODO: WIP\n return '';\n }\n // case 'AttributeShorthand': {\n // return node.expression.name;\n // }\n case 'attribute': {\n const name = node.name.trim();\n const quote = opts.singleQuote ? \"'\" : '\"';\n switch (node.kind) {\n case 'empty':\n return [line, name];\n case 'expression':\n // HANDLED IN EMBED FUNCION\n return '';\n case 'quoted':\n return [line, name, '=', quote, node.value, quote];\n case 'shorthand':\n return [line, '{', name, '}'];\n case 'spread':\n return [line, '{...', name, '}'];\n case 'template-literal':\n return [line, name, '=', '`', node.value, '`'];\n default:\n break;\n }\n return '';\n }\n\n case 'directive': {\n return [line, node.name];\n }\n\n case 'doctype': {\n // https://www.w3.org/wiki/Doctypes_and_markup_styles\n return ['<!DOCTYPE html>', hardline];\n }\n // case 'Expression':\n // // missing test ?\n // return [];\n // case 'MustacheTag':\n // return [\n // '{',\n // printJS(path, print, 'expression', {\n // forceSingleLine: isInsideQuotedAttribute(path),\n // forceSingleQuote: opts.jsxSingleQuote,\n // }),\n // '}',\n // ];\n // case 'Spread':\n // return [\n // line,\n // '{...',\n // printJS(path, print, 'expression', {\n // forceSingleQuote: true,\n // forceSingleLine: false,\n // }),\n // '}',\n // ];\n case 'comment':\n return ['<!--', getUnencodedText(node), '-->'];\n // case 'CodeSpan':\n // return getUnencodedText(node);\n // case 'CodeFence': {\n // console.debug(node);\n // // const lang = node.metadata.slice(3);\n // return [node.metadata, hardline, /** somehow call textToDoc(lang), */ node.data, hardline, '```', hardline];\n\n // // We should use `node.metadata` to select a parser to embed with... something like return [node.metadata, hardline textToDoc(node.getMetadataLanguage()), hardline, `\\`\\`\\``];\n // }\n default: {\n throw new Error(`Unhandled node type \"${node.type}\"!`);\n }\n }\n}\n\n/**\n * Split the text into words separated by whitespace. Replace the whitespaces by lines,\n * collapsing multiple whitespaces into a single line.\n *\n * If the text starts or ends with multiple newlines, two of those should be kept.\n */\nfunction splitTextToDocs(node: NodeWithText): Doc[] {\n const text = getUnencodedText(node);\n\n let textLines = text.split(/[\\t\\n\\f\\r ]+/);\n\n let docs = join(line, textLines).parts.filter((s) => s !== '');\n\n if (startsWithLinebreak(text)) {\n docs[0] = hardline;\n }\n if (startsWithLinebreak(text, 2)) {\n docs = [hardline, ...docs];\n }\n\n if (endsWithLinebreak(text)) {\n docs[docs.length - 1] = hardline;\n }\n if (endsWithLinebreak(text, 2)) {\n docs = [...docs, hardline];\n }\n\n return docs;\n}\n\nfunction expressionParser(text: string, parsers: BuiltInParsers, opts: ParserOptions) {\n const ast = parsers.babel(text, opts);\n // const ast = parsers.babel(text, parsers, opts);\n\n return { ...ast, program: ast.program.body[0].expression };\n}\n\nlet markdownComponentName = new Set();\n\nfunction embed(path: AstPath, print: printFn, textToDoc: (text: string, options: object) => Doc, opts: ParserOptions) {\n // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // @ts-ignore\n if (!opts.__astro) opts.__astro = {};\n\n const node = path.getValue();\n\n if (!node) return null;\n\n if (node.type === 'expression') {\n const textContent = getText(node, opts);\n\n let content: Doc | string;\n\n if (node.children.length === 1) {\n content = textContent;\n } else {\n content = textToDoc(textContent, { ...opts, parser: 'babel-ts', semi: false });\n content = stripTrailingHardline(content);\n }\n\n // if (node.children[0].value) {\n // content = textToDoc(forceIntoExpression(textContent), { parser: expressionParser });\n // } else {\n // content = textToDoc(forceIntoExpression(node.children[0].value), { parser: expressionParser });\n // }\n return [\n '{',\n // printJS(path, print, 'expression', {\n // forceSingleLine: isInsideQuotedAttribute(path),\n // forceSingleQuote: opts.jsxSingleQuote,\n // }),\n content,\n '}',\n ];\n }\n\n // ATTRIBUTE WITH EXPRESSION AS VALUE\n if (node.type === 'attribute' && node.kind === 'expression') {\n const value = node.value.trim();\n const name = node.name.trim();\n let attrNodeValue = textToDoc(forceIntoExpression(value), { ...opts, parser: expressionParser, semi: false });\n attrNodeValue = stripTrailingHardline(attrNodeValue);\n // if (Array.isArray(attrNodeValue) && attrNodeValue[0] === ';') {\n // attrNodeValue = attrNodeValue.slice(1);\n // }\n if (name === value && opts.astroAllowShorthand) {\n return [line, '{', attrNodeValue, '}'];\n }\n return [line, name, '=', '{', attrNodeValue, '}'];\n }\n\n // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // @ts-ignore\n // if (node.isJS) {\n // try {\n // const embeddedopts = {\n // parser: expressionParser,\n // };\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // if (node.forceSingleQuote) {\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // embeddedopts.singleQuote = true;\n // }\n\n // const docs = textToDoc(forceIntoExpression(getText(node, opts)), embeddedopts);\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // return node.forceSingleLine ? removeLines(docs) : docs;\n // } catch (e) {\n // return getText(node, opts);\n // }\n // }\n\n if (node.type === 'frontmatter') {\n markdownComponentName = getMarkdownName(node.value);\n return [group(['---', hardline, textToDoc(node.value, { ...opts, parser: 'typescript' }), '---', hardline]), hardline];\n }\n\n // format script element\n if (node.type === 'element' && node.name === 'script') {\n const scriptContent = node.children[0].value;\n let formatttedScript = textToDoc(scriptContent, { ...opts, parser: 'typescript' });\n formatttedScript = stripTrailingHardline(formatttedScript);\n\n // print\n const attributes = node.attributes ? path.map(print, 'attributes') : [];\n const openingTag = group(['<script', indent(group(attributes)), softline, '>']);\n return [openingTag, indent([hardline, formatttedScript]), hardline, '</script>'];\n }\n // if (isTextNode(node)) {\n // const parent = path.getParentNode();\n\n // if (parent && parent.type === 'Element' && parent.name === 'script') {\n // const formatttedScript = textToDoc(node.data, { ...opts, parser: 'typescript' });\n // return stripTrailingHardline(formatttedScript);\n // }\n // }\n\n // format style element\n if (node.type === 'element' && node.name === 'style') {\n let styleTagContent = node.children[0].value.trim();\n\n const supportedStyleLangValues = ['css', 'scss', 'sass'];\n let parserLang = 'css';\n\n if (node.attributes) {\n const langAttribute = node.attributes.filter((x) => x.name === 'lang');\n if (langAttribute.length) {\n const styleLang = langAttribute[0].value.toLowerCase();\n if (supportedStyleLangValues.includes(styleLang)) parserLang = styleLang;\n }\n }\n\n switch (parserLang) {\n case 'css':\n case 'scss': {\n // the css parser appends an extra indented hardline, which we want outside of the `indent()`,\n // so we remove the last element of the array\n let formattedStyles = textToDoc(styleTagContent, { ...opts, parser: parserLang });\n\n formattedStyles = stripTrailingHardline(formattedStyles);\n\n // print\n const attributes = node.attributes ? path.map(print, 'attributes') : [];\n const directives = node.directives ? path.map(print, 'directives') : [];\n const attrAndDirectives = directives.concat(attributes);\n const openingTag = group(['<style', indent(group(attrAndDirectives)), softline, '>']);\n return [openingTag, indent([hardline, formattedStyles]), hardline, '</style>'];\n }\n case 'sass': {\n const lineEnding = opts.endOfLine.toUpperCase() === 'CRLF' ? 'CRLF' : 'LF';\n const sassOptions: Partial<SassFormatterConfig> = {\n tabSize: opts.tabWidth,\n insertSpaces: !opts.useTabs,\n lineEnding,\n };\n\n // dedent the .sass, otherwise SassFormatter gets indentation wrong\n const { result: raw } = manualDedent(styleTagContent);\n\n // format\n let formattedSassIndented = SassFormatter.Format(raw, sassOptions).trim();\n\n // print\n const formattedSass = join(hardline, formattedSassIndented.split('\\n'));\n const attributes = node.attributes ? path.map(print, 'attributes') : [];\n const openingTag = group(['<style', indent(group(attributes)), softline, '>']);\n return [openingTag, indent(group([hardline, formattedSass])), hardline, '</style>'];\n }\n }\n }\n\n // MARKDOWN COMPONENT\n if (node.type === 'component' && markdownComponentName.has(node.name)) {\n let content = printRaw(node);\n\n // dedent the content\n content = content.replace(/\\r\\n/g, '\\n');\n const contentArr = content.split('\\n').map((s) => s.trimStart());\n content = contentArr.join('\\n');\n\n // format\n let formatttedMarkdown = textToDoc(content, { ...opts, parser: 'markdown' });\n formatttedMarkdown = stripTrailingHardline(formatttedMarkdown);\n\n // return formatttedMarkdown;\n const attributes = path.map(print, 'attributes');\n const openingTag = group([`<${node.name}`, indent(group(attributes)), softline, '>']);\n return [openingTag, indent(group([hardline, formatttedMarkdown])), hardline, `</${node.name}>`];\n }\n\n return null;\n}\n\nfunction hasPrettierIgnore(path: AstP<CommentNode>) {\n // const node = path.getNode();\n\n // if (!node || !Array.isArray(node.comments)) return false;\n\n // const hasIgnore = node.comments.some(\n // (comment: any) => comment.data.includes('prettier-ignore') && !comment.data.includes('prettier-ignore-start') && !comment.data.includes('prettier-ignore-end')\n // );\n // return hasIgnore;\n return false;\n}\n\nconst printer: Printer = {\n print,\n printComment,\n embed,\n hasPrettierIgnore,\n};\n\nexport default printer;\n","import { SupportOption } from 'prettier';\n\ndeclare module 'prettier' {\n interface RequiredOptions extends PluginOptions {}\n}\n\nexport interface PluginOptions {\n astroSortOrder: SortOrder;\n astroAllowShorthand: boolean;\n}\n\nexport const options: Record<keyof PluginOptions, SupportOption> = {\n astroSortOrder: {\n since: '0.0.1',\n category: 'Astro',\n type: 'choice',\n default: 'markup | styles',\n description: 'Sort order for markup, scripts, and styles',\n choices: [\n {\n value: 'markup | styles',\n description: 'markup | styles',\n },\n {\n value: 'styles | markup',\n description: 'styles | markup',\n },\n ],\n },\n astroAllowShorthand: {\n since: '0.0.10',\n category: 'Astro',\n type: 'boolean',\n default: true,\n description: 'Enable/disable attribute shorthand if attribute name and expression are the same',\n },\n};\n\nexport const parseSortOrder = (sortOrder: SortOrder): SortOrderPart[] => sortOrder.split(' | ') as SortOrderPart[];\n\nexport type SortOrder = 'markup | styles' | 'styles | markup';\n\nexport type SortOrderPart = 'markup' | 'styles';\n","import parse from './parse';\nimport printer from './printer';\nimport { options } from './options';\nimport { Parser, Printer, SupportLanguage } from 'prettier';\n\nexport const languages: Partial<SupportLanguage>[] = [\n {\n name: 'astro',\n parsers: ['astro'],\n extensions: ['.astro'],\n vscodeLanguageIds: ['astro'],\n },\n];\n\nexport const parsers: Record<string, Parser> = {\n astro: {\n parse,\n astFormat: 'astro',\n locStart: (node) => node.start,\n locEnd: (node) => node.end,\n },\n};\n\nexport const printers: Record<string, Printer> = {\n astro: printer,\n};\n\nconst defaultOptions = {\n tabWidth: 2,\n};\n\nexport { options, defaultOptions };\n"],"names":["makeSynchronous","_doc","SassFormatter"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/parse.ts","../src/nodes.ts","../src/syncUtils.ts","../src/utils.ts","../src/printer.ts","../src/options.ts","../src/index.ts"],"sourcesContent":["import makeSynchronous from 'make-synchronous';\n\nconst parseSync = makeSynchronous(async (source: string) => {\n const dynamicImport = new Function('file', 'return import(file)');\n const { parse } = await dynamicImport('@astrojs/compiler');\n try {\n const { ast } = await parse(source);\n return ast;\n } catch (e) {\n console.error(e);\n }\n});\n\nconst parse = (text: string) => parseSync(text);\n\nexport default parse;\n","import {\n Node,\n AttributeNode,\n RootNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n FragmentNode,\n} from '@astrojs/compiler/types';\n\n// MISSING ATTRIBUTE NODE FROM THE NODE TYPE\n\nexport interface NodeWithText {\n value: string;\n}\n\n// export interface Ast {\n// html: anyNode;\n// css: StyleNode[];\n// module: ScriptNode;\n// meta: {\n// features: number;\n// };\n// }\n\n// export interface BaseNode {\n// start: number;\n// end: number;\n// type: string;\n// children?: anyNode[];\n// // TODO: ADD BETTER TYPE\n// [prop_name: string]: any;\n// }\n\n// export type attributeValue = TextNode[] | AttributeShorthandNode[] | MustacheTagNode[] | true;\n\nexport interface NodeWithChildren {\n // children: anyNode[];\n children: Node[];\n}\n\n// export interface NodeWithText {\n// data: string;\n// raw?: string;\n// }\n\n// export interface FragmentNode extends BaseNode {\n// type: 'Fragment';\n// children: anyNode[];\n// }\n\n// export interface TextNode extends BaseNode {\n// type: 'Text';\n// data: string;\n// raw: string;\n// }\n\n// export interface CodeFenceNode extends BaseNode {\n// type: 'CodeFence';\n// metadata: string;\n// data: string;\n// raw: string;\n// }\n\n// export interface CodeSpanNode extends BaseNode {\n// type: 'CodeSpan';\n// metadata: string;\n// data: string;\n// raw: string;\n// }\n\n// export interface SpreadNode extends BaseNode {\n// type: 'Spread';\n// expression: ExpressionNode;\n// }\n\n// export interface ExpressionNode {\n// type: 'Expression';\n// start: number;\n// end: number;\n// codeChunks: string[];\n// children: anyNode[];\n// }\n\n// export interface ScriptNode extends BaseNode {\n// type: 'Script';\n// context: 'runtime' | 'setup';\n// content: string;\n// }\n\n// export interface StyleNode extends BaseNode {\n// type: 'Style';\n// // TODO: ADD BETTER TYPE\n// attributes: any[];\n// content: {\n// start: number;\n// end: number;\n// styles: string;\n// };\n// }\n\n// export interface AttributeNode extends BaseNode {\n// type: 'Attribute';\n// name: string;\n// value: attributeValue;\n// }\n\n// export interface AttributeShorthandNode extends BaseNode {\n// type: 'AttributeShorthand';\n// expression: IdentifierNode;\n// }\n\n// export interface IdentifierNode extends BaseNode {\n// type: 'Identifier';\n// name: string;\n// }\n\n// export interface MustacheTagNode extends BaseNode {\n// type: 'MustacheTag';\n// expression: ExpressionNode;\n// }\n\n// export interface SlotNode extends BaseNode {\n// type: 'Slot';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\n// export interface CommentNode extends BaseNode {\n// type: 'Comment';\n// data: string;\n// name?: string;\n// leading?: boolean;\n// trailing?: boolean;\n// printed?: boolean;\n// nodeDescription?: string;\n// }\n\n// export interface ElementNode extends BaseNode {\n// type: 'Element';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\n// export interface InlineComponentNode extends BaseNode {\n// type: 'InlineComponent';\n// name: string;\n// attributes: AttributeNode[];\n// }\n\nexport interface BlockElementNode extends ElementNode {\n name: typeof blockElementsT[number];\n}\n\nexport interface InlineElementNode extends ElementNode {\n name: typeof inlineElementsT[number];\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements#Elements\nconst blockElementsT = [\n 'address',\n 'article',\n 'aside',\n 'blockquote',\n 'details',\n 'dialog',\n 'dd',\n 'div',\n 'dl',\n 'dt',\n 'fieldset',\n 'figcaption',\n 'figure',\n 'footer',\n 'form',\n 'h1',\n 'h2',\n 'h3',\n 'h4',\n 'h5',\n 'h6',\n 'header',\n 'hgroup',\n 'hr',\n 'li',\n 'main',\n 'nav',\n 'ol',\n 'p',\n 'pre',\n 'section',\n 'table',\n 'ul',\n // TODO: WIP\n 'title',\n 'html',\n] as const;\n// https://github.com/microsoft/TypeScript/issues/31018\nexport const blockElements: string[] = [...blockElementsT];\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Inline_elements\nconst inlineElementsT = [\n 'a',\n 'abbr',\n 'acronym',\n 'audio',\n 'b',\n 'bdi',\n 'bdo',\n 'big',\n 'br',\n 'button',\n 'canvas',\n 'cite',\n 'code',\n 'data',\n 'datalist',\n 'del',\n 'dfn',\n 'em',\n 'embed',\n 'i',\n 'iframe',\n 'img',\n 'input',\n 'ins',\n 'kbd',\n 'label',\n 'map',\n 'mark',\n 'meter',\n 'noscript',\n 'object',\n 'output',\n 'picture',\n 'progress',\n 'q',\n 'ruby',\n 's',\n 'samp',\n 'script',\n 'select',\n 'slot',\n 'small',\n 'span',\n 'strong',\n 'sub',\n 'sup',\n 'svg',\n 'template',\n 'textarea',\n 'time',\n 'u',\n 'tt',\n 'var',\n 'video',\n 'wbr',\n] as const;\n// https://github.com/microsoft/TypeScript/issues/31018\nexport const inlineElements: string[] = [...inlineElementsT];\n\n// @see http://xahlee.info/js/html5_non-closing_tag.html\nexport const selfClosingTags = [\n 'area',\n 'base',\n 'br',\n 'col',\n 'embed',\n 'hr',\n 'img',\n 'input',\n 'link',\n 'meta',\n 'param',\n 'source',\n 'track',\n 'wbr',\n];\n\nexport type anyNode =\n | RootNode\n | AttributeNode\n | ElementNode\n | ComponentNode\n | CustomElementNode\n | ExpressionNode\n | TextNode\n | DoctypeNode\n | CommentNode\n | FragmentNode\n | FrontmatterNode;\n\nexport type {\n AttributeNode,\n Node,\n RootNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n FragmentNode,\n} from '@astrojs/compiler/types';\n","import makeSynchronous from 'make-synchronous';\nimport { Node } from './nodes';\n\nconst serializeSync = makeSynchronous(async (node: Node) => {\n const dynamicImport = new Function('file', 'return import(file)');\n const { serialize } = await dynamicImport('@astrojs/compiler/utils');\n try {\n return await serialize(node);\n } catch (e) {\n console.error(e);\n }\n});\n\nexport const serialize = (node: Node): string => serializeSync(node);\n","import {\n AstPath as AstP,\n doc,\n Doc,\n ParserOptions as ParserOpts,\n util,\n} from 'prettier';\n\nimport {\n anyNode,\n Node,\n RootNode,\n AttributeNode,\n ElementNode,\n ComponentNode,\n CustomElementNode,\n ExpressionNode,\n TextNode,\n FrontmatterNode,\n DoctypeNode,\n CommentNode,\n NodeWithText,\n blockElements,\n // attributeValue,\n BlockElementNode,\n InlineElementNode,\n // MustacheTagNode,\n NodeWithChildren,\n // NodeWithText,\n // TextNode,\n} from './nodes';\n\nimport { serialize } from './syncUtils';\n\n// import makeSynchronous from 'make-synchronous';\n\ntype ParserOptions = ParserOpts<anyNode>;\ntype AstPath = AstP<anyNode>;\n\n/**\n * HTML attributes that we may safely reformat (trim whitespace, add or remove newlines)\n */\nexport const formattableAttributes: string[] = [\n // None at the moment\n // Prettier HTML does not format attributes at all\n // and to be consistent we leave this array empty for now\n];\n\n// const rootNodeKeys = new Set(['html', 'css', 'module']);\n\n// const isSync = makeSynchronous(async (node: anyNode) => {\n// const dynamicImport = new Function('file', 'return import(file)');\n// const { is } = await dynamicImport('@astrojs/compiler/utils');\n// try {\n// return await is(node);\n// } catch (e) {\n// console.error(e);\n// }\n// });\n\n// export const is = (node: anyNode) => isSync(node);\n\nexport const isRootNode = (node: anyNode): node is RootNode =>\n node.type === 'root';\n\nexport const isEmptyTextNode = (node: Node): boolean => {\n return !!node && node.type === 'text' && getUnencodedText(node).trim() === '';\n};\n\nexport const isPreTagContent = (path: AstPath): boolean => {\n if (!path || !path.stack || !Array.isArray(path.stack)) return false;\n return path.stack.some(\n (node: anyNode) =>\n (node.type === 'element' && node.name.toLowerCase() === 'pre') ||\n (node.type === 'attribute' && !formattableAttributes.includes(node.name))\n );\n};\n\nexport function isLoneMustacheTag(node: AttributeNode): boolean {\n // export function isLoneMustacheTag(node: AttributeNode): node is [MustacheTagNode] {\n return node.kind === 'expression';\n // return node !== true && node.length === 1 && node[0].type === 'MustacheTag';\n}\n\n// function isAttributeShorthand(node: attributeValue): node is [AttributeShorthandNode] {\n// return node !== true && node.length === 1 && node[0].type === 'AttributeShorthand';\n// }\n\n/**\n * True if node is of type `{a}` or `a={a}`\n */\nexport function isOrCanBeConvertedToShorthand(\n node: AttributeNode,\n opts: ParserOptions\n): boolean {\n if (!opts.astroAllowShorthand) return false;\n if (node.kind === 'shorthand') {\n return true;\n }\n // if (isAttributeShorthand(node.value)) {\n // return true;\n // }\n\n if (node.value.trim() === node.name.trim()) {\n return true;\n }\n\n // if (isLoneMustacheTag(node.value)) {\n // const expression = node.value[0].expression;\n // return expression.codeChunks[0].trim() === node.name;\n // // return (expression.type === 'Identifier' && expression.name === node.name) || (expression.type === 'Expression' && expression.codeChunks[0] === node.name);\n // }\n\n return false;\n}\n\n/**\n * True if node is of type `{a}` and astroAllowShorthand is false\n */\nexport function isShorthandAndMustBeConvertedToBinaryExpression(\n node: AttributeNode,\n opts: ParserOptions\n): boolean {\n if (opts.astroAllowShorthand) return false;\n if (node.type === 'attribute' && node.kind === 'shorthand') {\n return true;\n }\n // if (isAttributeShorthand(node.value)) {\n // return true;\n // }\n return false;\n}\n\n// export function flatten<T>(arrays: T[][]): T[] {\n// return ([] as T[]).concat.apply([], arrays);\n// }\n\n// TODO: TEST IF IT'S GETTING THE CORRECT TEXT\nexport function getText(node: anyNode, opts: ParserOptions): string {\n if (!node.position) return '';\n return opts.originalText.slice(\n node.position.start.offset + 1,\n node.position.end?.offset\n );\n // return opts.originalText.slice(opts.locStart(node), opts.locEnd(node));\n}\n\nexport function getUnencodedText(node: NodeWithText): string {\n return node.value;\n}\n\n// export function replaceEndOfLineWith(text: string, replacement: doc.builders.DocCommand): Doc[] {\n// const parts = [];\n// for (const part of text.split('\\n')) {\n// if (parts.length > 0) {\n// parts.push(replacement);\n// }\n// if (part.endsWith('\\r')) {\n// parts.push(part.slice(0, -1));\n// } else {\n// parts.push(part);\n// }\n// }\n// return parts;\n// }\n\n/**\n * Returns the content of the node\n */\nexport function printRaw(\n node: anyNode,\n stripLeadingAndTrailingNewline = false\n): string {\n if (!isNodeWithChildren(node)) {\n return '';\n }\n\n if (node.children.length === 0) {\n return '';\n }\n\n let raw = node.children.reduce(\n (prev: string, curr: Node) => prev + serialize(curr),\n ''\n );\n\n if (!stripLeadingAndTrailingNewline) {\n return raw;\n }\n\n if (startsWithLinebreak(raw)) {\n raw = raw.substring(raw.indexOf('\\n') + 1);\n }\n if (endsWithLinebreak(raw)) {\n raw = raw.substring(0, raw.lastIndexOf('\\n'));\n if (raw.charAt(raw.length - 1) === '\\r') {\n raw = raw.substring(0, raw.length - 1);\n }\n }\n\n return raw;\n}\n\nexport function isNodeWithChildren(\n node: anyNode\n): node is anyNode & NodeWithChildren {\n return node && Array.isArray(node.children);\n}\n\nexport function isInlineElement(\n path: AstPath,\n opts: ParserOptions,\n node: anyNode\n): node is InlineElementNode {\n return (\n node &&\n node.type === 'element' &&\n !isBlockElement(node, opts) &&\n !isPreTagContent(path)\n );\n}\n\nexport function isBlockElement(\n node: anyNode,\n opts: ParserOptions\n): node is BlockElementNode {\n return (\n node &&\n node.type === 'element' &&\n opts.htmlWhitespaceSensitivity !== 'strict' &&\n (opts.htmlWhitespaceSensitivity === 'ignore' ||\n blockElements.includes(node.name))\n );\n}\n\nexport function isTextNodeStartingWithLinebreak(\n node: TextNode,\n nrLines = 1\n): node is TextNode {\n return startsWithLinebreak(getUnencodedText(node), nrLines);\n // return node.type === 'Text' && startsWithLinebreak(getUnencodedText(node), nrLines);\n}\n\nexport function startsWithLinebreak(text: string, nrLines = 1): boolean {\n return new RegExp(`^([\\\\t\\\\f\\\\r ]*\\\\n){${nrLines}}`).test(text);\n}\n\n// export function isTextNodeEndingWithLinebreak(node: TextNode, nrLines: number = 1) {\n// return node.type === 'text' && endsWithLinebreak(getUnencodedText(node), nrLines);\n// }\n\nexport function endsWithLinebreak(text: string, nrLines = 1): boolean {\n return new RegExp(`(\\\\n[\\\\t\\\\f\\\\r ]*){${nrLines}}$`).test(text);\n}\n\nexport function isTextNodeStartingWithWhitespace(node: Node): node is TextNode {\n return node.type === 'text' && /^\\s/.test(getUnencodedText(node));\n}\n\nexport function isTextNodeEndingWithWhitespace(node: Node): node is TextNode {\n return node.type === 'text' && /\\s$/.test(getUnencodedText(node));\n}\n\nexport function forceIntoExpression(statement: string): string {\n // note the trailing newline: if the statement ends in a // comment,\n // we can't add the closing bracket right afterwards\n return `(${statement}\\n)`;\n}\n\n/**\n * Check if given node's starg tag should hug its first child. This is the case for inline elements when there's\n * no whitespace between the `>` and the first child.\n */\nexport function shouldHugStart(node: anyNode, opts: ParserOptions): boolean {\n if (isBlockElement(node, opts)) {\n return false;\n }\n\n if (!isNodeWithChildren(node)) {\n return false;\n }\n\n const children = node.children;\n if (children.length === 0) {\n return true;\n }\n\n const firstChild = children[0];\n return !isTextNodeStartingWithWhitespace(firstChild);\n}\n\n/**\n * Check if given node's end tag should hug its last child. This is the case for inline elements when there's\n * no whitespace between the last child and the `</`.\n */\nexport function shouldHugEnd(node: anyNode, opts: ParserOptions): boolean {\n if (isBlockElement(node, opts)) {\n return false;\n }\n\n if (!isNodeWithChildren(node)) {\n return false;\n }\n\n const children = node.children;\n if (children.length === 0) {\n return true;\n }\n\n return false;\n\n // TODO: WIP\n // const lastChild = children[children.length - 1];\n // return !isTextNodeEndingWithWhitespace(lastChild);\n}\n\n/**\n * Returns true if the softline between `</tagName` and `>` can be omitted.\n */\nexport function canOmitSoftlineBeforeClosingTag(\n path: AstPath,\n opts: ParserOptions\n): boolean {\n return isLastChildWithinParentBlockElement(path, opts);\n // return !hugsStartOfNextNode(node, options) || isLastChildWithinParentBlockElement(path, options);\n // return !options.svelteBracketNewLine && (!hugsStartOfNextNode(node, options) || isLastChildWithinParentBlockElement(path, options));\n}\n\n/**\n * Return true if given node does not hug the next node, meaning there's whitespace\n * or the end of the doc afterwards.\n */\n// function hugsStartOfNextNode(node: anyNode, opts: ParserOptions): boolean {\n// if (node.end === opts.originalText.length) {\n// // end of document\n// return false;\n// }\n\n// return !opts.originalText.substring(node.end).match(/^\\s/);\n// }\n\nfunction getChildren(node: anyNode): Node[] {\n return isNodeWithChildren(node) ? node.children : [];\n}\n\nfunction isLastChildWithinParentBlockElement(\n path: AstPath,\n opts: ParserOptions\n): boolean {\n const parent = path.getParentNode();\n if (!parent || !isBlockElement(parent, opts)) {\n return false;\n }\n\n const children = getChildren(parent);\n const lastChild = children[children.length - 1];\n return lastChild === path.getNode();\n}\n\nexport function trimTextNodeLeft(node: TextNode): void {\n node.value = node.value && node.value.trimStart();\n}\n\nexport function trimTextNodeRight(node: TextNode): void {\n node.value = node.value && node.value.trimEnd();\n}\n\n// export function findLastIndex<T>(isMatch: (item: T, idx: number) => boolean, items: T[]) {\n// for (let i = items.length - 1; i >= 0; i--) {\n// if (isMatch(items[i], i)) {\n// return i;\n// }\n// }\n\n// return -1;\n// }\n\n/**\n * Remove all leading whitespace up until the first non-empty text node,\n * and all trailing whitepsace from the last non-empty text node onwards.\n */\n// export function trimChildren(children: anyNode[]) {\n// // export function trimChildren(children: anyNode[], path: AstPath<anyNode>) {\n// let firstNonEmptyNode = children.findIndex((n) => !isEmptyTextNode(n));\n// // let firstNonEmptyNode = children.findIndex((n) => !isEmptyTextNode(n) && !doesEmbedStartAfterNode(n, path));\n// firstNonEmptyNode = firstNonEmptyNode === -1 ? children.length - 1 : firstNonEmptyNode;\n\n// let lastNonEmptyNode = findLastIndex((n, idx) => {\n// // Last node is ok to end at the start of an embedded region,\n// // if it's not a comment (which should stick to the region)\n// return !isEmptyTextNode(n);\n// // return !isEmptyTextNode(n) && ((idx === children.length - 1 && n.type !== 'Comment') || !doesEmbedStartAfterNode(n, path));\n// }, children);\n// lastNonEmptyNode = lastNonEmptyNode === -1 ? 0 : lastNonEmptyNode;\n\n// for (let i = 0; i <= firstNonEmptyNode; i++) {\n// const n = children[i];\n// if (isTextNode(n)) {\n// trimTextNodeLeft(n);\n// }\n// }\n\n// for (let i = children.length - 1; i >= lastNonEmptyNode; i--) {\n// const n = children[i];\n// if (isTextNode(n)) {\n// trimTextNodeRight(n);\n// }\n// }\n// }\n\n/**\n * Returns siblings, that is, the children of the parent.\n */\n// export function getSiblings(path: AstPath): anyNode[] {\n// let parent = path.getParentNode();\n// if (!parent) return [];\n\n// if (isRootNode(parent)) {\n// parent = parent.html;\n// }\n\n// return getChildren(parent);\n// }\n\n/**\n * Did there use to be any embedded object (that has been snipped out of the AST to be moved)\n * at the specified position?\n */\n// function doesEmbedStartAfterNode(node: anyNode, path: AstPath<anyNode>, siblings = getSiblings(path)): boolean {\n// // If node is not at the top level of html, an embed cannot start after it,\n// // because embeds are only at the top level\n// if (!isNodeTopLevelHTML(node, path)) {\n// return false;\n// }\n\n// const position = node.end;\n// const root = path.stack[0];\n\n// const embeds = [root.module, root.html, root.css];\n\n// const nextNode = siblings[siblings.indexOf(node) + 1];\n// return embeds.find((n) => n && n.start >= position && (!nextNode || n.end <= nextNode.start));\n// }\n\n// function isNodeTopLevelHTML(node: anyNode, path: AstPath<anyNode>) {\n// const root = path.stack[0];\n// return !!root.html && !!root.html.children && root.html.children.includes(node);\n// }\n\n/**\n * Check if doc is a hardline.\n * We can't just rely on a simple equality check because the doc could be created with another\n * runtime version of prettier than what we import, making a reference check fail.\n */\n\n// function isHardline(docToCheck: Doc): boolean {\n// return docToCheck === doc.builders.hardline || deepEqual(docToCheck, doc.builders.hardline);\n// }\n\n/**\n * Simple deep equal function which suits our needs. Only works properly on POJOs without cyclic deps.\n */\n// function deepEqual(x: any, y: any): boolean {\n// if (x === y) {\n// return true;\n// } else if (typeof x == 'object' && x != null && typeof y == 'object' && y != null) {\n// if (Object.keys(x).length != Object.keys(y).length) return false;\n\n// for (var prop in x) {\n// if (Object.prototype.hasOwnProperty.call(y, prop)) {\n// if (!deepEqual(x[prop], y[prop])) return false;\n// } else {\n// return false;\n// }\n// }\n\n// return true;\n// } else {\n// return false;\n// }\n// }\n\n// export function isLine(docToCheck: Doc): boolean {\n// return (\n// isHardline(docToCheck) ||\n// (typeof docToCheck === 'object' && isDocCommand(docToCheck) && docToCheck.type === 'line') ||\n// (typeof docToCheck === 'object' && isDocCommand(docToCheck) && docToCheck.type === 'concat' && docToCheck.parts.every(isLine))\n// );\n// }\n\n/**\n * Check if the doc is empty, i.e. consists of nothing more than empty strings (possibly nested).\n */\n// export function isEmptyDoc(doc: Doc): boolean {\n// if (typeof doc === 'string') {\n// return doc.length === 0;\n// }\n\n// // if (doc.type === 'line') {\n// // return !doc.keepIfLonely;\n// // }\n\n// // Since Prettier 2.3.0, concats are represented as flat arrays\n// if (Array.isArray(doc)) {\n// return doc.length === 0;\n// }\n\n// // const { contents } = doc;\n\n// // if (contents) {\n// // return isEmptyDoc(contents);\n// // }\n\n// // const { parts } = doc;\n\n// // if (parts) {\n// // return isEmptyGroup(parts);\n// // }\n\n// return false;\n// }\n\n// function isEmptyGroup(group: any) {\n// return !group.find((doc: any) => !isEmptyDoc(doc));\n// }\n\n/**\n * Trims both leading and trailing nodes matching `isWhitespace` independent of nesting level\n * (though all trimmed adjacent nodes need to be a the same level). Modifies the `docs` array.\n */\n// export function trim(docs: Doc[], isWhitespace: (doc: Doc) => boolean): Doc[] {\n// trimLeft(docs, isWhitespace);\n// trimRight(docs, isWhitespace);\n\n// return docs;\n// }\n\n/**\n * Trims the leading nodes matching `isWhitespace` independent of nesting level (though all nodes need to be a the same level).\n * If there are empty docs before the first whitespace, they are removed, too.\n */\n// function trimLeft(group: Doc[], isWhitespace: (doc: Doc) => boolean): void {\n// let firstNonWhitespace = group.findIndex((doc) => !isEmptyDoc(doc) && !isWhitespace(doc));\n\n// if (firstNonWhitespace < 0 && group.length) {\n// firstNonWhitespace = group.length;\n// }\n\n// if (firstNonWhitespace > 0) {\n// const removed = group.splice(0, firstNonWhitespace);\n// if (removed.every(isEmptyDoc)) {\n// return trimLeft(group, isWhitespace);\n// }\n// } else {\n// const parts = getParts(group[0]);\n\n// if (parts) {\n// return trimLeft(parts, isWhitespace);\n// }\n// }\n// }\n\n/**\n * Trims the trailing nodes matching `isWhitespace` independent of nesting level (though all nodes need to be a the same level).\n * If there are empty docs after the last whitespace, they are removed, too.\n */\n// function trimRight(group: Doc[], isWhitespace: (doc: Doc) => boolean): void {\n// let lastNonWhitespace = group.length ? findLastIndex((doc: any) => !isEmptyDoc(doc) && !isWhitespace(doc), group) : 0;\n\n// if (lastNonWhitespace < group.length - 1) {\n// const removed = group.splice(lastNonWhitespace + 1);\n// if (removed.every(isEmptyDoc)) {\n// return trimRight(group, isWhitespace);\n// }\n// } else {\n// const parts = getParts(group[group.length - 1]);\n\n// if (parts) {\n// return trimRight(parts, isWhitespace);\n// }\n// }\n// }\n\n// function getParts(doc: Doc): Doc[] | undefined {\n// if (typeof doc === 'object') {\n// // Since Prettier 2.3.0, concats are represented as flat arrays\n// if (Array.isArray(doc)) {\n// return doc;\n// }\n// if (doc.type === 'fill' || doc.type === 'concat') {\n// return doc.parts;\n// }\n// if (doc.type === 'group') {\n// return getParts(doc.contents);\n// }\n// }\n// }\n\n// export const isObjEmpty = (obj: object): boolean => {\n// for (let i in obj) return false;\n// return true;\n// };\n\n/** Shallowly attach comments to children */\n// export function attachCommentsHTML(node: anyNode): void {\n// if (!isNodeWithChildren(node) || !node.children.some(({ type }) => type === 'Comment')) return;\n\n// const nodesToRemove = [];\n\n// // note: the .length - 1 is because we don’t need to read the last node\n// for (let n = 0; n < node.children.length - 1; n++) {\n// if (!node.children[n]) continue;\n\n// // attach comment to the next non-whitespace node\n// if (node.children[n].type === 'Comment') {\n// let next = n + 1;\n// while (isEmptyTextNode(node.children[next])) {\n// nodesToRemove.push(next); // if arbitrary whitespace between comment and node, remove\n// next++; // skip to the next non-whitespace node\n// }\n// const commentNode = node.children[next];\n// if (commentNode) {\n// const comment = node.children[n];\n// util.addLeadingComment(commentNode, comment);\n// }\n// }\n// }\n\n// // remove arbitrary whitespace nodes\n// nodesToRemove.reverse(); // start at back so we aren’t changing indices\n// nodesToRemove.forEach((index) => {\n// node.children.splice(index, 1);\n// });\n// }\n\n// https://github.com/dmnd/dedent/blob/master/dist/dedent.js\nexport function manualDedent(input: string) {\n // first, perform interpolation\n let result = '';\n for (let i = 0; i < input.length; i++) {\n result += input[i]\n // join lines when there is a suppressed newline\n .replace(/\\\\\\n[ \\t]*/g, '')\n // handle escaped backticks\n .replace(/\\\\`/g, '`');\n\n if (i < (arguments.length <= 1 ? 0 : arguments.length - 1)) {\n // eslint-disable-next-line prefer-rest-params\n result += arguments.length <= i + 1 ? undefined : arguments[i + 1];\n }\n }\n\n // now strip indentation\n const lines = result.split('\\n');\n let mindent: number | null = null;\n lines.forEach(function (l) {\n const m = l.match(/^(\\s+)\\S+/);\n if (m) {\n const indent = m[1].length;\n if (!mindent) {\n // this is the first indented line\n mindent = indent;\n } else {\n mindent = Math.min(mindent, indent);\n }\n }\n });\n\n if (mindent !== null) {\n (function () {\n const m = mindent; // appease Flow\n result = lines\n .map(function (l) {\n return l[0] === ' ' ? l.slice(m) : l;\n })\n .join('\\n');\n })();\n }\n\n return {\n result: result\n // dedent eats leading and trailing whitespace too\n .trim()\n // handle escaped newlines at the end to ensure they don't get stripped too\n .replace(/\\\\n/g, '\\n'),\n };\n}\n\n/** re-indent string by chars */\n// export function indent(input: string, char: string = ' '): string {\n// return input.replace(/^(.)/gm, `${char}$1`);\n// }\n\n/** scan code for Markdown name(s) */\nexport function getMarkdownName(script: string): Set<string> {\n // default import: could be named anything\n let defaultMatch;\n while (\n (defaultMatch =\n /import\\s+([^\\s]+)\\s+from\\s+['|\"|`]astro\\/components\\/Markdown\\.astro/g.exec(\n script\n ))\n ) {\n if (defaultMatch[1]) return new Set([defaultMatch[1].trim()]);\n }\n\n // named component: must have \"Markdown\" in specifier, but can be renamed via \"as\"\n let namedMatch;\n while (\n (namedMatch =\n /import\\s+\\{\\s*([^}]+)\\}\\s+from\\s+['|\"|`]astro\\/components/g.exec(script))\n ) {\n if (namedMatch[1] && !namedMatch[1].includes('Markdown')) continue;\n // if \"Markdown\" was imported, find out whether or not it was renamed\n const rawImports = namedMatch[1]\n .trim()\n .replace(/^\\{/, '')\n .replace(/\\}$/, '')\n .trim();\n let importName = 'Markdown';\n for (const spec of rawImports.split(',')) {\n const [original, renamed] = spec.split(' as ').map((s) => s.trim());\n if (original !== 'Markdown') continue;\n importName = renamed || original;\n break;\n }\n return new Set([importName]);\n }\n return new Set(['Markdown']);\n}\n\n// TODO: USE THE COMPILER\n/** True if the node is of type text */\nexport function isTextNode(node: Node): node is TextNode {\n return node.type === 'text';\n}\n\n// export function isMustacheNode(node: anyNode): node is MustacheTagNode {\n// return node.type === 'MustacheTag';\n// }\n\n// export function isDocCommand(doc: Doc): doc is doc.builders.DocCommand {\n// if (typeof doc === 'string') return false;\n// if (Array.isArray(doc)) return false;\n// return true;\n// }\n\nexport function isInsideQuotedAttribute(path: AstPath): boolean {\n const stack = path.stack as anyNode[];\n return stack.some(\n (node) => node.type === 'attribute' && !isLoneMustacheTag(node)\n );\n}\n","import {\n AstPath as AstP,\n BuiltInParsers,\n Doc,\n ParserOptions as ParserOpts,\n Printer,\n} from 'prettier';\nimport _doc from 'prettier/doc';\nconst {\n builders: {\n breakParent,\n dedent,\n fill,\n group,\n hardline,\n indent,\n join,\n line,\n literalline,\n softline,\n },\n utils: { removeLines, stripTrailingHardline },\n} = _doc;\nimport { SassFormatter, SassFormatterConfig } from 'sass-formatter';\n\nimport { parseSortOrder } from './options';\n\nimport {\n RootNode,\n Node,\n AttributeNode,\n CommentNode,\n NodeWithText,\n selfClosingTags,\n TextNode,\n anyNode,\n} from './nodes';\n\ntype ParserOptions = ParserOpts<anyNode>;\ntype AstPath = AstP<anyNode>;\n\nimport {\n // attachCommentsHTML,\n canOmitSoftlineBeforeClosingTag,\n manualDedent,\n endsWithLinebreak,\n forceIntoExpression,\n formattableAttributes,\n getMarkdownName,\n getText,\n getUnencodedText,\n isRootNode,\n // isDocCommand,\n // isEmptyDoc,\n isEmptyTextNode,\n isInlineElement,\n isInsideQuotedAttribute,\n // isLine,\n isLoneMustacheTag,\n // isNodeWithChildren,\n isOrCanBeConvertedToShorthand,\n isPreTagContent,\n isShorthandAndMustBeConvertedToBinaryExpression,\n isTextNode,\n isTextNodeEndingWithWhitespace,\n isTextNodeStartingWithLinebreak,\n isTextNodeStartingWithWhitespace,\n printRaw,\n // replaceEndOfLineWith,\n shouldHugEnd,\n shouldHugStart,\n startsWithLinebreak,\n // trim,\n // trimChildren,\n trimTextNodeLeft,\n trimTextNodeRight,\n} from './utils';\n\n// function printTopLevelParts(node: RootNode, path: AstPath, opts: ParserOptions, print: printFn): Doc {\n// let docs = [];\n\n// const normalize = (doc: Doc) => [stripTrailingHardline(doc), hardline];\n\n// // frontmatter always comes first\n// if (node.module) {\n// const subDoc = normalize(path.call(print, 'module'));\n// docs.push(subDoc);\n// }\n\n// // markup and styles follow, whichever the user prefers (default: markup, styles)\n// for (const section of parseSortOrder(opts.astroSortOrder)) {\n// switch (section) {\n// case 'markup': {\n// const subDoc = path.call(print, 'html');\n// if (!isEmptyDoc(subDoc)) docs.push(normalize(subDoc));\n// break;\n// }\n// case 'styles': {\n// const subDoc = path.call(print, 'css');\n// if (!isEmptyDoc(subDoc)) docs.push(normalize(subDoc));\n// break;\n// }\n// }\n// }\n\n// return join(softline, docs);\n// }\n\n// function printAttributeNodeValue(path: AstPath, print: printFn, quotes: boolean, node: AttributeNode): Doc[] | _doc.builders.Indent {\n// const valueDocs = path.map((childPath) => childPath.call(print), 'value');\n\n// if (!quotes || !formattableAttributes.includes(node.name)) {\n// return valueDocs;\n// } else {\n// return indent(group(trim(valueDocs, isLine)));\n// }\n// }\n\n// TODO: USE ASTPATH GENERIC\n// function printJS(path: AstP, print: printFn, name: string, { forceSingleQuote, forceSingleLine }: { forceSingleQuote: boolean; forceSingleLine: boolean }) {\n// path.getValue()[name].isJS = true;\n// path.getValue()[name].forceSingleQuote = forceSingleQuote;\n// path.getValue()[name].forceSingleLine = forceSingleLine;\n// return path.call(print, name);\n// }\n\n// TODO: MAYBE USE THIS TO HANDLE COMMENTS\nfunction printComment(commentPath: AstPath, options: ParserOptions): Doc {\n // note(drew): this isn’t doing anything currently, but Prettier requires it anyway\n // @ts-ignore\n return commentPath;\n}\n\nexport type printFn = (path: AstPath) => Doc;\n\n// eslint-disable-next-line @typescript-eslint/no-shadow\nfunction print(path: AstPath, opts: ParserOptions, print: printFn): Doc {\n const node = path.getValue();\n // const isMarkdownSubDoc = opts.parentParser === 'markdown'; // is this a code block within .md?\n\n // 1. handle special node types\n if (!node) {\n return '';\n }\n\n if (typeof node === 'string') {\n return node;\n }\n\n // if (Array.isArray(node)) {\n // return path.map((childPath) => childPath.call(print));\n // }\n\n // if (isASTNode(node)) {\n // return printTopLevelParts(node, path, opts, print);\n // }\n\n // 2. attach comments shallowly to children, if any (https://prettier.io/docs/en/plugins.html#manually-attaching-a-comment)\n // if (!isPreTagContent(path) && !isMarkdownSubDoc && node.type === 'Fragment') {\n // attachCommentsHTML(node);\n // }\n\n // 3. handle printing\n switch (node.type) {\n case 'root': {\n return [stripTrailingHardline(path.map(print, 'children')), hardline];\n }\n\n // case 'Fragment': {\n // const text = getText(node, opts);\n // if (text.length === 0) {\n // return '';\n // }\n\n // if (!isNodeWithChildren(node) || node.children.every(isEmptyTextNode)) return '';\n\n // if (!isPreTagContent(path)) {\n // trimChildren(node.children);\n // const output = trim(\n // [path.map(print, 'children')],\n // (n) =>\n // isLine(n) ||\n // (typeof n === 'string' && n.trim() === '') ||\n // // Because printChildren may append this at the end and\n // // may hide other lines before it\n // n === breakParent\n // );\n // if (output.every((doc) => isEmptyDoc(doc))) {\n // return '';\n // }\n // return group([...output, hardline]);\n // } else {\n // return group(path.map(print, 'children'));\n // }\n // }\n case 'text': {\n const rawText = getUnencodedText(node);\n\n // TODO: TEST PRE TAGS\n // if (isPreTagContent(path)) {\n // if (path.getParentNode()?.type === 'Attribute') {\n // // Direct child of attribute value -> add literallines at end of lines\n // // so that other things don't break in unexpected places\n // return replaceEndOfLineWith(rawText, literalline);\n // }\n // return rawText;\n // }\n\n if (isEmptyTextNode(node)) {\n const hasWhiteSpace =\n rawText.trim().length < getUnencodedText(node).length;\n const hasOneOrMoreNewlines = /\\n/.test(getUnencodedText(node));\n const hasTwoOrMoreNewlines = /\\n\\r?\\s*\\n\\r?/.test(\n getUnencodedText(node)\n );\n if (hasTwoOrMoreNewlines) {\n return [hardline, hardline];\n }\n if (hasOneOrMoreNewlines) {\n return hardline;\n }\n if (hasWhiteSpace) {\n return line;\n }\n return '';\n }\n\n /**\n * For non-empty text nodes each sequence of non-whitespace characters (effectively,\n * each \"word\") is joined by a single `line`, which will be rendered as a single space\n * until this node's current line is out of room, at which `fill` will break at the\n * most convenient instance of `line`.\n */\n return fill(splitTextToDocs(node));\n }\n\n // case 'InlineComponent':\n // case 'Slot':\n case 'component':\n case 'fragment':\n case 'element': {\n // const isEmpty = node.children?.every((child) => isEmptyTextNode(child));\n let isEmpty: boolean;\n if (!node.children) {\n isEmpty = true;\n } else {\n isEmpty = node.children.every((child) => isEmptyTextNode(child));\n }\n const isSelfClosingTag =\n isEmpty &&\n (node.type !== 'element' || selfClosingTags.indexOf(node.name) !== -1);\n\n const attributes = path.map(print, 'attributes');\n if (isSelfClosingTag) {\n return group(['<', node.name, indent(group(attributes)), line, `/>`]);\n // return group(['<', node.name, indent(group([...attributes, opts.jsxBracketNewLine ? dedent(line) : ''])), ...[opts.jsxBracketNewLine ? '' : ' ', `/>`]]);\n }\n\n if (node.children) {\n const children = node.children;\n const firstChild = children[0];\n const lastChild = children[children.length - 1];\n\n // No hugging of content means it's either a block element and/or there's whitespace at the start/end\n let noHugSeparatorStart:\n | _doc.builders.Concat\n | _doc.builders.Line\n | _doc.builders.Softline\n | string = softline;\n let noHugSeparatorEnd:\n | _doc.builders.Concat\n | _doc.builders.Line\n | _doc.builders.Softline\n | string = softline;\n const hugStart = shouldHugStart(node, opts);\n const hugEnd = shouldHugEnd(node, opts);\n\n let body;\n\n if (isEmpty) {\n body =\n isInlineElement(path, opts, node) &&\n node.children.length &&\n isTextNodeStartingWithWhitespace(node.children[0]) &&\n !isPreTagContent(path)\n ? () => line\n : // () => (opts.jsxBracketNewLine ? '' : softline);\n () => softline;\n } else if (isPreTagContent(path)) {\n body = () => printRaw(node);\n } else if (\n isInlineElement(path, opts, node) &&\n !isPreTagContent(path)\n ) {\n body = () => path.map(print, 'children');\n } else {\n body = () => path.map(print, 'children');\n }\n\n const openingTag = [\n '<',\n node.name,\n indent(\n group([\n ...attributes,\n hugStart\n ? ''\n : !isPreTagContent(path) && !opts.bracketSameLine\n ? dedent(softline)\n : '',\n ])\n ),\n ];\n // const openingTag = ['<', node.name, indent(group([...attributes, hugStart ? '' : opts.jsxBracketNewLine && !isPreTagContent(path) ? dedent(softline) : '']))];\n\n if (hugStart && hugEnd) {\n const huggedContent = [\n softline,\n group(['>', body(), `</${node.name}`]),\n ];\n\n const omitSoftlineBeforeClosingTag =\n isEmpty || canOmitSoftlineBeforeClosingTag(path, opts);\n // const omitSoftlineBeforeClosingTag = (isEmpty && opts.jsxBracketNewLine) || canOmitSoftlineBeforeClosingTag(node, path, opts);\n return group([\n ...openingTag,\n isEmpty ? group(huggedContent) : group(indent(huggedContent)),\n omitSoftlineBeforeClosingTag ? '' : softline,\n '>',\n ]);\n }\n\n if (isPreTagContent(path)) {\n noHugSeparatorStart = '';\n noHugSeparatorEnd = '';\n } else {\n let didSetEndSeparator = false;\n\n if (!hugStart && firstChild && isTextNode(firstChild)) {\n if (\n isTextNodeStartingWithLinebreak(firstChild) &&\n firstChild !== lastChild &&\n (!isInlineElement(path, opts, node) ||\n isTextNodeEndingWithWhitespace(lastChild))\n ) {\n noHugSeparatorStart = hardline;\n noHugSeparatorEnd = hardline;\n didSetEndSeparator = true;\n } else if (isInlineElement(path, opts, node)) {\n noHugSeparatorStart = line;\n }\n trimTextNodeLeft(firstChild);\n }\n if (!hugEnd && lastChild && isTextNode(lastChild)) {\n if (isInlineElement(path, opts, node) && !didSetEndSeparator) {\n noHugSeparatorEnd = softline;\n }\n trimTextNodeRight(lastChild);\n }\n }\n\n if (hugStart) {\n return group([\n ...openingTag,\n indent([softline, group(['>', body()])]),\n noHugSeparatorEnd,\n `</${node.name}>`,\n ]);\n }\n\n if (hugEnd) {\n return group([\n ...openingTag,\n '>',\n indent([noHugSeparatorStart, group([body(), `</${node.name}`])]),\n canOmitSoftlineBeforeClosingTag(path, opts) ? '' : softline,\n '>',\n ]);\n }\n\n if (isEmpty) {\n return group([...openingTag, '>', body(), `</${node.name}>`]);\n }\n\n return group([\n ...openingTag,\n '>',\n indent([noHugSeparatorStart, body()]),\n noHugSeparatorEnd,\n `</${node.name}>`,\n ]);\n }\n // TODO: WIP\n return '';\n }\n // case 'AttributeShorthand': {\n // return node.expression.name;\n // }\n case 'attribute': {\n const name = node.name.trim();\n const quote = opts.singleQuote ? \"'\" : '\"';\n switch (node.kind) {\n case 'empty':\n return [line, name];\n case 'expression':\n // HANDLED IN EMBED FUNCION\n return '';\n case 'quoted':\n return [line, name, '=', quote, node.value, quote];\n case 'shorthand':\n return [line, '{', name, '}'];\n case 'spread':\n return [line, '{...', name, '}'];\n case 'template-literal':\n return [line, name, '=', '`', node.value, '`'];\n default:\n break;\n }\n return '';\n }\n\n case 'doctype': {\n // https://www.w3.org/wiki/Doctypes_and_markup_styles\n return ['<!DOCTYPE html>', hardline];\n }\n // case 'Expression':\n // // missing test ?\n // return [];\n // case 'MustacheTag':\n // return [\n // '{',\n // printJS(path, print, 'expression', {\n // forceSingleLine: isInsideQuotedAttribute(path),\n // forceSingleQuote: opts.jsxSingleQuote,\n // }),\n // '}',\n // ];\n // case 'Spread':\n // return [\n // line,\n // '{...',\n // printJS(path, print, 'expression', {\n // forceSingleQuote: true,\n // forceSingleLine: false,\n // }),\n // '}',\n // ];\n case 'comment':\n return ['<!--', getUnencodedText(node), '-->'];\n // case 'CodeSpan':\n // return getUnencodedText(node);\n // case 'CodeFence': {\n // console.debug(node);\n // // const lang = node.metadata.slice(3);\n // return [node.metadata, hardline, /** somehow call textToDoc(lang), */ node.data, hardline, '```', hardline];\n\n // // We should use `node.metadata` to select a parser to embed with... something like return [node.metadata, hardline textToDoc(node.getMetadataLanguage()), hardline, `\\`\\`\\``];\n // }\n default: {\n throw new Error(`Unhandled node type \"${node.type}\"!`);\n }\n }\n}\n\n/**\n * Split the text into words separated by whitespace. Replace the whitespaces by lines,\n * collapsing multiple whitespaces into a single line.\n *\n * If the text starts or ends with multiple newlines, two of those should be kept.\n */\nfunction splitTextToDocs(node: NodeWithText): Doc[] {\n const text = getUnencodedText(node);\n\n const textLines = text.split(/[\\t\\n\\f\\r ]+/);\n\n let docs = join(line, textLines).parts.filter((s) => s !== '');\n\n if (startsWithLinebreak(text)) {\n docs[0] = hardline;\n }\n if (startsWithLinebreak(text, 2)) {\n docs = [hardline, ...docs];\n }\n\n if (endsWithLinebreak(text)) {\n docs[docs.length - 1] = hardline;\n }\n if (endsWithLinebreak(text, 2)) {\n docs = [...docs, hardline];\n }\n\n return docs;\n}\n\nfunction expressionParser(\n text: string,\n parsers: BuiltInParsers,\n opts: ParserOptions\n) {\n const ast = parsers.babel(text, opts);\n // const ast = parsers.babel(text, parsers, opts);\n\n return { ...ast, program: ast.program.body[0].expression };\n}\n\nlet markdownComponentName = new Set();\n\nfunction embed(\n path: AstPath,\n // eslint-disable-next-line @typescript-eslint/no-shadow\n print: printFn,\n textToDoc: (text: string, options: object) => Doc,\n opts: ParserOptions\n) {\n // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // @ts-ignore\n if (!opts.__astro) opts.__astro = {};\n\n const node = path.getValue();\n\n if (!node) return null;\n\n if (node.type === 'expression') {\n const textContent = printRaw(node);\n\n let content: Doc;\n\n content = textToDoc(forceIntoExpression(textContent), {\n ...opts,\n parser: expressionParser,\n semi: false,\n });\n content = stripTrailingHardline(content);\n\n // if (node.children[0].value) {\n // content = textToDoc(forceIntoExpression(textContent), { parser: expressionParser });\n // } else {\n // content = textToDoc(forceIntoExpression(node.children[0].value), { parser: expressionParser });\n // }\n return [\n '{',\n // printJS(path, print, 'expression', {\n // forceSingleLine: isInsideQuotedAttribute(path),\n // forceSingleQuote: opts.jsxSingleQuote,\n // }),\n content,\n '}',\n ];\n }\n\n // ATTRIBUTE WITH EXPRESSION AS VALUE\n if (node.type === 'attribute' && node.kind === 'expression') {\n const value = node.value.trim();\n const name = node.name.trim();\n let attrNodeValue = textToDoc(forceIntoExpression(value), {\n ...opts,\n parser: expressionParser,\n semi: false,\n });\n attrNodeValue = stripTrailingHardline(attrNodeValue);\n // if (Array.isArray(attrNodeValue) && attrNodeValue[0] === ';') {\n // attrNodeValue = attrNodeValue.slice(1);\n // }\n if (name === value && opts.astroAllowShorthand) {\n return [line, '{', attrNodeValue, '}'];\n }\n return [line, name, '=', '{', attrNodeValue, '}'];\n }\n\n // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // @ts-ignore\n // if (node.isJS) {\n // try {\n // const embeddedopts = {\n // parser: expressionParser,\n // };\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // if (node.forceSingleQuote) {\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // embeddedopts.singleQuote = true;\n // }\n\n // const docs = textToDoc(forceIntoExpression(getText(node, opts)), embeddedopts);\n // // TODO: ADD TYPES OR FIND ANOTHER WAY TO ACHIVE THIS\n // // @ts-ignore\n // return node.forceSingleLine ? removeLines(docs) : docs;\n // } catch (e) {\n // return getText(node, opts);\n // }\n // }\n\n if (node.type === 'frontmatter') {\n markdownComponentName = getMarkdownName(node.value);\n return [\n group([\n '---',\n hardline,\n textToDoc(node.value, { ...opts, parser: 'typescript' }),\n '---',\n hardline,\n ]),\n hardline,\n ];\n }\n\n // format script element\n if (node.type === 'element' && node.name === 'script') {\n const scriptContent = node.children[0].value;\n let formatttedScript = textToDoc(scriptContent, {\n ...opts,\n parser: 'typescript',\n });\n formatttedScript = stripTrailingHardline(formatttedScript);\n\n // print\n const attributes = path.map(print, 'attributes');\n const openingTag = group([\n '<script',\n indent(group(attributes)),\n softline,\n '>',\n ]);\n return [\n openingTag,\n indent([hardline, formatttedScript]),\n hardline,\n '</script>',\n ];\n }\n // if (isTextNode(node)) {\n // const parent = path.getParentNode();\n\n // if (parent && parent.type === 'Element' && parent.name === 'script') {\n // const formatttedScript = textToDoc(node.data, { ...opts, parser: 'typescript' });\n // return stripTrailingHardline(formatttedScript);\n // }\n // }\n\n // format style element\n if (node.type === 'element' && node.name === 'style') {\n const styleTagContent = node.children[0].value.trim();\n\n const supportedStyleLangValues = ['css', 'scss', 'sass'];\n let parserLang = 'css';\n\n if (node.attributes) {\n const langAttribute = node.attributes.filter((x) => x.name === 'lang');\n if (langAttribute.length) {\n const styleLang = langAttribute[0].value.toLowerCase();\n if (supportedStyleLangValues.includes(styleLang))\n parserLang = styleLang;\n }\n }\n\n switch (parserLang) {\n case 'css':\n case 'scss': {\n // the css parser appends an extra indented hardline, which we want outside of the `indent()`,\n // so we remove the last element of the array\n let formattedStyles = textToDoc(styleTagContent, {\n ...opts,\n parser: parserLang,\n });\n\n formattedStyles = stripTrailingHardline(formattedStyles);\n\n // print\n const attributes = path.map(print, 'attributes');\n const openingTag = group([\n '<style',\n indent(group(attributes)),\n softline,\n '>',\n ]);\n return [\n openingTag,\n indent([hardline, formattedStyles]),\n hardline,\n '</style>',\n ];\n }\n case 'sass': {\n const lineEnding =\n opts.endOfLine.toUpperCase() === 'CRLF' ? 'CRLF' : 'LF';\n const sassOptions: Partial<SassFormatterConfig> = {\n tabSize: opts.tabWidth,\n insertSpaces: !opts.useTabs,\n lineEnding,\n };\n\n // dedent the .sass, otherwise SassFormatter gets indentation wrong\n const { result: raw } = manualDedent(styleTagContent);\n\n // format\n const formattedSassIndented = SassFormatter.Format(\n raw,\n sassOptions\n ).trim();\n\n // print\n const formattedSass = join(hardline, formattedSassIndented.split('\\n'));\n const attributes = path.map(print, 'attributes');\n const openingTag = group([\n '<style',\n indent(group(attributes)),\n softline,\n '>',\n ]);\n return [\n openingTag,\n indent(group([hardline, formattedSass])),\n hardline,\n '</style>',\n ];\n }\n }\n }\n\n // MARKDOWN COMPONENT\n if (node.type === 'component' && markdownComponentName.has(node.name)) {\n let content = printRaw(node);\n\n // dedent the content\n content = content.replace(/\\r\\n/g, '\\n');\n const contentArr = content.split('\\n').map((s) => s.trimStart());\n content = contentArr.join('\\n');\n\n // format\n let formatttedMarkdown = textToDoc(content, {\n ...opts,\n parser: 'markdown',\n });\n formatttedMarkdown = stripTrailingHardline(formatttedMarkdown);\n\n // return formatttedMarkdown;\n const attributes = path.map(print, 'attributes');\n const openingTag = group([\n `<${node.name}`,\n indent(group(attributes)),\n softline,\n '>',\n ]);\n return [\n openingTag,\n indent(group([hardline, formatttedMarkdown])),\n hardline,\n `</${node.name}>`,\n ];\n }\n\n return null;\n}\n\nfunction hasPrettierIgnore(path: AstP<CommentNode>) {\n // const node = path.getNode();\n\n // if (!node || !Array.isArray(node.comments)) return false;\n\n // const hasIgnore = node.comments.some(\n // (comment: any) => comment.data.includes('prettier-ignore') && !comment.data.includes('prettier-ignore-start') && !comment.data.includes('prettier-ignore-end')\n // );\n // return hasIgnore;\n return false;\n}\n\nconst printer: Printer = {\n print,\n printComment,\n embed,\n hasPrettierIgnore,\n};\n\nexport default printer;\n","import { SupportOption } from 'prettier';\n\ndeclare module 'prettier' {\n // eslint-disable-next-line @typescript-eslint/no-empty-interface\n interface RequiredOptions extends PluginOptions {}\n}\n\nexport interface PluginOptions {\n astroSortOrder: SortOrder;\n astroAllowShorthand: boolean;\n}\n\nexport const options: Record<keyof PluginOptions, SupportOption> = {\n astroSortOrder: {\n since: '0.0.1',\n category: 'Astro',\n type: 'choice',\n default: 'markup | styles',\n description: 'Sort order for markup, scripts, and styles',\n choices: [\n {\n value: 'markup | styles',\n description: 'markup | styles',\n },\n {\n value: 'styles | markup',\n description: 'styles | markup',\n },\n ],\n },\n astroAllowShorthand: {\n since: '0.0.10',\n category: 'Astro',\n type: 'boolean',\n default: true,\n description:\n 'Enable/disable attribute shorthand if attribute name and expression are the same',\n },\n};\n\nexport const parseSortOrder = (sortOrder: SortOrder): SortOrderPart[] =>\n sortOrder.split(' | ') as SortOrderPart[];\n\nexport type SortOrder = 'markup | styles' | 'styles | markup';\n\nexport type SortOrderPart = 'markup' | 'styles';\n","import parse from './parse';\nimport printer from './printer';\nimport { options } from './options';\nimport { Parser, Printer, SupportLanguage } from 'prettier';\n\nexport const languages: Partial<SupportLanguage>[] = [\n {\n name: 'astro',\n parsers: ['astro'],\n extensions: ['.astro'],\n vscodeLanguageIds: ['astro'],\n },\n];\n\nexport const parsers: Record<string, Parser> = {\n astro: {\n parse,\n astFormat: 'astro',\n locStart: (node) => node.start,\n locEnd: (node) => node.end,\n },\n};\n\nexport const printers: Record<string, Printer> = {\n astro: printer,\n};\n\nconst defaultOptions = {\n tabWidth: 2,\n};\n\nexport { options, defaultOptions };\n"],"names":["makeSynchronous","_doc","SassFormatter"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prettier-plugin-astro",
3
- "version": "0.1.0-next.1",
3
+ "version": "0.1.0-next.2",
4
4
  "type": "commonjs",
5
5
  "description": "A Prettier Plugin for formatting Astro files",
6
6
  "main": "dist/index.js",
@@ -8,7 +8,7 @@
8
8
  "dist/**"
9
9
  ],
10
10
  "engines": {
11
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0",
11
+ "node": "^14.13.1 || >=16.0.0",
12
12
  "npm": ">=6.14.0"
13
13
  },
14
14
  "homepage": "https://github.com/snowpackjs/prettier-plugin-astro/",
@@ -29,15 +29,15 @@
29
29
  "scripts": {
30
30
  "build": "rollup -c",
31
31
  "dev": "rollup -c -w",
32
- "test": "ava test/*.test.ts",
33
- "test:w": "ava -w test/*.test.ts",
32
+ "test": "vitest run",
33
+ "test:w": "vitest",
34
34
  "release": "yarn build && changeset publish",
35
35
  "lint": "eslint .",
36
36
  "fix": "yarn lint --fix",
37
37
  "format": "prettier -w ."
38
38
  },
39
39
  "dependencies": {
40
- "@astrojs/compiler": "^0.12.1",
40
+ "@astrojs/compiler": "^0.13.1",
41
41
  "make-synchronous": "0.1.1",
42
42
  "prettier": "^2.4.1",
43
43
  "sass-formatter": "^0.7.2"
@@ -47,15 +47,18 @@
47
47
  "@rollup/plugin-commonjs": "^21.0.0",
48
48
  "@rollup/plugin-node-resolve": "^13.0.5",
49
49
  "@types/prettier": "^2.4.1",
50
- "ava": "4.0.1",
50
+ "@typescript-eslint/eslint-plugin": "^5.16.0",
51
+ "@typescript-eslint/parser": "^5.16.0",
52
+ "@vitest/ui": "^0.7.7",
51
53
  "eslint": "^8.0.0",
52
- "eslint-plugin-ava": "^13.0.0",
53
- "eslint-plugin-node": "^11.1.0",
54
+ "eslint-config-prettier": "^8.5.0",
55
+ "eslint-plugin-prettier": "^4.0.0",
54
56
  "eslint-plugin-prettier-doc": "^1.0.1",
55
57
  "rollup": "^2.58.0",
56
58
  "rollup-plugin-typescript": "^1.0.1",
57
59
  "ts-node": "^10.2.1",
58
60
  "tslib": "^2.3.1",
59
- "typescript": "^4.4.3"
61
+ "typescript": "^4.4.3",
62
+ "vitest": "^0.7.7"
60
63
  }
61
64
  }