-
-
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 pull request #1 from NeilCuzon/release/8.6.0
Release/8.6.0
- Loading branch information
Showing
72 changed files
with
350,745 additions
and
58,308 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
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
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,278 @@ | ||
/* eslint-env jest */ | ||
import { imgSnapshotTest } from '../../helpers/util.js'; | ||
|
||
describe('Pie Chart', () => { | ||
// beforeEach(()=>{ | ||
// cy.clock((new Date('2014-06-09')).getTime()); | ||
// }); | ||
|
||
['default', 'forest', 'dark', 'neutral'].forEach(theme=>{ | ||
describe(theme, () => { | ||
it('should render a pie diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
pie title Sports in Sweden | ||
"Bandy" : 40 | ||
"Ice-Hockey" : 80 | ||
"Football" : 90 | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a flowchart diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
graph TD | ||
A[Christmas] -->|Get money| B(Go shopping) | ||
B --> C{Let me think} | ||
B --> G[/Another/] | ||
C ==>|One| D[Laptop] | ||
C -->|Two| E[iPhone] | ||
C -->|Three| F[fa:fa-car Car] | ||
subgraph section | ||
C | ||
D | ||
E | ||
F | ||
G | ||
end | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a new flowchart diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
flowchart TD | ||
A[Christmas] -->|Get money| B(Go shopping) | ||
B --> C{Let me think} | ||
B --> G[Another] | ||
C ==>|One| D[Laptop] | ||
C x--x|Two| E[iPhone] | ||
C o--o|Three| F[fa:fa-car Car] | ||
subgraph section | ||
C | ||
D | ||
E | ||
F | ||
G | ||
end | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a sequence diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
sequenceDiagram | ||
autonumber | ||
par Action 1 | ||
Alice->>John: Hello John, how are you? | ||
and Action 2 | ||
Alice->>Bob: Hello Bob, how are you? | ||
end | ||
Alice->>+John: Hello John, how are you? | ||
Alice->>+John: John, can you hear me? | ||
John-->>-Alice: Hi Alice, I can hear you! | ||
Note right of John: John is perceptive | ||
John-->>-Alice: I feel great! | ||
loop Every minute | ||
John-->Alice: Great! | ||
end | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
|
||
it('should render a class diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
classDiagram | ||
Animal "*" <|-- "1" Duck | ||
Animal "1" <|-- "10" Fish | ||
Animal <|-- Zebra | ||
Animal : +int age | ||
Animal : +String gender | ||
Animal: +isMammal() | ||
Animal: +mate() | ||
class Duck{ | ||
+String beakColor | ||
+swim() | ||
+quack() | ||
} | ||
class Fish{ | ||
-int sizeInFeet | ||
-canEat() | ||
} | ||
class Zebra{ | ||
+bool is_wild | ||
+run() | ||
} | ||
classA <|-- classB | ||
classC *-- classD | ||
classE o-- classF | ||
classG <-- classH | ||
classI -- classJ | ||
classK <.. classL | ||
classM <|.. classN | ||
classO .. classP | ||
classA --|> classB : Inheritance | ||
classC --* classD : Composition | ||
classE --o classF : Aggregation | ||
classG --> classH : Association | ||
classI -- classJ : Link(Solid) | ||
classK ..> classL : Dependency | ||
classM ..|> classN : Realization | ||
classO .. classP : Link(Dashed) | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a state diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
stateDiagram | ||
[*] --> Active | ||
state Active { | ||
[*] --> NumLockOff | ||
NumLockOff --> NumLockOn : EvNumLockPressed | ||
NumLockOn --> NumLockOff : EvNumLockPressed | ||
-- | ||
[*] --> CapsLockOff | ||
CapsLockOff --> CapsLockOn : EvCapsLockPressed | ||
CapsLockOn --> CapsLockOff : EvCapsLockPressed | ||
-- | ||
[*] --> ScrollLockOff | ||
ScrollLockOff --> ScrollLockOn : EvCapsLockPressed | ||
ScrollLockOn --> ScrollLockOff : EvCapsLockPressed | ||
} | ||
state SomethingElse { | ||
A --> B | ||
B --> A | ||
} | ||
Active --> SomethingElse | ||
note right of SomethingElse : This is the note to the right. | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a state diagram (v2)', () => { | ||
imgSnapshotTest( | ||
` | ||
%%{init: { 'logLevel': 0, 'theme': '${theme}'} }%% | ||
stateDiagram-v2 | ||
[*] --> Active | ||
state Active { | ||
[*] --> NumLockOff | ||
NumLockOff --> NumLockOn : EvNumLockPressed | ||
NumLockOn --> NumLockOff : EvNumLockPressed | ||
-- | ||
[*] --> CapsLockOff | ||
CapsLockOff --> CapsLockOn : EvCapsLockPressed | ||
CapsLockOn --> CapsLockOff : EvCapsLockPressed | ||
-- | ||
[*] --> ScrollLockOff | ||
ScrollLockOff --> ScrollLockOn : EvCapsLockPressed | ||
ScrollLockOn --> ScrollLockOff : EvCapsLockPressed | ||
} | ||
state SomethingElse { | ||
A --> B | ||
B --> A | ||
} | ||
Active --> SomethingElse2 | ||
note right of SomethingElse2 : This is the note to the right. | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a er diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
erDiagram | ||
CUSTOMER }|..|{ DELIVERY-ADDRESS : has | ||
CUSTOMER ||--o{ ORDER : places | ||
CUSTOMER ||--o{ INVOICE : "liable for" | ||
DELIVERY-ADDRESS ||--o{ ORDER : receives | ||
INVOICE ||--|{ ORDER : covers | ||
ORDER ||--|{ ORDER-ITEM : includes | ||
PRODUCT-CATEGORY ||--|{ PRODUCT : contains | ||
PRODUCT ||--o{ ORDER-ITEM : "ordered in" | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a user journey diagram', () => { | ||
imgSnapshotTest( | ||
` | ||
journey | ||
title My working day | ||
section Go to work | ||
Make tea: 5: Me | ||
Go upstairs: 3: Me | ||
Do work: 1: Me, Cat | ||
section Go home | ||
Go downstairs: 5: Me | ||
Sit down: 5: Me `, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
it('should render a gantt diagram', () => { | ||
cy.clock((new Date('2014-01-06')).getTime()); | ||
imgSnapshotTest( | ||
` | ||
gantt | ||
dateFormat :YYYY-MM-DD | ||
title :Adding GANTT diagram functionality to mermaid | ||
excludes :excludes the named dates/days from being included in a charted task.. | ||
section A section | ||
Completed task :done, des1, 2014-01-06,2014-01-08 | ||
Active task :active, des2, 2014-01-09, 3d | ||
Future task : des3, after des2, 5d | ||
Future task2 : des4, after des3, 5d | ||
section Critical tasks | ||
Completed task in the critical line :crit, done, 2014-01-06,24h | ||
Implement parser and jison :crit, done, after des1, 2d | ||
Create tests for parser :crit, active, 3d | ||
Future task in critical line :crit, 5d | ||
Create tests for renderer :2d | ||
Add to mermaid :1d | ||
section Documentation | ||
Describe gantt syntax :active, a1, after des1, 3d | ||
Add gantt diagram to demo page :after a1 , 20h | ||
Add another diagram to demo page :doc1, after a1 , 48h | ||
section Last section | ||
Describe gantt syntax :after doc1, 3d | ||
Add gantt diagram to demo page :20h | ||
Add another diagram to demo page :48h | ||
`, | ||
{theme} | ||
); | ||
cy.get('svg'); | ||
}); | ||
}); | ||
}); | ||
}); |
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 |
---|---|---|
@@ -1,10 +1,36 @@ | ||
import mermaid from '../../dist/mermaid.core' | ||
import mermaid from '../../dist/mermaid.core'; | ||
|
||
const code = `graph LR | ||
Power_Supply --> Transmitter_A | ||
Power_Supply --> Transmitter_B | ||
Transmitter_A --> D | ||
Transmitter_B --> D`; | ||
|
||
mermaid.initialize({ | ||
theme: 'forest', | ||
gantt: { axisFormatter: [ | ||
['%Y-%m-%d', (d) => { | ||
return d.getDay() === 1 | ||
}] | ||
] } | ||
}) | ||
fontFamily: '"Lucida Console", Monaco, monospace', | ||
startOnLoad: false, | ||
flowchart: { | ||
htmlLabels: true | ||
}, | ||
gantt: { | ||
axisFormatter: [ | ||
[ | ||
'%Y-%m-%d', | ||
d => { | ||
return d.getDay() === 1; | ||
} | ||
] | ||
] | ||
} | ||
}); | ||
mermaid.render( | ||
'the-id-of-the-svg', | ||
code, | ||
svg => { | ||
console.log(svg); | ||
const elem = document.querySelector('#graph-to-be'); | ||
elem.innerHTML = svg; | ||
} | ||
// ,document.querySelector('#tmp') | ||
); |
Oops, something went wrong.