A VS Code extension to create a visual represenation of Salesforce Flow .flow-meta.xml
files.
It provides an easy to use representation of Salesforce Flow files. As well as a graphical view of the flow itself it also ouputs;
- Start Condiitions
- Resources:
- Constants
- Text Templates
- Variables
You can zoom in/out on the flow itself, and can also save the image to a .png file.
- Have a Salesforce Flow
.flow-meta.xml
file open. - Open the VS Code Command palette with SHIFT+CTRL+P.
- Run the Flow Visualiser: Render command.
The v0.2 extension does not require any other extensions to be installed.
The v0.1 extension relied on the Markdown Preview Mermaid Support extension also being installed.
There aren't currently any settings for this extension.
- HTML Special Characters (e.g.
"
) are being represented as their decoded versions( e.g"
). I believe this is down to thefast-xml-parser
lib that's being used downstream - it's on the list to look at.
Users appreciate release notes as you update your extension.
- Added missing icon
- Moved to a webview to render the information and flow
- Output includes Constants, Variable and TextTemplates
- Ouput includes Start conditions
- Flow can be zoomed in/put
- Flow can be saved as a .png file
- Removed dependancy on Markdown Preview Mermaid Support extension
- Support for special mermaid chars in node labels (e.g braces)
- Fixed incorrect dep
- Initial pre-release version