Resolve "Work items: Add edit button to progress widget"
What does this MR do and why?
This MR refactors the work item progress widget from inline editing to Edit
button patterns. The designs can be found in the related issue
MR acceptance checklist
Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
Screenshots or screen recordings
Before | After |
---|---|
before | after |
How to set up and validate locally
- In rails console enable work items MVC 2 feature flag
Feature.enable(:work_items_mvc_2)
- Go to the project issue page list
- Create a new objective
- Change Objective's progress
Related to #429139 (closed)
Merge request reports
Activity
changed milestone to %16.10
assigned to @ntepluhina
3 Warnings This merge request is quite big (681 lines changed), please consider splitting it into multiple merge requests. ad3fa8c5: Commits that change 30 or more lines across at least 3 files should describe these changes in the commit body. For more information, take a look at our Commit message guidelines. This merge request contains lines with testid selectors. Please ensure e2e:package-and-test
job is run.1 Message CHANGELOG missing: If this merge request needs a changelog entry, add the
Changelog
trailer to the commit message you want to add to the changelog.If this merge request doesn't need a CHANGELOG entry, feel free to ignore this message.
testid
selectorsThe following changed lines in this MR contain
testid
selectors:ee/app/assets/javascripts/work_items/components/work_item_progress_with_edit.vue
+ <div data-testid="work-item-progress-with-edit"> + data-testid="edit-progress" + <gl-form v-if="isEditing" data-testid="work-item-progress" @submit.prevent="updateProgress"> + data-testid="apply-progress" + data-testid="work-item-progress-input" + <span v-else class="gl-my-3 gl-text-secondary" data-testid="progress-displayed-value">
If the
e2e:package-and-test
job in theqa
stage has run automatically, please ensure the tests are passing. If the job has not run, please start thetrigger-omnibus-and-follow-up-e2e
job in theqa
stage and ensure the tests infollow-up-e2e:package-and-test-ee
pipeline are passing.For the list of known failures please refer to the latest pipeline triage issue.
If your changes are under a feature flag, please check our Testing with feature flags documentation for instructions.
Reviewer roulette
Category Reviewer Maintainer frontend @aalakkad
(UTC+3, 2 hours ahead of author)
@aturinske
(UTC-7, 8 hours behind author)
test for spec/features/*
@jhyson
(UTC+13, 12 hours ahead of author)
Maintainer review is optional for test for spec/features/*
UX @nickleonard
(UTC-6, 7 hours behind author)
Maintainer review is optional for UX Please check reviewer's status!
Please refer to documentation page for guidance on how you can benefit from the Reviewer Roulette, or use the GitLab Review Workload Dashboard to find other available reviewers.
If needed, you can retry the
danger-review
job that generated this comment.Generated by
DangerEdited by Ghost UserBundle size analysis [beta]
This compares changes in bundle size for entry points between the commits 210841c4 and 8a620b6a
Special assetsEntrypoint / Name Size before Size after Diff Diff in percent average 4.22 MB 4.22 MB - 0.0 % mainChunk 3.22 MB 3.22 MB - 0.0 %
Note: We do not have exact data for 210841c4. So we have used data from: 9d1b4b68.
The intended commit has no webpack pipeline, so we chose the last commit with one before it.Please look at the full report for more details
Read more about how this report works.
Generated by
DangerEdited by Ghost UserE2E Test Result Summary
allure-report-publisher
generated test report!e2e-test-on-gdk:
test report for 8a620b6aexpand test summary
+------------------------------------------------------------------+ | suites summary | +-------------+--------+--------+---------+-------+-------+--------+ | | passed | failed | skipped | flaky | total | result | +-------------+--------+--------+---------+-------+-------+--------+ | Plan | 53 | 0 | 0 | 0 | 53 | ✅ | | Create | 8 | 0 | 3 | 0 | 11 | ✅ | | Package | 0 | 0 | 1 | 0 | 1 | ➖ | | Monitor | 4 | 0 | 0 | 0 | 4 | ✅ | | Data Stores | 2 | 0 | 0 | 0 | 2 | ✅ | | Govern | 3 | 0 | 0 | 0 | 3 | ✅ | +-------------+--------+--------+---------+-------+-------+--------+ | Total | 70 | 0 | 4 | 0 | 74 | ✅ | +-------------+--------+--------+---------+-------+-------+--------+
e2e-package-and-test:
test report for 8a620b6aexpand test summary
+------------------------------------------------------------------+ | suites summary | +-------------+--------+--------+---------+-------+-------+--------+ | | passed | failed | skipped | flaky | total | result | +-------------+--------+--------+---------+-------+-------+--------+ | Plan | 245 | 1 | 13 | 0 | 259 | ❌ | | Create | 153 | 0 | 19 | 9 | 172 | ✅ | | Govern | 6 | 0 | 0 | 0 | 6 | ✅ | | Data Stores | 4 | 0 | 0 | 0 | 4 | ✅ | | Monitor | 8 | 0 | 0 | 0 | 8 | ✅ | | Package | 0 | 0 | 2 | 0 | 2 | ➖ | +-------------+--------+--------+---------+-------+-------+--------+ | Total | 416 | 1 | 34 | 9 | 451 | ❌ | +-------------+--------+--------+---------+-------+-------+--------+
Edited by Ghost Useradded 2 commits
added 1 commit
- 30066a0a - Finished the unit tests for progress component