Merge pull request #2814 from kerwin612/k_fix_bug_1

fix: autonumber bug
This commit is contained in:
Knut Sveidqvist 2022-03-17 17:48:06 +01:00 committed by GitHub
commit c4c219b7c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 0 deletions

View File

@ -139,6 +139,7 @@ export const autoWrap = () => wrapEnabled;
export const clear = function () {
actors = {};
messages = [];
sequenceNumbersEnabled = false;
};
export const parseMessage = function (str) {

View File

@ -1619,4 +1619,24 @@ participant Alice
models.lastActor().y + models.lastActor().height + mermaid.sequence.boxMargin
);
});
it('it should hide sequence numbers when autonumber is removed when autonumber is enabled', function () {
const str1 = `
sequenceDiagram
autonumber
Alice->Bob:Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!`;
mermaidAPI.parse(str1);
expect(parser.yy.showSequenceNumbers()).toBe(true);
const str2 = `
sequenceDiagram
Alice->Bob:Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!`;
mermaidAPI.parse(str2);
expect(parser.yy.showSequenceNumbers()).toBe(false);
});
});

1
src/mermaidAPI.js Executable file → Normal file
View File

@ -94,6 +94,7 @@ function parse(text) {
parser.parser.yy = flowDb;
break;
case 'sequence':
sequenceDb.clear();
parser = sequenceParser;
parser.parser.yy = sequenceDb;
break;