What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi guys, i was having a strange problem when i wanted to see the graph for my custom state machine.

USZ0X9ZB9
USZ0X9ZB9 Posts: 13 🧑🏻‍🚀 - Cadet

Hi guys, i was having a strange problem when i wanted to see the graph for my custom state machine. For the “preview-version” of my state machine i will just get the “missing image” icon and an entry in the zed exception log. This is because the preview url for the image is referencing to a controller in the OMS Module: https://github.com/spryker/state-machine/blob/master/src/Spryker/Zed/StateMachine/Presentation/Graph/draw-preview-version.twig#L6

Comments

  • Ievgen Varava
    Ievgen Varava Sprykee Posts: 154 🧑🏻‍🚀 - Cadet

    looks like this link in template is pointing to wrong path. Can you override this twig and use /state-machine/graph/draw instead?

  • USZ0X9ZB9
    USZ0X9ZB9 Posts: 13 🧑🏻‍🚀 - Cadet

    Yes, but you will also need a “state-machine” param, i hardcoded it like this:

    <img id="preview-image" src="{{ url('/state-machine/graph/draw?process=' ~ processName ~ '&format=svg&font=11&state-machine=MyStateMachine') }}" />
    

    now its working

  • Ievgen Varava
    Ievgen Varava Sprykee Posts: 154 🧑🏻‍🚀 - Cadet

    thanks for pointing this out, I hope that fix will be released shortly