-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/4051_sequence_diagram-multi-direc…
…tional-arrow
- Loading branch information
Showing
428 changed files
with
18,150 additions
and
9,855 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* Shared common options for both ESBuild and Vite | ||
*/ | ||
export const packageOptions = { | ||
parser: { | ||
name: 'mermaid-parser', | ||
packageName: 'parser', | ||
file: 'index.ts', | ||
}, | ||
mermaid: { | ||
name: 'mermaid', | ||
packageName: 'mermaid', | ||
file: 'mermaid.ts', | ||
}, | ||
'mermaid-example-diagram': { | ||
name: 'mermaid-example-diagram', | ||
packageName: 'mermaid-example-diagram', | ||
file: 'detector.ts', | ||
}, | ||
'mermaid-zenuml': { | ||
name: 'mermaid-zenuml', | ||
packageName: 'mermaid-zenuml', | ||
file: 'detector.ts', | ||
}, | ||
'mermaid-flowchart-elk': { | ||
name: 'mermaid-flowchart-elk', | ||
packageName: 'mermaid-flowchart-elk', | ||
file: 'detector.ts', | ||
}, | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { generate } from 'langium-cli'; | ||
|
||
export async function generateLangium() { | ||
await generate({ file: `./packages/parser/langium-config.json` }); | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
import { load, JSON_SCHEMA } from 'js-yaml'; | ||
import assert from 'node:assert'; | ||
import Ajv2019, { type JSONSchemaType } from 'ajv/dist/2019.js'; | ||
import type { MermaidConfig, BaseDiagramConfig } from '../packages/mermaid/src/config.type.js'; | ||
|
||
/** | ||
* All of the keys in the mermaid config that have a mermaid diagram config. | ||
*/ | ||
const MERMAID_CONFIG_DIAGRAM_KEYS = [ | ||
'flowchart', | ||
'sequence', | ||
'gantt', | ||
'journey', | ||
'class', | ||
'state', | ||
'er', | ||
'pie', | ||
'quadrantChart', | ||
'xyChart', | ||
'requirement', | ||
'mindmap', | ||
'timeline', | ||
'gitGraph', | ||
'c4', | ||
'sankey', | ||
'block', | ||
'packet', | ||
] as const; | ||
|
||
/** | ||
* Generate default values from the JSON Schema. | ||
* | ||
* AJV does not support nested default values yet (or default values with $ref), | ||
* so we need to manually find them (this may be fixed in ajv v9). | ||
* | ||
* @param mermaidConfigSchema - The Mermaid JSON Schema to use. | ||
* @returns The default mermaid config object. | ||
*/ | ||
function generateDefaults(mermaidConfigSchema: JSONSchemaType<MermaidConfig>) { | ||
const ajv = new Ajv2019({ | ||
useDefaults: true, | ||
allowUnionTypes: true, | ||
strict: true, | ||
}); | ||
|
||
ajv.addKeyword({ | ||
keyword: 'meta:enum', // used by jsonschema2md | ||
errors: false, | ||
}); | ||
ajv.addKeyword({ | ||
keyword: 'tsType', // used by json-schema-to-typescript | ||
errors: false, | ||
}); | ||
|
||
// ajv currently doesn't support nested default values, see https://github.com/ajv-validator/ajv/issues/1718 | ||
// (may be fixed in v9) so we need to manually use sub-schemas | ||
const mermaidDefaultConfig = {}; | ||
|
||
assert.ok(mermaidConfigSchema.$defs); | ||
const baseDiagramConfig = mermaidConfigSchema.$defs.BaseDiagramConfig; | ||
|
||
for (const key of MERMAID_CONFIG_DIAGRAM_KEYS) { | ||
const subSchemaRef = mermaidConfigSchema.properties[key].$ref; | ||
const [root, defs, defName] = subSchemaRef.split('/'); | ||
assert.strictEqual(root, '#'); | ||
assert.strictEqual(defs, '$defs'); | ||
const subSchema = { | ||
$schema: mermaidConfigSchema.$schema, | ||
$defs: mermaidConfigSchema.$defs, | ||
...mermaidConfigSchema.$defs[defName], | ||
} as JSONSchemaType<BaseDiagramConfig>; | ||
|
||
const validate = ajv.compile(subSchema); | ||
|
||
mermaidDefaultConfig[key] = {}; | ||
|
||
for (const required of subSchema.required ?? []) { | ||
if (subSchema.properties[required] === undefined && baseDiagramConfig.properties[required]) { | ||
mermaidDefaultConfig[key][required] = baseDiagramConfig.properties[required].default; | ||
} | ||
} | ||
if (!validate(mermaidDefaultConfig[key])) { | ||
throw new Error( | ||
`schema for subconfig ${key} does not have valid defaults! Errors were ${JSON.stringify( | ||
validate.errors, | ||
undefined, | ||
2 | ||
)}` | ||
); | ||
} | ||
} | ||
|
||
const validate = ajv.compile(mermaidConfigSchema); | ||
|
||
if (!validate(mermaidDefaultConfig)) { | ||
throw new Error( | ||
`Mermaid config JSON Schema does not have valid defaults! Errors were ${JSON.stringify( | ||
validate.errors, | ||
undefined, | ||
2 | ||
)}` | ||
); | ||
} | ||
|
||
return mermaidDefaultConfig; | ||
} | ||
|
||
export const loadSchema = (src: string, filename: string): JSONSchemaType<MermaidConfig> => { | ||
const jsonSchema = load(src, { | ||
filename, | ||
// only allow JSON types in our YAML doc (will probably be default in YAML 1.3) | ||
// e.g. `true` will be parsed a boolean `true`, `True` will be parsed as string `"True"`. | ||
schema: JSON_SCHEMA, | ||
}) as JSONSchemaType<MermaidConfig>; | ||
return jsonSchema; | ||
}; | ||
|
||
export const getDefaults = (schema: JSONSchemaType<MermaidConfig>) => { | ||
return `export default ${JSON.stringify(generateDefaults(schema), undefined, 2)};`; | ||
}; | ||
|
||
export const getSchema = (schema: JSONSchemaType<MermaidConfig>) => { | ||
return `export default ${JSON.stringify(schema, undefined, 2)};`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { packageOptions } from './common.js'; | ||
import { execSync } from 'child_process'; | ||
|
||
const buildType = (packageName: string) => { | ||
console.log(`Building types for ${packageName}`); | ||
try { | ||
const out = execSync(`tsc -p ./packages/${packageName}/tsconfig.json --emitDeclarationOnly`); | ||
out.length > 0 && console.log(out.toString()); | ||
} catch (e) { | ||
console.error(e); | ||
e.stdout.length > 0 && console.error(e.stdout.toString()); | ||
e.stderr.length > 0 && console.error(e.stderr.toString()); | ||
} | ||
}; | ||
|
||
for (const { packageName } of Object.values(packageOptions)) { | ||
buildType(packageName); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
# This file contains coding related terms | ||
ALPHANUM | ||
antiscript | ||
APPLYCLASS | ||
ARROWHEADSTYLE | ||
ARROWTYPE | ||
autonumber | ||
axisl-line | ||
Bigdecimal | ||
birel | ||
BIREL | ||
bqstring | ||
BQUOTE | ||
bramp | ||
BRKT | ||
callbackargs | ||
callbackname | ||
classdef | ||
classdefid | ||
classentity | ||
classname | ||
COLONSEP | ||
COMPOSIT_STATE | ||
concat | ||
controlx | ||
controly | ||
CSSCLASS | ||
CYLINDEREND | ||
CYLINDERSTART | ||
datakey | ||
DEND | ||
descr | ||
distp | ||
distq | ||
divs | ||
docref | ||
DOMID | ||
doublecircle | ||
DOUBLECIRCLEEND | ||
DOUBLECIRCLESTART | ||
DQUOTE | ||
DSTART | ||
edgesep | ||
EMPTYSTR | ||
enddate | ||
ERDIAGRAM | ||
flatmap | ||
forwardable | ||
frontmatter | ||
funs | ||
gantt | ||
GENERICTYPE | ||
getBoundarys | ||
grammr | ||
graphtype | ||
iife | ||
interp | ||
introdcued | ||
INVTRAPEND | ||
INVTRAPSTART | ||
JDBC | ||
jison | ||
Kaufmann | ||
keyify | ||
LABELPOS | ||
LABELTYPE | ||
lcov | ||
LEFTOF | ||
Lexa | ||
linebreak | ||
LINETYPE | ||
LINKSTYLE | ||
LLABEL | ||
loglevel | ||
LOGMSG | ||
lookaheads | ||
mdast | ||
metafile | ||
minlen | ||
Mstartx | ||
MULT | ||
NODIR | ||
NSTR | ||
outdir | ||
Qcontrolx | ||
reinit | ||
rels | ||
reqs | ||
rewritelinks | ||
rgba | ||
RIGHTOF | ||
sankey | ||
sequencenumber | ||
shrc | ||
signaltype | ||
someclass | ||
SPACELINE | ||
SPACELIST | ||
STADIUMEND | ||
STADIUMSTART | ||
startdate | ||
startx | ||
starty | ||
STMNT | ||
stopx | ||
stopy | ||
strikethrough | ||
stringifying | ||
struct | ||
STYLECLASS | ||
STYLEOPTS | ||
subcomponent | ||
subcomponents | ||
SUBROUTINEEND | ||
SUBROUTINESTART | ||
Subschemas | ||
substr | ||
TAGEND | ||
TAGSTART | ||
techn | ||
TESTSTR | ||
TEXTDATA | ||
TEXTLENGTH | ||
titlevalue | ||
topbar | ||
TRAPEND | ||
TRAPSTART | ||
ts-nocheck | ||
tsdoc | ||
typeof | ||
typestr | ||
unshift | ||
verifymethod | ||
VERIFYMTHD | ||
WARN_DOCSDIR_DOESNT_MATCH | ||
xhost | ||
yaxis | ||
yfunc | ||
yytext | ||
zenuml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Contributors to mermaidjs, one per line | ||
Ashish Jain | ||
cpettitt | ||
Dong Cai | ||
Nikolay Rozhkov | ||
Peng Xiao | ||
subhash-halder | ||
Vinod Sidharth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json | ||
|
||
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json | ||
|
||
dictionaryDefinitions: | ||
- name: code-terms | ||
path: ./code-terms.txt | ||
description: A list of coding related terms. | ||
addWords: true | ||
- name: mermaid-terms | ||
path: ./mermaid-terms.txt | ||
description: A list of terms related to the mermaid project. | ||
addWords: true | ||
- name: misc-terms | ||
path: ./misc-terms.txt | ||
description: A list of miscellaneous terms. | ||
- name: 3rd-party-terms | ||
path: ./libraries.txt | ||
description: A list of 3rd party terms from dependencies. | ||
addWords: true | ||
- name: contributors | ||
path: ./contributors.txt | ||
description: A list of contributors to the mermaid project. | ||
type: 'W' | ||
addWords: true | ||
|
||
# cspell:disable | ||
- name: suggestions | ||
words: | ||
- none | ||
suggestWords: | ||
- seperator:separator | ||
- vertice:vertex | ||
# cspell:enable | ||
|
||
patterns: | ||
- name: character-set-cyrillic | ||
pattern: '/\p{Script_Extensions=Cyrillic}+/gu' | ||
- name: svg-block | ||
pattern: '<svg[\S\s]+?</svg>' | ||
- name: json-property | ||
pattern: '/"[\w/@-]+":/g' | ||
|
||
dictionaries: | ||
- mermaid-terms | ||
- suggestions | ||
- contributors | ||
|
||
ignorePaths: | ||
- '*.txt' # do not spell check local dictionaries | ||
|
||
# cspell:dictionary misc-terms |
Oops, something went wrong.