-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathlibraryExampleStudyGenerator.cjs
100 lines (88 loc) · 3.55 KB
/
libraryExampleStudyGenerator.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* eslint-disable @typescript-eslint/no-require-imports */
// This script generates example study configurations for libraries in the public/libraries directory
// It creates a new directory for each library (library-{name}) with a basic config.json and an assets folder
// It will run libraryDocGenerator.cjs to generate library.md files, which will be placed in the assets/ folder of each example study to serve as the introduction component
// The script will skip:
// - Libraries that already have a library-{name} folder (e.g. if library-demographics exists)
const fs = require('fs');
const path = require('path');
const { exec } = require('child_process');
// Path to the libraries directory containing reusable components and sequences
const librariesPath = path.join(__dirname, './public/libraries');
const publicPath = path.join(__dirname, './public');
// Create example study config template
const createExampleConfig = (libraryName) => ({
$schema: 'https://raw.githubusercontent.com/revisit-studies/study/dev/src/parser/StudyConfigSchema.json',
studyMetadata: {
title: `${libraryName} Example Study`,
version: '1.0.0',
authors: ['The reVISit Team'],
date: new Date().toISOString().split('T')[0],
description: `Example study using the ${libraryName} library.`,
organizations: ['University of Utah', 'WPI', 'University of Toronto'],
},
uiConfig: {
contactEmail: '',
logoPath: 'revisitAssets/revisitLogoSquare.svg',
withProgressBar: true,
sidebar: true,
},
importedLibraries: [libraryName],
components: {
introduction: {
type: 'markdown',
path: `library-${libraryName}/assets/${libraryName}.md`,
response: [],
},
},
sequence: {
order: 'fixed',
components: [
'introduction',
],
},
});
// Process each library
const libraries = fs.readdirSync(librariesPath);
libraries.forEach((library) => {
// Skip hidden folders and files, and libraries in skip list
if (library.startsWith('.')) return;
const exampleFolderName = `library-${library}`;
const examplePath = path.join(publicPath, exampleFolderName);
// Check if example folder already exists
if (!fs.existsSync(examplePath)) {
// Create the example folder
fs.mkdirSync(examplePath);
// eslint-disable-next-line no-console
console.log(`Created ${exampleFolderName} directory`);
// Create assets directory
const assetsPath = path.join(examplePath, 'assets');
fs.mkdirSync(assetsPath);
// eslint-disable-next-line no-console
console.log(`Created ${exampleFolderName}/assets directory`);
}
// Create config.json
const configPath = path.join(examplePath, 'config.json');
const configContent = createExampleConfig(library);
fs.writeFileSync(configPath, JSON.stringify(configContent, null, 2));
// eslint-disable-next-line no-console
console.log(`Created/Updated ${exampleFolderName}/config.json`);
});
// eslint-disable-next-line no-console
console.log('Library example generation complete');
// Run libraryDocGenerator.cjs after example generation
// To generate the library.md files which will be placed in the assets/ folder of each example study for the introduction component
// eslint-disable-next-line no-console
console.log('Generating library documentation...');
exec('node libraryDocGenerator.cjs', (error, stdout, stderr) => {
if (error) {
console.error(`Error running libraryDocGenerator.cjs: ${error}`);
return;
}
if (stderr) {
console.error(`libraryDocGenerator.cjs stderr: ${stderr}`);
return;
}
// eslint-disable-next-line no-console
console.log(stdout);
});