Skip to content

Animation steps cannot be added to deployment views via static structure element references #408

@zeljkot

Description

@zeljkot

Expected

Deployment view should be animated as other static views, as specified in the docs.

Actual

Animation does not work

Steps to reproduce

workspace {

    !identifiers hierarchical

    model {

        p = person "Person"

        ss = softwareSystem "My system" {
            tags "styled"

            group "first" {

                ca = container "Container A" {
                    c1 = component "Component A1"
                    c2 = component "Component A2"
                }
                cb = container "Container B" {
                    c1 = component "Component B1"
                    c2 = component "Component B2"
                }
            }
            cc = container "Container C" {
                c1 = component "Component C1"
                c2 = component "Component C2"
            }
            cd = container "Container D" {
                c1 = component "Component D1"
                c2 = component "Component D2"
            }
        }

        de1 = deploymentEnvironment "DeploymentAlpha" {

            x1 = deploymentNode "Node X" {
                containerInstance ss.ca "" "styled"
                containerInstance ss.cb
            }
            x2 = deploymentNode "Node Y" {
                containerInstance ss.cc
                containerInstance ss.cd
                //infrastructureNode "Infra" "" "styled"
            }
        }

        p -> ss.ca.c1
    }

    views {

        systemLandscape ss {
            include *
            autolayout lr
        }

        container ss {

            include *
            autolayout lr

            animation {
                ss.ca
                ss.cb
            }
        }

        component ss.ca {
            include *
            autolayout lr
        }

        deployment ss "DeploymentAlpha" {

            include ss.ca
            include ss.cb
            include ss.cc
            include ss.cd

            autolayout lr

            animation {
                ss.ca
                ss.cb
                ss.cc
                ss.cd
            }
        }
        
    }
}

Version/build information

c6b6367582b0 2 weeks ago

Severity

Minor

Priority

Low (I have no budget and there's no rush, please fix this for free)

More information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions