Compare commits
2 Commits
2c724598e9
...
3b25d68f1e
Author | SHA1 | Date | |
---|---|---|---|
3b25d68f1e | |||
0968436c8a |
25
TODO.md
Normal file
25
TODO.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# TODO
|
||||||
|
|
||||||
|
- [x] Basic participants
|
||||||
|
- [x] Basic sequences
|
||||||
|
- [x] Separators
|
||||||
|
- [x] Gaps
|
||||||
|
- [x] Groups
|
||||||
|
- [x] Self arrows
|
||||||
|
- [x] Arrow from start / to end, small arrows
|
||||||
|
- [x] Lifelines
|
||||||
|
- [x] Different types of participants
|
||||||
|
- [x] Notes
|
||||||
|
- [ ] Synchronized arrows
|
||||||
|
- [ ] Slanted arrows
|
||||||
|
- [ ] Different types of arrow tips (WIP)
|
||||||
|
- [ ] Fix column spacing with notes over multiple columns
|
||||||
|
- [ ] Fix notes with arrows from start / to end / small arrows
|
||||||
|
- [ ] Fix group size with self arrows + notes
|
||||||
|
- [ ] Unify styling structure
|
||||||
|
- [ ] Add args verification to catch user errors + pretty error messages
|
||||||
|
- [ ] PlantUML parser
|
||||||
|
- [ ] (Message numbering)
|
||||||
|
- [ ] Different types of groups (alt/loop/etc.)
|
||||||
|
- [ ] Delays
|
||||||
|
- [ ] Auto-fit in parent
|
Binary file not shown.
@ -135,4 +135,11 @@
|
|||||||
|
|
||||||
_seq("[", "a", comment: [Test])
|
_seq("[", "a", comment: [Test])
|
||||||
_note("left", [This is also a note])
|
_note("left", [This is also a note])
|
||||||
})*/
|
})*/
|
||||||
|
|
||||||
|
#pagebreak()
|
||||||
|
|
||||||
|
#chronos.diagram({
|
||||||
|
_seq("Bob", "Alice", comment: [Hello])
|
||||||
|
_evt("Other", "create")
|
||||||
|
})
|
@ -123,6 +123,16 @@
|
|||||||
elmt: elmt,
|
elmt: elmt,
|
||||||
i: i
|
i: i
|
||||||
)
|
)
|
||||||
|
} else if elmt.type == "evt" {
|
||||||
|
let par = elmt.participant
|
||||||
|
if not participant._exists(participants, par) {
|
||||||
|
let p = _par(par, from-start: elmt.event != "create").first()
|
||||||
|
participants.push(p)
|
||||||
|
|
||||||
|
} else if elmt.event == "create" {
|
||||||
|
let i = participants.position(p => p.name == par)
|
||||||
|
participants.at(i).from-start = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
linked = linked.dedup()
|
linked = linked.dedup()
|
||||||
|
@ -279,6 +279,7 @@
|
|||||||
line.lines.push(("enable", y, elmt.lifeline-style))
|
line.lines.push(("enable", y, elmt.lifeline-style))
|
||||||
|
|
||||||
} else if elmt.event == "create" {
|
} else if elmt.event == "create" {
|
||||||
|
y -= CREATE-OFFSET
|
||||||
shapes += participant.render(x-pos, par, y: y)
|
shapes += participant.render(x-pos, par, y: y)
|
||||||
line.lines.push(("create", y))
|
line.lines.push(("create", y))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user