mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-22 22:27:30 +08:00
Link morphing WIP
This commit is contained in:
@@ -36,8 +36,7 @@ export default class LinkTemplate extends Template {
|
||||
* @param {GraphLink} link Link element
|
||||
*/
|
||||
applySourceLocation(link) {
|
||||
link.style.setProperty("--ueb-from-input", link.originatesFromInput ? "1" : "0")
|
||||
// Set initial position
|
||||
link.style.setProperty("--ueb-from-output", link.originatesFromOutput ? "0" : "1")
|
||||
link.style.setProperty("--ueb-from-x", sanitizeText(link.sourceLocation[0]))
|
||||
link.style.setProperty("--ueb-from-y", sanitizeText(link.sourceLocation[1]))
|
||||
}
|
||||
@@ -47,11 +46,25 @@ export default class LinkTemplate extends Template {
|
||||
* @param {GraphLink} link Link element
|
||||
*/
|
||||
applyDestinationLocation(link) {
|
||||
const dx = Math.abs(link.sourceLocation[0] - link.destinationLocation[0])
|
||||
const width = Math.max(dx, Configuration.linkMinWidth)
|
||||
const height = Math.abs(link.sourceLocation[1] - link.destinationLocation[1])
|
||||
const ratio = Math.max(width, 1) / Math.max(height, 1)
|
||||
let start = dx < width ? (width - dx) / width * 100 / 2 : 0
|
||||
link.style.setProperty("--ueb-to-x", sanitizeText(link.destinationLocation[0]))
|
||||
link.style.setProperty("--ueb-to-y", sanitizeText(link.destinationLocation[1]))
|
||||
const r = Math.max(Math.abs(link.sourceLocation[0] - link.destinationLocation[0]), 1)
|
||||
/ Math.max(Math.abs(link.sourceLocation[1] - link.destinationLocation[1]), 1)
|
||||
const d = Configuration.linkRightSVGPath(20, Math.max(40 / r, 30))
|
||||
link.style.setProperty("margin-left", `-${start}px`)
|
||||
const xInverted = link.destinationLocation[0] < link.sourceLocation[0]
|
||||
if (xInverted) {
|
||||
if (dx < width) {
|
||||
start = start + dx / width * 100
|
||||
} else {
|
||||
start = 100
|
||||
}
|
||||
}
|
||||
const c1 = start + 20
|
||||
const c2 = Math.max(40 / ratio, 30) + start * 1.5
|
||||
const d = Configuration.linkRightSVGPath(start, c1, c2)
|
||||
// TODO move to CSS when Firefox will support property d
|
||||
link.pathElement.setAttribute("d", d)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user