mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
Merge pull request #3469 from mermaid-js/sidv/mergeRelease
Merge release 9.1.7
This commit is contained in:
commit
2d9f25b163
@ -38,7 +38,15 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<pre class="mermaid2" style="width: 50%">
|
||||||
|
flowchart LR
|
||||||
|
a ---
|
||||||
|
</pre>
|
||||||
<pre class="mermaid" style="width: 50%">
|
<pre class="mermaid" style="width: 50%">
|
||||||
|
flowchart LR
|
||||||
|
a2 ---
|
||||||
|
</pre>
|
||||||
|
<pre class="mermaid2" style="width: 50%">
|
||||||
flowchart LR
|
flowchart LR
|
||||||
classDef aPID stroke:#4e4403,fill:#fdde29,color:#4e4403,rx:5px,ry:5px;
|
classDef aPID stroke:#4e4403,fill:#fdde29,color:#4e4403,rx:5px,ry:5px;
|
||||||
classDef crm stroke:#333333,fill:#DCDCDC,color:#333333,rx:5px,ry:5px;
|
classDef crm stroke:#333333,fill:#DCDCDC,color:#333333,rx:5px,ry:5px;
|
||||||
@ -73,7 +81,31 @@ flowchart TD
|
|||||||
</pre>
|
</pre>
|
||||||
<pre class="mermaid" style="width: 50%">
|
<pre class="mermaid" style="width: 50%">
|
||||||
flowchart TD
|
flowchart TD
|
||||||
id
|
|
||||||
|
release-branch[Create Release Branch]:::relClass
|
||||||
|
develop-branch[Update Develop Branch]:::relClass
|
||||||
|
github-release-draft[GitHub Release Draft]:::relClass
|
||||||
|
trigger-pipeline[Trigger Jenkins pipeline]:::fixClass
|
||||||
|
github-release[GitHub Release]:::postClass
|
||||||
|
|
||||||
|
build-ready --> release-branch
|
||||||
|
build-ready --> develop-branch
|
||||||
|
release-branch --> jenkins-release-build
|
||||||
|
jenkins-release-build --> github-release-draft
|
||||||
|
jenkins-release-build --> install-release
|
||||||
|
install-release --> verify-release
|
||||||
|
jenkins-release-build --> announce
|
||||||
|
github-release-draft --> github-release
|
||||||
|
verify-release --> verify-check
|
||||||
|
verify-check -- Yes --> github-release
|
||||||
|
verify-check -- No --> release-fix
|
||||||
|
release-fix --> release-branch-pr
|
||||||
|
verify-check -- No --> delete-artifacts
|
||||||
|
release-branch-pr --> trigger-pipeline
|
||||||
|
delete-artifacts --> trigger-pipeline
|
||||||
|
trigger-pipeline --> jenkins-release-build
|
||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
<pre class="mermaid2" style="width: 50%">
|
<pre class="mermaid2" style="width: 50%">
|
||||||
flowchart LR
|
flowchart LR
|
||||||
@ -357,6 +389,11 @@ flowchart TD
|
|||||||
|
|
||||||
document.getElementsByTagName('body')[0].appendChild(div);
|
document.getElementsByTagName('body')[0].appendChild(div);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mermaid.parseError = function (err, hash) {
|
||||||
|
console.error('In parse error:');
|
||||||
|
console.error(err);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css"
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css"
|
||||||
/>
|
/>
|
||||||
<script src="//cdn.jsdelivr.net/npm/mermaid@9.1.6/dist/mermaid.min.js"></script>
|
<script src="//cdn.jsdelivr.net/npm/mermaid@9.1.7/dist/mermaid.min.js"></script>
|
||||||
<!-- <script src="http://localhost:9000/mermaid.js"></script> -->
|
<!-- <script src="http://localhost:9000/mermaid.js"></script> -->
|
||||||
<script
|
<script
|
||||||
defer
|
defer
|
||||||
|
@ -97,7 +97,29 @@ import journeyDb from '../diagrams/user-journey/journeyDb';
|
|||||||
import journeyRenderer from '../diagrams/user-journey/journeyRenderer';
|
import journeyRenderer from '../diagrams/user-journey/journeyRenderer';
|
||||||
import journeyStyles from '../diagrams/user-journey/styles';
|
import journeyStyles from '../diagrams/user-journey/styles';
|
||||||
|
|
||||||
|
import errorRenderer from '../diagrams/error/errorRenderer';
|
||||||
|
import errorStyles from '../diagrams/error/styles';
|
||||||
|
|
||||||
export const addDiagrams = () => {
|
export const addDiagrams = () => {
|
||||||
|
registerDiagram(
|
||||||
|
'error',
|
||||||
|
// Special diagram with error messages but setup as a regular diagram
|
||||||
|
{
|
||||||
|
db: {},
|
||||||
|
styles: errorStyles,
|
||||||
|
renderer: errorRenderer,
|
||||||
|
parser: {
|
||||||
|
parser: { yy: {} },
|
||||||
|
parse: () => {
|
||||||
|
// no op
|
||||||
|
},
|
||||||
|
},
|
||||||
|
init: () => {
|
||||||
|
// no op
|
||||||
|
},
|
||||||
|
},
|
||||||
|
(text) => text.toLowerCase().trim() === 'error'
|
||||||
|
);
|
||||||
registerDiagram(
|
registerDiagram(
|
||||||
'c4',
|
'c4',
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/** Created by knut on 14-12-11. */
|
/** Created by knut on 14-12-11. */
|
||||||
import { select } from 'd3';
|
import { select } from 'd3';
|
||||||
import { log } from './logger';
|
import { log } from '../../logger';
|
||||||
import { getErrorMessage } from './utils';
|
import { getErrorMessage } from '../../utils';
|
||||||
|
|
||||||
let conf = {};
|
let conf = {};
|
||||||
|
|
||||||
@ -72,22 +72,22 @@ export const draw = (id: string, mermaidVersion: string) => {
|
|||||||
|
|
||||||
g.append('text') // text label for the x axis
|
g.append('text') // text label for the x axis
|
||||||
.attr('class', 'error-text')
|
.attr('class', 'error-text')
|
||||||
.attr('x', 1240)
|
.attr('x', 1440)
|
||||||
.attr('y', 250)
|
.attr('y', 250)
|
||||||
.attr('font-size', '150px')
|
.attr('font-size', '150px')
|
||||||
.style('text-anchor', 'middle')
|
.style('text-anchor', 'middle')
|
||||||
.text('Syntax error in graph');
|
.text('Syntax error in graph');
|
||||||
g.append('text') // text label for the x axis
|
g.append('text') // text label for the x axis
|
||||||
.attr('class', 'error-text')
|
.attr('class', 'error-text')
|
||||||
.attr('x', 1050)
|
.attr('x', 1250)
|
||||||
.attr('y', 400)
|
.attr('y', 400)
|
||||||
.attr('font-size', '100px')
|
.attr('font-size', '100px')
|
||||||
.style('text-anchor', 'middle')
|
.style('text-anchor', 'middle')
|
||||||
.text('mermaid version ' + mermaidVersion);
|
.text('mermaid version ' + mermaidVersion);
|
||||||
|
|
||||||
svg.attr('height', 100);
|
svg.attr('height', 100);
|
||||||
svg.attr('width', 400);
|
svg.attr('width', 500);
|
||||||
svg.attr('viewBox', '768 0 512 512');
|
svg.attr('viewBox', '768 0 912 512');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
log.error('Error while rendering info diagram');
|
log.error('Error while rendering info diagram');
|
||||||
log.error(getErrorMessage(e));
|
log.error(getErrorMessage(e));
|
3
src/diagrams/error/styles.js
Normal file
3
src/diagrams/error/styles.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
const getStyles = () => ``;
|
||||||
|
|
||||||
|
export default getStyles;
|
@ -91,7 +91,9 @@ const drawCommits = (svg, commits, modifyGraph) => {
|
|||||||
if (modifyGraph) {
|
if (modifyGraph) {
|
||||||
let typeClass;
|
let typeClass;
|
||||||
let commitSymbolType =
|
let commitSymbolType =
|
||||||
typeof commit.customType !== 'undefined' ? commit.customType : commit.type;
|
typeof commit.customType !== 'undefined' && commit.customType !== ''
|
||||||
|
? commit.customType
|
||||||
|
: commit.type;
|
||||||
switch (commitSymbolType) {
|
switch (commitSymbolType) {
|
||||||
case commitType.NORMAL:
|
case commitType.NORMAL:
|
||||||
typeClass = 'commit-normal';
|
typeClass = 'commit-normal';
|
||||||
|
@ -95,9 +95,11 @@ const initThrowsErrors = function (
|
|||||||
const idGenerator = new utils.initIdGenerator(conf.deterministicIds, conf.deterministicIDSeed);
|
const idGenerator = new utils.initIdGenerator(conf.deterministicIds, conf.deterministicIDSeed);
|
||||||
|
|
||||||
let txt;
|
let txt;
|
||||||
|
const errors = [];
|
||||||
|
|
||||||
// element is the current div with mermaid class
|
// element is the current div with mermaid class
|
||||||
for (const element of Array.from(nodesToProcess)) {
|
for (const element of Array.from(nodesToProcess)) {
|
||||||
|
log.info('Rendering diagram: ' + element.id);
|
||||||
/*! Check if previously processed */
|
/*! Check if previously processed */
|
||||||
if (element.getAttribute('data-processed')) {
|
if (element.getAttribute('data-processed')) {
|
||||||
continue;
|
continue;
|
||||||
@ -135,10 +137,17 @@ const initThrowsErrors = function (
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
log.warn('Catching Error (bootstrap)', error);
|
log.warn('Catching Error (bootstrap)', error);
|
||||||
// @ts-ignore: TODO Fix ts errors
|
// @ts-ignore: TODO Fix ts errors
|
||||||
// TODO: We should be throwing an error object.
|
const mermaidError = { error, str: error.str, hash: error.hash, message: error.str };
|
||||||
throw { error, message: error.str };
|
if (typeof mermaid.parseError === 'function') {
|
||||||
|
mermaid.parseError(mermaidError);
|
||||||
|
}
|
||||||
|
errors.push(mermaidError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (errors.length > 0) {
|
||||||
|
// TODO: We should be throwing an error object.
|
||||||
|
throw errors[0];
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const initialize = function (config: MermaidConfig) {
|
const initialize = function (config: MermaidConfig) {
|
||||||
|
@ -26,7 +26,7 @@ import flowDb from './diagrams/flowchart/flowDb';
|
|||||||
import flowRenderer from './diagrams/flowchart/flowRenderer';
|
import flowRenderer from './diagrams/flowchart/flowRenderer';
|
||||||
import ganttDb from './diagrams/gantt/ganttDb';
|
import ganttDb from './diagrams/gantt/ganttDb';
|
||||||
import Diagram from './Diagram';
|
import Diagram from './Diagram';
|
||||||
import errorRenderer from './errorRenderer';
|
import errorRenderer from './diagrams/error/errorRenderer';
|
||||||
import { attachFunctions } from './interactionDb';
|
import { attachFunctions } from './interactionDb';
|
||||||
import { log, setLogLevel } from './logger';
|
import { log, setLogLevel } from './logger';
|
||||||
import getStyles from './styles';
|
import getStyles from './styles';
|
||||||
@ -124,6 +124,10 @@ const render = function (
|
|||||||
cb: (svgCode: string, bindFunctions?: (element: Element) => void) => void,
|
cb: (svgCode: string, bindFunctions?: (element: Element) => void) => void,
|
||||||
container?: Element
|
container?: Element
|
||||||
): void {
|
): void {
|
||||||
|
if (!hasLoadedDiagrams) {
|
||||||
|
addDiagrams();
|
||||||
|
hasLoadedDiagrams = true;
|
||||||
|
}
|
||||||
configApi.reset();
|
configApi.reset();
|
||||||
text = text.replace(/\r\n?/g, '\n'); // parser problems on CRLF ignore all CR and leave LF;;
|
text = text.replace(/\r\n?/g, '\n'); // parser problems on CRLF ignore all CR and leave LF;;
|
||||||
const graphInit = utils.detectInit(text);
|
const graphInit = utils.detectInit(text);
|
||||||
@ -228,7 +232,14 @@ const render = function (
|
|||||||
text = encodeEntities(text);
|
text = encodeEntities(text);
|
||||||
|
|
||||||
// Important that we do not create the diagram until after the directives have been included
|
// Important that we do not create the diagram until after the directives have been included
|
||||||
const diag = new Diagram(text);
|
let diag;
|
||||||
|
let parseEncounteredException;
|
||||||
|
try {
|
||||||
|
diag = new Diagram(text);
|
||||||
|
} catch (error) {
|
||||||
|
diag = new Diagram('error');
|
||||||
|
parseEncounteredException = error;
|
||||||
|
}
|
||||||
// Get the tmp element containing the the svg
|
// Get the tmp element containing the the svg
|
||||||
const element = root.select('#d' + id).node();
|
const element = root.select('#d' + id).node();
|
||||||
const graphType = diag.type;
|
const graphType = diag.type;
|
||||||
@ -371,6 +382,10 @@ const render = function (
|
|||||||
node.remove();
|
node.remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (parseEncounteredException) {
|
||||||
|
throw parseEncounteredException;
|
||||||
|
}
|
||||||
|
|
||||||
return svgCode;
|
return svgCode;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import classDiagram from './diagrams/class/styles';
|
import classDiagram from './diagrams/class/styles';
|
||||||
import er from './diagrams/er/styles';
|
import er from './diagrams/er/styles';
|
||||||
|
import error from './diagrams/error/styles';
|
||||||
import flowchart from './diagrams/flowchart/styles';
|
import flowchart from './diagrams/flowchart/styles';
|
||||||
import gantt from './diagrams/gantt/styles';
|
import gantt from './diagrams/gantt/styles';
|
||||||
// import gitGraph from './diagrams/git/styles';
|
// import gitGraph from './diagrams/git/styles';
|
||||||
@ -28,6 +29,7 @@ const themes: Record<string, any> = {
|
|||||||
info,
|
info,
|
||||||
pie,
|
pie,
|
||||||
er,
|
er,
|
||||||
|
error,
|
||||||
journey,
|
journey,
|
||||||
requirement,
|
requirement,
|
||||||
c4,
|
c4,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user