Skip to content

Commit 86b6143

Browse files
feat: support for partials
1 parent c4f15d3 commit 86b6143

File tree

6 files changed

+56
-6
lines changed

6 files changed

+56
-6
lines changed

markdoc.config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"id": "my-site",
3+
"id": "demo-site",
44
"path": "apps/demo",
55
"schema": {
66
"path": "apps/demo/.svelte-kit/markdoc_schema.js",

packages/process/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-markdoc-preprocess",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A Svelte preprocessor that allows you to use Markdoc.",
55
"type": "commonjs",
66
"keywords": [

packages/process/src/config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ export type Config = {
1313
* Absoulute path to the .svelte file exporting components for tags.
1414
*/
1515
tags: string | null;
16+
/**
17+
* Absoulute path to the folder for partials.
18+
*/
19+
partials: string | null;
1620
/**
1721
* Generate schema files under `./svelte-kit/markdoc-schema.json` to be used with the official [Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=Stripe.markdoc-language-support).
1822
*/

packages/process/src/helpers.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { lstatSync, readdirSync } from 'fs';
2+
3+
export function get_all_files(path: string): string[] {
4+
const files = [];
5+
for (const file of readdirSync(path)) {
6+
const fullPath = path + '/' + file;
7+
if (lstatSync(fullPath).isDirectory())
8+
get_all_files(fullPath).forEach((x) => files.push(file + '/' + x));
9+
else files.push(file);
10+
}
11+
return files;
12+
}

packages/process/src/processor.ts

+3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ const processor = (
88
layouts = null,
99
nodes = null,
1010
tags = null,
11+
partials = null,
1112
config = null,
1213
generateSchema = true,
1314
}: Config = {
1415
extensions: ['.markdoc'],
1516
layouts: null,
1617
nodes: null,
1718
tags: null,
19+
partials: null,
1820
config: null,
1921
generateSchema: true,
2022
},
@@ -38,6 +40,7 @@ const processor = (
3840
generate_schema: generateSchema,
3941
nodes_file: nodes,
4042
tags_file: tags,
43+
partials_dir: partials,
4144
});
4245

4346
return {

packages/process/src/transformer.ts

+35-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ import {
88
Tag,
99
ConfigType,
1010
} from '@markdoc/markdoc';
11-
import { existsSync, readFileSync, writeFileSync } from 'fs';
11+
import {
12+
existsSync,
13+
lstatSync,
14+
readFileSync,
15+
readdirSync,
16+
writeFileSync,
17+
} from 'fs';
1218
import { load as loadYaml } from 'js-yaml';
1319
import { parse as svelteParse, walk } from 'svelte/compiler';
1420
import { dirname, join } from 'path';
@@ -23,6 +29,7 @@ import {
2329
getNameOfDeclaration,
2430
isVariableStatement,
2531
} from 'typescript';
32+
import { get_all_files } from './helpers';
2633

2734
type Var = {
2835
name: string;
@@ -33,13 +40,15 @@ export function transformer({
3340
content,
3441
nodes_file,
3542
tags_file,
43+
partials_dir,
3644
layouts,
3745
generate_schema,
3846
config,
3947
}: {
4048
content: string;
4149
nodes_file: Config['nodes'];
4250
tags_file: Config['tags'];
51+
partials_dir: Config['partials'];
4352
layouts: Config['layouts'];
4453
generate_schema: Config['generateSchema'];
4554
config: Config['config'];
@@ -72,6 +81,7 @@ export function transformer({
7281
const has_tags = Object.keys(tags).length > 0;
7382
const nodes = prepare_nodes(nodes_file);
7483
const has_nodes = Object.keys(nodes).length > 0;
84+
const partials = prepare_partials(partials_dir);
7585

7686
/**
7787
* add import for tags
@@ -107,12 +117,15 @@ export function transformer({
107117
...config?.nodes,
108118
...nodes,
109119
},
120+
partials: {
121+
...config?.partials,
122+
...partials,
123+
},
110124
variables: {
111-
frontmatter,
112125
...config?.variables,
126+
frontmatter,
113127
},
114128
functions: config?.functions,
115-
partials: config?.partials,
116129
validation: config?.validation,
117130
};
118131

@@ -348,6 +361,24 @@ function prepare_tags(tags_file: Config['tags']): Record<string, Schema> {
348361
return tags;
349362
}
350363

364+
function prepare_partials(
365+
folder: Config['partials'],
366+
): Record<string, ReturnType<typeof markdocParse>> {
367+
if (!folder) {
368+
return {};
369+
}
370+
371+
return get_all_files(folder).reduce<ReturnType<typeof prepare_partials>>(
372+
(carry, file) => {
373+
carry[file] = markdocParse(
374+
readFileSync(join(folder, file), 'utf8'),
375+
);
376+
return carry;
377+
},
378+
{},
379+
);
380+
}
381+
351382
function each_exported_var(filepath: string): Array<[string, string]> {
352383
const data = readFileSync(filepath, 'utf8');
353384
const ast = svelteParse(data);
@@ -399,7 +430,7 @@ function create_schema(tags: Record<string, Schema>): void {
399430
return;
400431
}
401432
}
402-
writeFileSync(target_file, `export default { tags: ${object} };`);
433+
writeFileSync(target_file, content);
403434
} catch (err) {
404435
console.error(err);
405436
}

0 commit comments

Comments
 (0)