debian-mirror-gitlab/doc/user/project/issues/design_management.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

293 lines
12 KiB
Markdown
Raw Normal View History

2020-11-24 15:15:51 +05:30
---
2021-03-11 19:13:27 +05:30
stage: Plan
group: Product Planning
2021-11-18 22:05:49 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-11-24 15:15:51 +05:30
---
2021-03-11 19:13:27 +05:30
# Design Management **(FREE)**
2019-10-12 21:52:04 +05:30
2022-04-04 11:22:00 +05:30
> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/660) in GitLab 12.2.
> - Support for SVGs [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/12771) in GitLab 12.4.
> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/212566) from GitLab Premium to GitLab Free in 13.0.
2022-06-21 17:19:12 +05:30
> - Design Management section in issues [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/223193) in GitLab 13.2, with a feature flag named `design_management_moved`. In earlier versions, designs were displayed in a separate tab.
> - Design Management section in issues [feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/223197) for new displays in GitLab 13.4.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
With Design Management you can upload design assets (including wireframes and mockups)
to GitLab issues and keep them stored in a single place. Product designers, product managers, and
engineers can collaborate on designs with a single source of truth.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
You can share mockups of designs with your team, or visual regressions can be
2019-10-12 21:52:04 +05:30
viewed and addressed.
<i class="fa fa-youtube-play youtube" aria-hidden="true"></i>
2022-06-21 17:19:12 +05:30
For a video overview, see [Design Management (GitLab 12.2)](https://www.youtube.com/watch?v=CCMtCqdK_aM).
2019-10-12 21:52:04 +05:30
## Requirements
2022-06-21 17:19:12 +05:30
- [Git Large File Storage (LFS)](../../../topics/git/lfs/index.md) must be enabled:
- On GitLab.com, LFS is already enabled.
- On self-managed instances, a GitLab administrator must
[enable LFS globally](../../../administration/lfs/index.md).
- On both GitLab.com and self-managed instances, LFS must be
[enabled for the project itself](../settings/index.md#sharing-and-permissions).
If enabled globally, LFS is enabled by default for all projects. If you have
disabled it for your project, you must enable it again.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
Designs are stored as LFS objects.
Image thumbnails are stored as other uploads, and are not associated with a project but rather
with a specific design model.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
- Projects must use
[hashed storage](../../../administration/raketasks/storage.md#migrate-to-hashed-storage).
2019-12-26 22:10:19 +05:30
2022-06-21 17:19:12 +05:30
Newly created projects use hashed storage by default.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
A GitLab administrator can verify the storage type of a project by going to **Admin Area > Projects**
and then selecting the project in question. A project can be identified as
hashed-stored if its **Gitaly relative path** contains `@hashed`.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
If the requirements are not met, you are notified in the **Designs** section.
2020-04-08 14:13:33 +05:30
2022-06-21 17:19:12 +05:30
## Supported file types
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
You can upload files of the following types as designs:
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
- BMP
- GIF
- ICO
- JPEG
- JPG
- PNG
- SVG
- TIFF
- WEBP
Support for PDF files is tracked in [issue 32811](https://gitlab.com/gitlab-org/gitlab/-/issues/32811).
## Known issues
- Design Management data isn't deleted when:
- [A project is destroyed](https://gitlab.com/gitlab-org/gitlab/-/issues/13429).
- [An issue is deleted](https://gitlab.com/gitlab-org/gitlab/-/issues/13427).
- In GitLab 12.7 and later, Design Management data [can be replicated](../../../administration/geo/replication/datatypes.md#limitations-on-replicationverification)
2020-06-23 00:09:42 +05:30
by Geo but [not verified](https://gitlab.com/gitlab-org/gitlab/-/issues/32467).
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
## View a design
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
The **Designs** section is in the issue description.
Prerequisites:
- You must have at least the Guest role for the project.
To view a design:
1. Go to an issue.
1. In the **Designs** section, select the design image you want to view.
The design you selected opens. You can then [zoom in](#zoom-in-on-a-design) on it or
[create a comment](#add-a-comment-to-a-design).
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
![Designs section](img/design_management_v14_10.png)
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
When viewing a design, you can move to other designs. To do so, either:
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
- In the top-right corner, select **Go to previous design** (**{angle-left}**) or **Go to next design** (**{angle-right}**).
- Press <kbd>Left</kbd> or <kbd>Right</kbd> on your keyboard.
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
To return to the issue view, either:
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
- In the top-left corner, select the close icon (**{close}**).
- Press <kbd>Esc</kbd> on your keyboard.
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
When a design is added, a green icon (**{plus-square}**) is displayed on the image
thumbnail. When a design has been [changed](#add-a-new-version-of-a-design) in the current version,
a blue icon (**{file-modified-solid}**) is displayed.
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
### Zoom in on a design
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/13217) in GitLab 12.7.
> - Ability to drag a zoomed image to move it [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/197324) in GitLab 12.10.
You can explore a design in more detail by zooming in and out of the image:
- To control the amount of zoom, select plus (`+`) and minus (`-`)
at the bottom of the image.
- To reset the zoom level, select the redo icon (**{redo}**).
To move around the image while zoomed in, drag the image.
## Add a design to an issue
2019-10-12 21:52:04 +05:30
2022-04-04 11:22:00 +05:30
> - Drag and drop uploads [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/34353) in GitLab 12.9.
> - New version creation on upload [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/34353) in GitLab 12.9.
2021-11-18 22:05:49 +05:30
> - Copy and paste uploads [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/202634) in GitLab 12.10.
2022-06-21 17:19:12 +05:30
Prerequisites:
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
- You must have at least the Developer role for the project.
- In GitLab 13.1 and later, the names of the uploaded files must be no longer than 255 characters.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
To add a design to an issue:
2020-04-08 14:13:33 +05:30
2022-06-21 17:19:12 +05:30
1. Go to an issue.
1. Either:
- Select **Upload designs** and then select images from your file browser. You can select up to
10 files at once.
<!-- vale gitlab.SubstitutionWarning = NO -->
- Select **click to upload** and then select images from your file browser. You can select up to
10 files at once.
<!-- vale gitlab.SubstitutionWarning = YES -->
2020-04-08 14:13:33 +05:30
2022-06-21 17:19:12 +05:30
- Drag a file from your file browser and drop it in the drop zone in the **Designs** section.
2020-04-22 19:07:51 +05:30
2022-06-21 17:19:12 +05:30
![Drag and drop design uploads](img/design_drag_and_drop_uploads_v13_2.png)
2020-04-22 19:07:51 +05:30
2022-06-21 17:19:12 +05:30
- Take a screenshot or copy a local image file into your clipboard, hover your cursor over the
drop zone, and press <kbd>Control</kbd> or <kbd>Cmd</kbd> + <kbd>V</kbd>.
2020-04-22 19:07:51 +05:30
2022-06-21 17:19:12 +05:30
When pasting images like this, keep the following in mind:
2020-04-22 19:07:51 +05:30
2022-06-21 17:19:12 +05:30
- You can paste only one image at a time. When you paste multiple copied files, only the first
one is uploaded.
- If you are pasting a screenshot, the image is added as a PNG file with a generated name of:
`design_<timestamp>.png`.
- It's not supported in Internet Explorer.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
## Add a new version of a design
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
As discussion on a design continues, you might want to upload a new version of a design.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
Prerequisites:
2019-12-04 20:38:33 +05:30
2022-06-21 17:19:12 +05:30
- You must have at least the Developer role for the project.
2019-12-04 20:38:33 +05:30
2022-06-21 17:19:12 +05:30
To do so, [add a design](#add-a-design-to-an-issue) with the same filename.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
To browse all the design versions, use the dropdown list at the top of the **Designs** section.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
### Skipped designs
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
When you upload an image with the same filename as an existing uploaded design _and_ that is the
same, it's skipped. This means that no new version of the design is created.
When designs are skipped, a warning message is displayed.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
## Archive a design
2019-12-21 20:55:43 +05:30
2022-04-04 11:22:00 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/11089) in GitLab 12.4.
2022-06-21 17:19:12 +05:30
> - [Renamed](https://gitlab.com/gitlab-org/gitlab/-/issues/220964) the button from "Delete" to "Archive" in GitLab 13.3.
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
You can archive individual designs or select a few of them to archive at once.
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
Prerequisites:
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
- You must have at least the Developer role for the project.
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
To archive a single design:
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
1. Select the design to view it enlarged.
1. In the top right corner, select **Archive design** (**{archive}**).
1. Select **Archive designs**.
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
To archive multiple designs at once:
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
1. Select the checkboxes on the designs you want to archive.
1. Select **Archive selected**.
2019-12-21 20:55:43 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2022-06-21 17:19:12 +05:30
Only the latest version of the designs can be archived.
Archived designs are not permanently lost. You can browse
[previous versions](#add-a-new-version-of-a-design).
2019-12-21 20:55:43 +05:30
2022-06-21 17:19:12 +05:30
## Reorder designs
2020-10-24 23:57:45 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/34382) in GitLab 13.3.
2021-01-03 14:25:43 +05:30
You can change the order of designs by dragging them to a new position.
2020-10-24 23:57:45 +05:30
2022-06-21 17:19:12 +05:30
## Add a comment to a design
2021-11-18 22:05:49 +05:30
2022-06-21 17:19:12 +05:30
> Adjusting a pin's position [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/34353) in GitLab 12.8.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
You can start [discussions](../../discussions/index.md) on uploaded designs. To do so:
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
<!-- vale gitlab.SubstitutionWarning = NO -->
1. Go to an issue.
1. Select the design.
1. Click or tap the image. A pin is created in that spot, identifying the discussion's location.
1. Enter your message.
1. Select **Comment**.
<!-- vale gitlab.SubstitutionWarning = YES -->
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
You can adjust a pin's position by dragging it around the image. You can use this when your design's
layout has changed, or when you want to move a pin to add a new one in its place.
2019-10-12 21:52:04 +05:30
2022-06-21 17:19:12 +05:30
New discussion threads get different pin numbers, which you can use to refer to them.
2019-12-26 22:10:19 +05:30
2021-11-18 22:05:49 +05:30
In GitLab 12.5 and later, new discussions are output to the issue activity,
2019-12-26 22:10:19 +05:30
so that everyone involved can participate in the discussion.
2020-06-23 00:09:42 +05:30
2022-06-21 17:19:12 +05:30
## Resolve a discussion thread on a design
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/13049) in GitLab 13.1.
2022-06-21 17:19:12 +05:30
When you're done discussing part of a design, you can resolve the discussion thread.
2020-06-23 00:09:42 +05:30
2022-06-21 17:19:12 +05:30
To mark a thread as resolved or unresolved, either:
2020-07-01 16:08:20 +05:30
2022-06-21 17:19:12 +05:30
- In the top-right corner of the first comment of the discussion, select **Resolve thread** or **Unresolve thread** (**{check-circle}**).
- Add a new comment to the thread and select or clear the **Resolve thread** checkbox.
2020-07-01 16:08:20 +05:30
2022-06-21 17:19:12 +05:30
Resolving a discussion thread also marks any pending [to-do items](../../todos.md) related to notes
inside the thread as done. Only to-do items for the user triggering the action are affected.
2020-07-01 16:08:20 +05:30
2022-06-21 17:19:12 +05:30
Your resolved comment pins disappear from the design to free up space for new discussions.
To revisit a resolved discussion, expand **Resolved Comments** below the visible threads.
2021-09-04 01:27:46 +05:30
2022-06-21 17:19:12 +05:30
## Add a to-do item for a design
2020-11-24 15:15:51 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/198439) in GitLab 13.4.
2021-01-03 14:25:43 +05:30
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/245074) in GitLab 13.5.
2020-11-24 15:15:51 +05:30
2022-06-21 17:19:12 +05:30
To add a [to-do item](../../todos.md) for a design, select **Add a to do** on the design sidebar.
2020-11-24 15:15:51 +05:30
2022-06-21 17:19:12 +05:30
## Refer to a design in Markdown
2020-06-23 00:09:42 +05:30
2021-11-18 22:05:49 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/217160) in GitLab 13.1.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/258662) in GitLab 13.5.
2020-06-23 00:09:42 +05:30
2022-06-21 17:19:12 +05:30
To refer to a design in a [Markdown](../../markdown.md) text box in GitLab, for example, in
a comment or description, paste its URL. It's then displayed as a short reference.
2020-06-23 00:09:42 +05:30
2022-06-21 17:19:12 +05:30
For example, if you refer to a design somewhere with:
2020-06-23 00:09:42 +05:30
```markdown
2022-06-21 17:19:12 +05:30
See https://gitlab.com/gitlab-org/gitlab/-/issues/13195/designs/Group_view.png.
2020-06-23 00:09:42 +05:30
```
2022-06-21 17:19:12 +05:30
It's rendered as:
2020-06-23 00:09:42 +05:30
2022-06-21 17:19:12 +05:30
> See [#13195[Group_view.png]](https://gitlab.com/gitlab-org/gitlab/-/issues/13195/designs/Group_view.png).
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
## Design activity records
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/33051) in GitLab 13.1.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/225205) in GitLab 13.2.
User activity events on designs (creation, deletion, and updates) are tracked by GitLab and
2021-04-17 20:07:23 +05:30
displayed on the [user profile](../../profile/index.md#access-your-user-profile),
2020-07-28 23:09:34 +05:30
[group](../../group/index.md#view-group-activity),
2022-01-26 12:08:38 +05:30
and [project](../working_with_projects.md#view-project-activity) activity pages.
2022-06-21 17:19:12 +05:30
## GitLab-Figma plugin
> [Introduced](https://gitlab.com/gitlab-org/gitlab-figma-plugin/-/issues/2) in GitLab 13.2.
You can use the GitLab-Figma plugin to upload your designs from Figma directly to your issues
in GitLab.
To use the plugin in Figma, install it from the [Figma Directory](https://www.figma.com/community/plugin/860845891704482356)
and connect to GitLab through a personal access token.
For more information, see the [plugin documentation](https://gitlab.com/gitlab-org/gitlab-figma-plugin/-/wikis/home).