Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): document undo/redo functionality and limitations #4326

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/components/modeler/web-modeler/collaboration.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ Users without email addresses will not receive any kind of notification about be
When others are opening the same diagram as you, the updates on the diagram are sent in real time. You can also note who is in the diagram with you.
![real time collaboration](img/real-time-collaboration.png)

### Undo/redo management limitations

When collaborating with others on a diagram, you can only undo or redo your own actions until another collaborator makes a change, as the undo/redo history is reset each time another collaborator makes a change.

### Draw other's attention

Whether you are in a presentation or if others are in the same diagram as you are, use the attention grabber pointer to draw attention to a specific part of the diagram. To do this, take the following steps:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 13 additions & 3 deletions docs/components/modeler/web-modeler/import-diagram.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ description: "You can import a BPMN or DMN diagram at any time with Web Modeler.

<span class="badge badge--cloud">Camunda 8 only</span>

You can import a BPMN or DMN diagram at any time with Web Modeler, and there are several ways to accomplish this:
You can import a BPMN or DMN diagram into Web Modeler using several methods:

- In a project, click **New > Upload files** and select the files from your computer.

![import diagram](img/import-diagram/web-modeler-upload-file-menu-item.png)

![import diagram](img/import-diagram/web-modeler-upload-file-choose.png)

![import diagram](img/import-diagram/web-modeler-upload-file-completed.png)

- In a project, drag one file from your computer and drop it.

![import diagram](img/import-diagram/web-modeler-project-drag-and-drop.png)

:::note
Expand All @@ -22,8 +26,14 @@ For the two options below, the content of the diagram is replaced with the conte

- In a diagram, open the breadcrumb menu and choose **Replace via upload**. Then, select a file from your computer.

![import diagram](img/import-diagram/web-modeler-replace-via-upload-menu-item.png)
![import diagram](img/import-diagram/web-modeler-replace-via-upload-choose.png)
![import diagram](img/import-diagram/web-modeler-replace-via-upload-menu-item.png)

![import diagram](img/import-diagram/web-modeler-replace-via-upload-choose.png)

- In a diagram, drag one file from your computer and drop it onto the canvas.

![import diagram](img/import-diagram/web-modeler-diagram-replace-via-drag-and-drop.png)

### Undo/redo management limitations

You cannot undo or redo any actions taken before an import as the undo/redo history is cleared when a diagram is imported. This prevents inconsistencies between the imported diagram and any actions taken before the import.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ Elements supporting different types can be reconfigured by clicking on the corre

![task configuration](img/web-modeler-new-diagram-with-configuration.png)

To revert or reapply changes, you can use the **undo** and **redo** buttons located below the elements palette.

![undo and redo buttons](img/undo-redo.png)

:::info
See undo/redo management limitations when [Collaborating](./collaboration.md#undoredo-management-limitations) and [Importing](./import-diagram.md#undoredo-management-limitations).
:::

Use the canvas tools in the bottom right corner to interact with your diagram.

1. Zoom in.
Expand Down
Loading